:root {
  --black: #081018;
  --ink: #111827;
  --muted: #667085;
  --soft: #F5F8FB;
  --line: #E3E9F0;
  --white: #FFFFFF;
  --blue: #69C9FF;
  --blue-2: #1A9CE8;
  --orange: #C9852A;
  --glass: rgba(255, 255, 255, 0.08);
  --shadow: 0 24px 80px rgba(8, 16, 24, 0.16);
  --radius: 28px;

  /* Ширина контента. Поменяйте здесь, если нужно уже/шире. */
  --container: 100%;
  --page-pad: 72px;

  /* Заголовки. Меняете здесь - меняется весь сайт. */
  --title-color: var(--ink);
  --title-color-dark: var(--white);
  --title-accent-color: var(--blue);
  --title-weight: 800;
  --title-letter-spacing: -0.035em;
  --h1-size: clamp(52px, 6.8vw, 112px);
  --h1-line: 0.92;
  --h2-size: clamp(40px, 5.2vw, 82px);
  --h2-line: 0.98;
  --h3-size: 28px;
  --h3-line: 1.05;
  --bigline-line: 1.00;

  --body-font: "Montserrat", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: var(--body-font);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.title,
h1,
h2,
h3,
.bigline {
  color: var(--title-color);
  font-weight: var(--title-weight);
  letter-spacing: var(--title-letter-spacing);
  overflow-wrap: break-word;
}

.title-accent,
h1.title-accent,
h2.title-accent,
h3.title-accent,
.bigline.title-accent {
  color: var(--title-accent-color);
  font-weight: var(--title-weight);
  letter-spacing: var(--title-letter-spacing);
}

section.dark .title,
section.dark h1,
section.dark h2,
section.dark h3,
section.dark .bigline,
.dark-screen .title,
.dark-screen h1,
.dark-screen h2,
.dark-screen h3,
.dark-screen .bigline,
.hero .title,
.hero h1 {
  color: var(--title-color-dark);
}

section.dark .title-accent,
.dark-screen .title-accent,
.hero .title-accent,
h1.title-accent,
h2.title-accent,
h3.title-accent,
.bigline.title-accent {
  color: var(--title-accent-color);
}

h1,
.title-hero {
  margin: 0;
  max-width: 920px;
  font-size: var(--h1-size);
  line-height: var(--h1-line);
}

h2,
.title-section {
  margin-bottom: 28px;
  font-size: var(--h2-size);
  line-height: var(--h2-line);
}

h3,
.title-card {
  margin-bottom: 18px;
  font-size: var(--h3-size);
  line-height: var(--h3-line);
}

.nav {
  position: fixed;
  z-index: 40;
  top: 24px;
  left: var(--page-pad);
  right: var(--page-pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(9, 15, 22, 0.78);
  color: var(--white);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
}

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  object-fit: contain;
}

.brand-text {
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 24px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  padding: 13px 22px;
  border-radius: 12px;
  background: var(--white);
  color: #071018;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.035em;
}

.page-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.055em;
}

.page-switch-label.is-active {
  color: var(--blue);
}

.page-switch-toggle {
  position: relative;
  width: 54px;
  height: 30px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.page-switch-toggle span {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 22px rgba(105, 201, 255, 0.42);
  transition: transform 0.22s ease;
}

.page-switch-toggle.is-on span {
  transform: translateX(24px);
}

.section {
  width: 100%;
  padding: 128px var(--page-pad);
}

.wrap {
  width: min(100%, var(--container));
  margin: 0 auto;
}

.hero {
  position: relative;
  isolation: isolate;
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-opacity: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  padding: 140px var(--page-pad) 80px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(8, 16, 24, 1) 0%, rgba(8, 16, 24, 0.93) 30%, rgba(8, 16, 24, 0.62) 62%, rgba(8, 16, 24, 0.88) 100%),
    url("assets/dashboard.png") center / cover no-repeat;
  opacity: 1;
}

.hero::after,
section.dark::before,
section.dark::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero::after {
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle 420px at var(--glow-x) var(--glow-y), rgba(105, 201, 255, 0.28), rgba(105, 201, 255, 0.11) 34%, transparent 70%);
  opacity: var(--glow-opacity);
  mix-blend-mode: screen;
  transition: opacity 0.24s ease;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 58vw) minmax(340px, 1fr);
  gap: 56px;
  align-items: end;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 24px var(--blue);
}

.hero-lead {
  max-width: 720px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 1.55vw, 23px);
  font-weight: 500;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.btn {
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-weight: 900;
  letter-spacing: 0.035em;
  transition: 0.2s ease;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 42px rgba(105, 201, 255, 0.26);
  text-shadow: 0 1px 0 rgba(8, 16, 24, 0.16);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 54px rgba(105, 201, 255, 0.34);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.11);
}

.hero-proof {
  justify-self: end;
  width: min(100%, 360px);
  display: grid;
  gap: 12px;
}

.proof-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.proof-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-size: 30px;
  letter-spacing: -0.04em;
}

.proof-card span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.icon-badge {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(105, 201, 255, 0.14);
  color: var(--blue);
}

.center {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.label {
  margin-bottom: 18px;
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead {
  max-width: 900px;
  margin: 0 auto;
  color: #4B5563;
  font-size: clamp(19px, 2vw, 26px);
  font-weight: 650;
  line-height: 1.45;
}

.white {
  background: var(--white);
}

section.dark {
  position: relative;
  isolation: isolate;
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-opacity: 0;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
}

section.dark .lead,
.dark-screen .lead {
  color: rgba(255, 255, 255, 0.7);
}

section.dark .label,
.dark-screen .label {
  color: var(--blue);
}

section.dark::before {
  inset: auto -20% -55% auto;
  z-index: 0;
  width: 640px;
  height: 640px;
  background: radial-gradient(circle, rgba(105, 201, 255, 0.17), transparent 65%);
}

section.dark::after {
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle 380px at var(--glow-x) var(--glow-y), rgba(105, 201, 255, 0.22), rgba(105, 201, 255, 0.08) 34%, transparent 72%);
  opacity: var(--glow-opacity);
  mix-blend-mode: screen;
  transition: opacity 0.24s ease;
}

section.dark > .wrap,
section.dark > .hero-actions,
.dark-screen > .wrap,
.dark-screen > .actions {
  position: relative;
  z-index: 2;
}

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

.card {
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 40px;
  box-shadow: 0 12px 40px rgba(8, 16, 24, 0.04);
}

.card.dark-card {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.num {
  display: inline-block;
  margin: 18px 0 28px;
  color: var(--blue-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.card p {
  margin: 0;
  color: #667085;
  font-size: 17px;
  line-height: 1.55;
}

section.dark .card p,
.dark-screen .card p {
  color: rgba(255, 255, 255, 0.62);
}

.card b {
  display: block;
  margin-top: 22px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

section.dark .card b,
.dark-screen .card b {
  color: var(--white);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.hero-inner > *,
.split > *,
.final-panel-grid > * {
  min-width: 0;
}

.bigline {
  margin: 0;
  font-size: clamp(46px, 5.3vw, 82px);
  line-height: var(--bigline-line);
}

.copy p {
  margin: 0 0 20px;
  color: #556070;
  font-size: 20px;
  line-height: 1.6;
}

.copy strong {
  color: #0C1824;
}

section.dark .copy p,
.dark-screen .copy p {
  color: rgba(255, 255, 255, 0.68);
}

section.dark .copy strong,
.dark-screen .copy strong {
  color: var(--white);
}

.pain-stack {
  display: grid;
  gap: 18px;
}

.pain-pill {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 26px 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  font-size: 20px;
  font-weight: 850;
  letter-spacing: -0.025em;
  box-shadow: 0 10px 30px rgba(8, 16, 24, 0.04);
}

.pain-pill.accent {
  border-color: #0B1520;
  background: #0B1520;
  color: var(--white);
}

.pain-pill.accent em {
  color: var(--blue);
  font-style: normal;
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 64px;
  text-align: left;
}

.compare-box {
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--white);
  padding: 42px;
}

.compare-box.bad {
  background: #F8FAFC;
  color: #667085;
}

.compare-box.good {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
  box-shadow: var(--shadow);
}

.compare-box h3 {
  color: inherit;
}

.compare-box p {
  margin: 0;
  color: inherit;
  font-size: 18px;
  line-height: 1.55;
}

.compare-logo {
  width: 64px;
  height: 64px;
  margin-bottom: 32px;
  border-radius: 18px;
  object-fit: contain;
  box-shadow: 0 14px 34px rgba(8, 16, 24, 0.12);
}

.tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 58px;
}

.tile {
  min-height: 176px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  padding: 28px;
  font-size: 18px;
  font-weight: 850;
  letter-spacing: -0.025em;
}

section.dark .tile,
.dark-screen .tile {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
}

.quote {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 36px;
  background: var(--white);
  padding: 56px;
  box-shadow: var(--shadow);
}

.quote p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(32px, 4vw, 58px);
  font-weight: var(--title-weight);
  line-height: 1.04;
  letter-spacing: var(--title-letter-spacing);
}

.quote footer {
  margin-top: 26px;
  color: #667085;
  font-size: 20px;
  line-height: 1.55;
}

.final {
  position: relative;
  overflow: hidden;
  background: var(--black);
  color: var(--white);
  padding: 128px var(--page-pad);
  text-align: center;
}

.final::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(8, 16, 24, 0.82), rgba(8, 16, 24, 0.94)),
    url("assets/dashboard.png") center / cover no-repeat;
  opacity: 0.95;
}

.final .wrap {
  position: relative;
  z-index: 3;
}

.final h2 {
  max-width: 1040px;
  margin: 0 auto 28px;
}

.final p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 22px;
  line-height: 1.5;
}

.final .hero-actions {
  justify-content: center;
}

.final-panel {
  padding-top: 118px;
  padding-bottom: 132px;
}

.final-panel-grid {
  display: grid;
  gap: 96px;
}

.final-panel-intro {
  max-width: 1040px;
  margin: 0 auto;
  text-align: center;
}

.final-panel-cta {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.final-panel-cta p:not(.kicker) {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 22px;
  line-height: 1.5;
}

.final-panel-cta .hero-actions {
  justify-content: center;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-badge .icon {
  width: 24px;
  height: 24px;
}

.pain-pill > .icon {
  width: 26px;
  height: 26px;
  color: var(--blue-2);
}

.pain-pill.accent > .icon {
  color: var(--blue);
}

@media (max-width: 1100px) {
  :root {
    --page-pad: 32px;
  }

  .hero-inner,
  .split,
  .comparison {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    justify-self: start;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .tiles {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::after,
  section.dark::after,
  .dark-screen::after {
    transition: none;
  }
}

@media (max-width: 1040px) {
  .nav-links {
    display: none;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 84px 18px;
  }

  .hero {
    padding: 126px 18px 60px;
  }

  .quote {
    padding: 34px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  :root {
    --page-pad: 18px;
    --h1-size: 48px;
    --h2-size: 40px;
    --h3-size: 24px;
  }

  .nav {
    top: 12px;
    left: 10px;
    right: 10px;
  }

  .nav-cta {
    padding: 11px 14px;
  }

  .page-switch {
    gap: 7px;
    font-size: 10px;
    letter-spacing: 0.03em;
  }

  .page-switch-toggle {
    width: 46px;
    height: 28px;
  }

  .page-switch-toggle span {
    width: 18px;
    height: 18px;
  }

  .page-switch-toggle.is-on span {
    transform: translateX(18px);
  }

  .hero-proof,
  .tiles,
  .comparison {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .pain-pill,
  .proof-card {
    grid-template-columns: 1fr;
  }
}

/* Page 2: calm control landing */
.screen {
  position: relative;
  width: 100%;
  min-height: 76vh;
  display: flex;
  align-items: center;
  padding: 132px var(--page-pad);
  overflow: hidden;
}

.screen .wrap {
  position: relative;
  z-index: 2;
}

.screen.hero {
  min-height: 100vh;
  padding-top: 150px;
  padding-bottom: 96px;
}

.light-screen {
  background: var(--white);
}

.soft-screen {
  background: var(--soft);
}

.dark-screen {
  isolation: isolate;
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-opacity: 0;
  background: var(--black);
  color: var(--white);
}

.dark-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle 400px at var(--glow-x) var(--glow-y), rgba(105, 201, 255, 0.22), rgba(105, 201, 255, 0.08) 34%, transparent 72%);
  opacity: var(--glow-opacity);
  mix-blend-mode: screen;
  transition: opacity 0.24s ease;
}

.bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bg-hero,
.bg-cta {
  background:
    linear-gradient(90deg, rgba(8, 16, 24, 1) 0%, rgba(8, 16, 24, 0.92) 34%, rgba(8, 16, 24, 0.62) 100%),
    url("assets/hero-bg.png") center / cover no-repeat;
}

.bg-section {
  background:
    linear-gradient(120deg, rgba(8, 16, 24, 1), rgba(8, 16, 24, 0.76)),
    url("assets/hero-bg.png") center / cover no-repeat;
  opacity: 0.82;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 72px;
  align-items: end;
}

.hero-copy {
  max-width: 900px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 42px;
}

.btn.primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 14px 42px rgba(105, 201, 255, 0.26);
  text-shadow: 0 1px 0 rgba(8, 16, 24, 0.16);
}

.btn.ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.btn svg,
.actions svg,
.feature-icon svg,
.role-grid svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.glass-panel {
  display: grid;
  gap: 14px;
}

.glass-panel div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.glass-panel b {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.glass-panel span {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.45;
}

.kicker.dark,
.darklead {
  color: var(--muted);
}

.piece-list,
.mini-list,
.decision-list,
.quiet-list {
  display: grid;
  gap: 12px;
}

.piece-list span,
.mini-list span,
.decision-list span,
.quiet-list span {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(8, 16, 24, 0.035);
}

.piece-list b,
.mini-list b,
.decision-list b {
  margin-top: 10px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.45;
}

.chip-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 46px auto 0;
}

.chip-grid span {
  padding: 16px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 17px;
  font-weight: 750;
  box-shadow: 0 10px 28px rgba(8, 16, 24, 0.035);
}

.chip-grid.four {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.afterline {
  margin: 36px auto 0;
  color: var(--muted);
  font-size: 22px;
  font-weight: 700;
}

.copy .punch,
.punch {
  margin-top: 26px;
  color: var(--blue);
  font-size: 26px;
  font-weight: 800;
}

.feature-row {
  display: grid;
  grid-template-columns: auto minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: 48px;
  align-items: center;
}

.feature-row.reverse {
  grid-template-columns: minmax(360px, 1.05fr) minmax(0, 0.95fr) auto;
}

.feature-row.reverse .feature-icon {
  order: 3;
}

.feature-icon {
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 30px;
  background: var(--blue);
  color: var(--black);
  box-shadow: 0 20px 54px rgba(105, 201, 255, 0.28);
}

.feature-icon svg {
  width: 42px;
  height: 42px;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.role-grid article {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(8, 16, 24, 0.04);
}

.role-grid svg {
  color: var(--blue-2);
}

.role-grid b {
  color: var(--ink);
  font-size: 20px;
}

.role-grid span {
  color: var(--muted);
  line-height: 1.45;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 48px;
}

.feature-grid span {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
  color: var(--white);
  font-weight: 750;
  text-align: center;
}

.quiet-list {
  max-width: 940px;
  margin: 44px auto 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cta {
  min-height: 82vh;
}

.center-actions {
  justify-content: center;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.js-ready .reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.delay {
  transition-delay: 0.12s;
}

@media (max-width: 1100px) {
  .hero-grid,
  .feature-row,
  .feature-row.reverse {
    grid-template-columns: 1fr;
  }

  .feature-row.reverse .feature-icon {
    order: 0;
  }

  .feature-grid,
  .chip-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .screen {
    min-height: auto;
    padding: 92px 18px;
  }

  .hero-grid,
  .role-grid,
  .quiet-list,
  .feature-grid,
  .chip-grid.four {
    grid-template-columns: 1fr;
  }

  .actions {
    flex-direction: column;
  }
}
