/* COREXO landing — standalone, monochrome «ГРАФИКА» tone. No build step: this
   file is served as-is by nginx for the corexolife.io root. */
:root {
  --c-bg: #f7f7f5;
  --c-surface: #ffffff;
  --c-surface-soft: #f0f0ed;
  --c-border: #d9d9d4;
  --c-text: #16160f;
  --c-text-2: #6b6b62;
  --c-accent-soft: #e9e9e4;
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.lang-switch {
  position: fixed;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 4px;
  padding: 4px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: 999px;
  z-index: 10;
}

.lang-switch button {
  border: 0;
  background: transparent;
  color: var(--c-text-2);
  font: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.lang-switch button[aria-pressed='true'] {
  background: var(--c-text);
  color: var(--c-surface);
}

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 72px 24px 48px;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-art {
  position: relative;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
}

/* Soft circular halo behind the character, echoing the COREXO splash. */
.hero-art::before {
  content: '';
  position: absolute;
  bottom: 6%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--c-accent-soft);
  z-index: 0;
}

.hero-art img {
  position: relative;
  z-index: 1;
  width: 300px;
  max-width: 78vw;
  height: auto;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.08));
}

.brand {
  font-size: 56px;
  letter-spacing: 0.05em;
  margin: 0;
  font-weight: 800;
}

.lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--c-text-2);
  margin: 16px 0 0;
  max-width: 360px;
}

.sub {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--c-text-2);
  margin: 12px 0 0;
  max-width: 440px;
}

/* Цена — на первом экране, сразу под CTA, заметно (просьба Анны 07.07). */
.price {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin: 20px 0 0;
  padding: 12px 26px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
}

.price span {
  font-size: 13px;
  color: var(--c-text-2);
}

.price strong {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--c-text);
}

.mission {
  margin-top: 64px;
  padding: 28px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  text-align: left;
}

.mission h2 {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-text-2);
}

.mission p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--c-text);
}

.mission .mission-closer {
  margin-bottom: 0;
  color: var(--c-text-2);
  font-style: italic;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  padding: 14px 28px;
  background: var(--c-text);
  color: var(--c-surface);
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 999px;
  transition: transform 0.12s ease, opacity 0.12s ease;
}

.cta:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.feature {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 20px;
  text-align: left;
}

.feature h3 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
}

.feature p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--c-text-2);
}

.legal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--c-border);
}

.legal h3 {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-text-2);
}

.legal p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-text-2);
}

.legal a {
  color: var(--c-text-2);
  text-decoration: none;
}

.legal a:hover {
  color: var(--c-text);
}

.foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--c-border);
  font-size: 13px;
  color: var(--c-text-2);
}

.foot a {
  color: var(--c-text-2);
  text-decoration: none;
}

.foot a:hover {
  color: var(--c-text);
}

@media (max-width: 560px) {
  .wrap {
    padding: 64px 18px 40px;
  }
  .brand {
    font-size: 46px;
  }
  .features {
    grid-template-columns: 1fr;
  }
  .legal {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
