:root {
  --ink: #06131f;
  --ink-soft: #0a1b2c;
  --ink-card: #0d2235;
  --cream: #f7f4eb;
  --white: #ffffff;
  --text: #0b1722;
  --muted: #66737e;
  --green: #36e58b;
  --green-deep: #0a8755;
  --lime: #d8ff72;
  --cyan: #2fd6df;
  --amber: #ffbf47;
  --line: rgba(11, 23, 34, 0.11);
  --dark-line: rgba(255, 255, 255, 0.12);
  --shadow: 0 30px 90px rgba(3, 12, 22, 0.18);
  --radius-lg: 36px;
  --radius-md: 24px;
  --radius-sm: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--cream);
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.narrow {
  width: min(900px, 100%);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  background: rgba(6, 19, 31, 0.86);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 40px rgba(2, 8, 15, 0.16);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  position: relative;
  z-index: 102;
}

.brand-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.brand-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.brand-copy strong {
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-copy small {
  color: rgba(224, 238, 245, 0.65);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(234, 242, 247, 0.76);
  font-size: 14px;
  font-weight: 750;
}

.nav-links > a:not(.nav-cta) {
  position: relative;
  transition: color 180ms ease;
}

.nav-links > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--green);
  transition: right 180ms ease;
}

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

.nav-links > a:not(.nav-cta):hover::after {
  right: 0;
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 999px;
  color: #03150e;
  background: linear-gradient(135deg, var(--green), var(--lime));
  box-shadow: 0 14px 36px rgba(54, 229, 139, 0.22);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 102;
}

.menu-toggle span {
  width: 19px;
  height: 2px;
  border-radius: 4px;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 150px 0 88px;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 16%, rgba(54, 229, 139, 0.16), transparent 31%),
    radial-gradient(circle at 84% 17%, rgba(47, 214, 223, 0.14), transparent 29%),
    radial-gradient(circle at 62% 82%, rgba(255, 191, 71, 0.06), transparent 23%),
    linear-gradient(135deg, #04101c, #071a2b 48%, #06131f);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -2px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--cream));
  pointer-events: none;
}

.hero-grid-lines,
.preview-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 45%, black, transparent 76%);
  opacity: 0.75;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(3px);
  pointer-events: none;
}

.orb-one {
  width: 360px;
  height: 360px;
  left: -180px;
  top: 28%;
  border: 1px solid rgba(54, 229, 139, 0.16);
  box-shadow: inset 0 0 100px rgba(54, 229, 139, 0.04);
  animation: slowSpin 28s linear infinite;
}

.orb-two {
  width: 460px;
  height: 460px;
  right: -280px;
  top: 2%;
  border: 1px solid rgba(47, 214, 223, 0.12);
  box-shadow: inset 0 0 130px rgba(47, 214, 223, 0.04);
  animation: slowSpin 36s linear infinite reverse;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.86fr);
  align-items: center;
  gap: clamp(44px, 7vw, 90px);
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 9px 13px;
  color: #d9fce9;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(54, 229, 139, 0.11);
  animation: pulse 2.1s ease-in-out infinite;
}

.hero h1 {
  max-width: 720px;
  margin: 23px 0 0;
  font-size: clamp(58px, 6.7vw, 94px);
  line-height: 0.9;
  letter-spacing: -0.075em;
  font-weight: 950;
}

.hero h1 span {
  display: block;
  padding-bottom: 0.08em;
  background: linear-gradient(125deg, var(--white), #b8f7d5 54%, var(--lime));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  max-width: 660px;
  margin: 28px 0 0;
  color: rgba(224, 237, 244, 0.76);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #03150e;
  background: linear-gradient(135deg, var(--green), var(--lime));
  box-shadow: 0 18px 44px rgba(54, 229, 139, 0.24);
}

.button-primary:hover {
  box-shadow: 0 24px 58px rgba(54, 229, 139, 0.33);
}

.button-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.hero-proof {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  color: rgba(224, 237, 244, 0.58);
  font-size: 12px;
  font-weight: 700;
}

.hero-proof i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  perspective: 1100px;
}

.visual-halo {
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54, 229, 139, 0.15), rgba(47, 214, 223, 0.06) 42%, transparent 70%);
  filter: blur(8px);
  animation: breathe 5s ease-in-out infinite;
}

.device-frame {
  position: relative;
  width: min(420px, 92%);
  min-height: 555px;
  padding: 18px;
  color: var(--text);
  background: rgba(250, 251, 247, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 34px;
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.38), 0 0 0 8px rgba(255, 255, 255, 0.03);
  transform: rotateY(-5deg) rotateX(2deg);
  transform-style: preserve-3d;
  transition: transform 160ms ease;
}

.device-topbar,
.device-heading,
.attention-card,
.device-nav {
  display: flex;
  align-items: center;
}

.device-topbar {
  justify-content: space-between;
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
}

.device-brand {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 900;
}

.mini-leaf {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--green-deep);
  background: rgba(54, 229, 139, 0.14);
}

.device-status {
  display: flex;
  align-items: center;
  gap: 7px;
}

.device-status > span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #aab4ba;
}

.device-status b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #075735;
  background: #c8f9dc;
  border-radius: 10px;
  font-size: 11px;
}

.device-heading {
  justify-content: space-between;
  gap: 14px;
  padding: 22px 3px 16px;
}

.device-heading div {
  display: grid;
  gap: 4px;
}

.device-heading small,
.module-card small,
.attention-card small {
  color: #7a858d;
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.device-heading strong {
  font-size: 17px;
  letter-spacing: -0.035em;
}

.signal-pill {
  padding: 7px 9px;
  border-radius: 999px;
  color: #0a784b;
  background: #ddf9e9;
  font-size: 9px;
  font-weight: 850;
}

.attention-card {
  gap: 11px;
  padding: 14px;
  color: var(--white);
  background: linear-gradient(135deg, #08251c, #0b4430);
  border-radius: 18px;
  box-shadow: 0 15px 32px rgba(8, 68, 48, 0.17);
}

.attention-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #042c1b;
  background: linear-gradient(135deg, var(--green), var(--lime));
  border-radius: 13px;
}

.attention-card div:nth-child(2) {
  flex: 1;
  display: grid;
  gap: 4px;
}

.attention-card small {
  color: rgba(224, 245, 234, 0.6);
}

.attention-card strong {
  font-size: 11px;
  line-height: 1.35;
}

.module-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 10px;
}

.module-card {
  min-height: 126px;
  padding: 13px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: 0 8px 22px rgba(9, 24, 36, 0.05);
}

.module-main {
  grid-row: span 2;
  min-height: 262px;
  background: linear-gradient(155deg, #f8fffb, #ecf9f1);
}

.module-icon {
  width: 34px;
  height: 34px;
  margin-bottom: auto;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #087348;
  background: #dff8ea;
  font-weight: 900;
}

.module-card strong {
  margin-top: 4px;
  font-size: 13px;
  letter-spacing: -0.03em;
}

.mini-chart {
  width: 100%;
  height: 62px;
  margin: 17px 0 4px;
  padding: 8px 7px 0;
  display: flex;
  align-items: flex-end;
  gap: 7px;
  border-radius: 12px;
  background: rgba(8, 115, 72, 0.06);
}

.mini-chart i {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, #0b8f59, var(--green));
}

.mini-chart i:nth-child(1) { height: 38%; }
.mini-chart i:nth-child(2) { height: 62%; }
.mini-chart i:nth-child(3) { height: 48%; }
.mini-chart i:nth-child(4) { height: 78%; }
.mini-chart i:nth-child(5) { height: 92%; }

.device-nav {
  margin-top: 15px;
  padding: 10px 8px 2px;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

.device-nav span {
  width: 18%;
  display: grid;
  place-items: center;
  gap: 3px;
  color: #8a949a;
  font-size: 15px;
}

.device-nav small {
  font-size: 7px;
  font-weight: 750;
}

.device-nav .active {
  color: var(--green-deep);
}

.floating-chip {
  position: absolute;
  z-index: 3;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  background: rgba(9, 29, 45, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
  font-size: 11px;
  font-weight: 800;
  animation: float 4.2s ease-in-out infinite;
}

.floating-chip span {
  color: var(--green);
}

.chip-learning {
  top: 12%;
  right: -1%;
}

.chip-network {
  bottom: 15%;
  left: -5%;
  animation-delay: -1.7s;
}

.scroll-cue {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 35px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue span {
  width: 22px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  position: relative;
}

.scroll-cue span::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 7px;
  left: 50%;
  top: 7px;
  background: var(--green);
  border-radius: 4px;
  transform: translateX(-50%);
  animation: scrollDot 1.7s ease-in-out infinite;
}

.statement-section {
  padding: 150px 0 138px;
  text-align: center;
  background: var(--cream);
}

.section-label {
  color: var(--green-deep);
}

.section-label::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.section-label.light {
  color: var(--green);
}

.statement-section h2,
.section-head h2,
.journey-copy h2,
.center-head h2,
.preview-copy h2,
.access-copy h2 {
  margin: 22px 0 0;
  font-size: clamp(42px, 5.3vw, 72px);
  line-height: 0.99;
  letter-spacing: -0.065em;
  font-weight: 920;
}

.statement-section h2 span,
.center-head h2 span {
  color: #84918d;
}

.statement-section p {
  max-width: 740px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.ecosystem-section {
  padding: 126px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgba(54, 229, 139, 0.09), transparent 31%),
    linear-gradient(145deg, #06131f, #091b2b 60%, #071522);
}

.section-head {
  display: grid;
  grid-template-columns: 1.1fr 0.65fr;
  gap: 70px;
  align-items: end;
}

.section-head p {
  margin: 0 0 4px;
  color: rgba(225, 237, 244, 0.65);
  font-size: 17px;
  line-height: 1.65;
}

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

.bento-card {
  min-height: 290px;
  padding: 27px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.035);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.bento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(54, 229, 139, 0.3);
  background: rgba(255, 255, 255, 0.075);
}

.bento-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 596px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(145deg, rgba(54, 229, 139, 0.14), rgba(255, 255, 255, 0.045));
}

.bento-wide {
  grid-column: span 2;
}

.card-number {
  position: absolute;
  top: 24px;
  right: 25px;
  color: rgba(255, 255, 255, 0.32);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.bento-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  color: var(--green);
  border: 1px solid rgba(54, 229, 139, 0.22);
  border-radius: 15px;
  background: rgba(54, 229, 139, 0.08);
  font-size: 20px;
  font-weight: 900;
}

.bento-card h3,
.audience-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.bento-card p {
  margin: 12px 0 0;
  color: rgba(225, 237, 244, 0.62);
  line-height: 1.6;
}

.card-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  top: 0;
  right: -80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54, 229, 139, 0.17), transparent 70%);
}

.data-ribbon {
  margin-top: 30px;
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  background: rgba(3, 17, 27, 0.45);
  backdrop-filter: blur(12px);
}

.data-ribbon span {
  display: grid;
  gap: 6px;
}

.data-ribbon small {
  color: rgba(225, 237, 244, 0.42);
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.data-ribbon b {
  font-size: 13px;
}

.coming-pill {
  margin-top: 22px;
  display: inline-flex;
  padding: 7px 10px;
  color: #bbeed4;
  border: 1px solid rgba(54, 229, 139, 0.18);
  border-radius: 999px;
  background: rgba(54, 229, 139, 0.06);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-flow {
  margin: 28px 0 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
}

.service-flow i {
  padding: 8px 10px;
  color: #cde6db;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 9px;
  font-style: normal;
  font-weight: 750;
  white-space: nowrap;
}

.service-flow span {
  min-width: 20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.journey-section {
  padding: 138px 0;
  background: var(--cream);
}

.journey-layout {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(60px, 10vw, 140px);
  align-items: center;
}

.journey-copy p {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.text-link {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-deep);
  font-weight: 850;
}

.journey-track {
  position: relative;
  display: grid;
  gap: 10px;
}

.track-line {
  position: absolute;
  left: 25px;
  top: 31px;
  bottom: 31px;
  width: 2px;
  background: #d7ded8;
}

.track-line span {
  display: block;
  width: 100%;
  height: 45%;
  background: linear-gradient(var(--green-deep), var(--green));
}

.journey-track article {
  position: relative;
  z-index: 1;
  padding: 15px 18px 15px 0;
  display: flex;
  align-items: center;
  gap: 18px;
  border-radius: 18px;
  transition: background 180ms ease, transform 180ms ease;
}

.journey-track article:hover {
  padding-left: 8px;
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.55);
}

.journey-track article b {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--green-deep);
  border: 1px solid #ced9d1;
  border-radius: 16px;
  background: var(--cream);
  font-size: 11px;
}

.journey-track article:first-of-type b {
  color: #032419;
  border-color: transparent;
  background: linear-gradient(135deg, var(--green), var(--lime));
  box-shadow: 0 10px 25px rgba(54, 229, 139, 0.2);
}

.journey-track article div {
  display: grid;
  gap: 4px;
}

.journey-track strong {
  font-size: 19px;
}

.journey-track small {
  color: var(--muted);
}

.audience-section {
  padding: 126px 0;
  background: #e9eee7;
}

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

.center-head .section-label {
  justify-content: center;
}

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

.audience-card {
  min-height: 360px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(11, 23, 34, 0.09);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: 0 16px 45px rgba(8, 25, 17, 0.04);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.audience-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 60px rgba(8, 25, 17, 0.09);
}

.audience-card.featured {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(145deg, #092219, #0c4932);
}

.audience-card > span {
  color: #8a9890;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.audience-mark {
  width: 72px;
  height: 72px;
  margin: auto 0 28px;
  display: grid;
  place-items: center;
  color: var(--green-deep);
  border-radius: 23px;
  background: rgba(54, 229, 139, 0.13);
  font-size: 28px;
  font-weight: 900;
}

.featured .audience-mark {
  color: #06251a;
  background: linear-gradient(135deg, var(--green), var(--lime));
}

.audience-card p {
  margin: 13px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.audience-card.featured p {
  color: rgba(225, 240, 232, 0.68);
}

.preview-section {
  padding: 100px 0;
  background: var(--cream);
}

.preview-card {
  min-height: 590px;
  padding: clamp(42px, 6vw, 78px);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 40px;
  color: var(--white);
  border-radius: 40px;
  background:
    radial-gradient(circle at 76% 50%, rgba(54, 229, 139, 0.11), transparent 28%),
    linear-gradient(135deg, #06131f, #091e30);
  box-shadow: var(--shadow);
}

.preview-grid {
  opacity: 0.55;
}

.preview-orb {
  position: absolute;
  width: 340px;
  height: 340px;
  right: 10%;
  border: 1px solid rgba(54, 229, 139, 0.13);
  border-radius: 50%;
  animation: breathe 5s ease-in-out infinite;
}

.preview-copy {
  position: relative;
  z-index: 3;
}

.preview-copy h2 {
  max-width: 690px;
  font-size: clamp(42px, 4.8vw, 67px);
}

.preview-copy p {
  max-width: 570px;
  margin: 24px 0 30px;
  color: rgba(225, 237, 244, 0.68);
  font-size: 17px;
  line-height: 1.7;
}

.orbit-system {
  position: relative;
  z-index: 2;
  width: 360px;
  height: 360px;
  margin: auto;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  animation: orbitSpin 22s linear infinite;
}

.orbit-two {
  inset: 38px;
  animation-duration: 17s;
  animation-direction: reverse;
}

.orbit-three {
  inset: 78px;
  animation-duration: 13s;
}

.orbit span {
  position: absolute;
  top: 50%;
  left: -20px;
  padding: 8px 11px;
  color: #d9f8e8;
  border: 1px solid rgba(54, 229, 139, 0.2);
  border-radius: 999px;
  background: rgba(8, 30, 45, 0.92);
  font-size: 9px;
  font-weight: 800;
  animation: orbitSpin 22s linear infinite reverse;
}

.orbit-two span {
  left: auto;
  right: -24px;
  animation-duration: 17s;
  animation-direction: normal;
}

.orbit-three span {
  top: -15px;
  left: 50%;
  animation-duration: 13s;
}

.orbit-core {
  width: 112px;
  height: 112px;
  padding: 6px;
  display: grid;
  place-items: center;
  border-radius: 33px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(54, 229, 139, 0.18);
}

.orbit-core img {
  border-radius: 27px;
}

.access-section {
  padding: 130px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgba(54, 229, 139, 0.1), transparent 28%),
    linear-gradient(145deg, #06131f, #071827);
}

.access-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(46px, 8vw, 100px);
  align-items: start;
}

.access-copy {
  position: sticky;
  top: 120px;
}

.access-copy h2 {
  font-size: clamp(44px, 5vw, 67px);
}

.access-copy > p {
  margin: 23px 0 0;
  color: rgba(225, 237, 244, 0.67);
  font-size: 17px;
  line-height: 1.7;
}

.access-points {
  margin-top: 34px;
  display: grid;
  gap: 18px;
}

.access-points > div {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}

.access-points > div > span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #032419;
  border-radius: 9px;
  background: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.access-points p {
  margin: 0;
  display: grid;
  gap: 3px;
}

.access-points strong {
  font-size: 14px;
}

.access-points small {
  color: rgba(225, 237, 244, 0.55);
  line-height: 1.5;
}

.direct-contact {
  margin-top: 38px;
  padding-top: 24px;
  display: grid;
  gap: 5px;
  border-top: 1px solid var(--dark-line);
}

.direct-contact small {
  color: rgba(225, 237, 244, 0.47);
}

.direct-contact a {
  color: var(--green);
  font-size: 19px;
  font-weight: 850;
}

.access-form {
  padding: clamp(24px, 4vw, 42px);
  color: var(--text);
  border-radius: 30px;
  background: #fbfcf8;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.26);
}

.form-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--green-deep);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.form-top i {
  padding: 7px 9px;
  color: #39745a;
  border-radius: 999px;
  background: #e5f7ec;
  font-style: normal;
  letter-spacing: 0.05em;
}

.access-form h3 {
  margin: 22px 0 0;
  font-size: clamp(29px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.access-form > p {
  margin: 9px 0 0;
  color: var(--muted);
}

.fields {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.fields label {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.fields label > span {
  color: #4b5963;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.field-wide {
  grid-column: span 2;
}

.fields input,
.fields select,
.fields textarea {
  width: 100%;
  border: 1px solid #d9e0dc;
  outline: none;
  border-radius: 14px;
  color: var(--text);
  background: var(--white);
  transition: border-color 170ms ease, box-shadow 170ms ease;
}

.fields input,
.fields select {
  height: 50px;
  padding: 0 13px;
}

.fields textarea {
  padding: 13px;
  resize: vertical;
}

.fields input:focus,
.fields select:focus,
.fields textarea:focus {
  border-color: var(--green-deep);
  box-shadow: 0 0 0 4px rgba(10, 135, 85, 0.09);
}

.fields .invalid {
  border-color: #cc3f4d;
  box-shadow: 0 0 0 4px rgba(204, 63, 77, 0.08);
}

.form-error {
  display: none;
  margin-top: 15px;
  padding: 11px 13px;
  color: #8b2330;
  border: 1px solid rgba(204, 63, 77, 0.15);
  border-radius: 12px;
  background: #fff0f2;
  font-size: 12px;
  font-weight: 700;
}

.form-error.visible {
  display: block;
}

.button-submit {
  width: 100%;
  margin-top: 20px;
  color: var(--white);
  background: linear-gradient(135deg, #071724, #0c4932);
  box-shadow: 0 17px 40px rgba(7, 23, 36, 0.17);
}

.button-submit:disabled {
  cursor: wait;
  opacity: 0.65;
}

.form-note {
  margin-top: 12px;
  display: block;
  color: #879189;
  text-align: center;
  font-size: 10px;
  line-height: 1.45;
}

footer {
  padding: 62px 0 22px;
  color: var(--white);
  background: #030d15;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-main {
  padding-bottom: 42px;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand div {
  display: grid;
  gap: 4px;
}

.footer-brand strong {
  font-size: 20px;
}

.footer-brand small {
  color: rgba(225, 237, 244, 0.52);
}

.footer-links {
  display: flex;
  gap: clamp(40px, 8vw, 90px);
}

.footer-links > div {
  min-width: 120px;
  display: grid;
  gap: 9px;
}

.footer-links small {
  margin-bottom: 5px;
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.footer-links a {
  color: rgba(225, 237, 244, 0.66);
  font-size: 13px;
}

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

.footer-bottom {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(225, 237, 244, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 10px;
}

.thank-you {
  position: fixed;
  inset: 0;
  z-index: 300;
  padding: 20px;
  display: none;
  place-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 20%, rgba(54, 229, 139, 0.16), transparent 32%),
    #06131f;
}

.thank-you.visible {
  display: grid;
}

.thank-card {
  width: min(680px, 100%);
  padding: clamp(38px, 7vw, 70px);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.thank-mark {
  width: 72px;
  height: 72px;
  margin: 0 auto 25px;
  display: grid;
  place-items: center;
  color: #032419;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--green), var(--lime));
  font-size: 30px;
  font-weight: 900;
}

.thank-card .section-label {
  justify-content: center;
}

.thank-card h2 {
  margin: 20px 0 0;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.thank-card p {
  max-width: 520px;
  margin: 20px auto 27px;
  color: rgba(225, 237, 244, 0.64);
  line-height: 1.7;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes pulse {
  0%, 100% { opacity: 0.75; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes breathe {
  0%, 100% { transform: scale(0.94); opacity: 0.72; }
  50% { transform: scale(1.06); opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes slowSpin {
  to { transform: rotate(360deg); }
}

@keyframes orbitSpin {
  to { transform: rotate(360deg); }
}

@keyframes scrollDot {
  0% { transform: translate(-50%, 0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translate(-50%, 12px); opacity: 0; }
}

@media (max-width: 1040px) {
  .hero-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    max-width: 820px;
    margin-inline: auto;
  }

  .hero h1,
  .hero-lead {
    margin-inline: auto;
  }

  .hero-actions,
  .hero-proof {
    justify-content: center;
  }

  .hero-visual {
    min-height: 610px;
  }

  .chip-learning { right: 10%; }
  .chip-network { left: 10%; }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .bento-large {
    min-height: 560px;
  }

  .preview-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .preview-copy p {
    margin-inline: auto;
  }

  .orbit-system {
    width: 320px;
    height: 320px;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    padding: 105px 28px 36px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    color: var(--white);
    background: rgba(5, 16, 27, 0.98);
    transform: translateY(-110%);
    transition: transform 260ms cubic-bezier(0.2, 0.7, 0.2, 1);
  }

  .nav-links.open {
    transform: none;
  }

  .nav-links > a {
    padding: 18px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 22px;
  }

  .nav-cta {
    margin-top: 20px;
    text-align: center;
    border-bottom: 0 !important;
  }

  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .section-head,
  .journey-layout,
  .access-layout {
    grid-template-columns: 1fr;
  }

  .section-head {
    gap: 28px;
  }

  .journey-layout {
    gap: 70px;
  }

  .access-copy {
    position: static;
  }

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

  .audience-card {
    min-height: 310px;
  }

  .footer-main {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .nav-wrap {
    min-height: 72px;
  }

  .brand-logo {
    width: 43px;
    height: 43px;
    border-radius: 13px;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    padding: 120px 0 90px;
  }

  .hero h1 {
    font-size: clamp(49px, 16vw, 72px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    display: none;
  }

  .hero-visual {
    min-height: 530px;
    margin-top: 14px;
  }

  .device-frame {
    width: 96%;
    min-height: 505px;
    padding: 14px;
    transform: none !important;
  }

  .module-main {
    min-height: 230px;
  }

  .floating-chip {
    display: none;
  }

  .scroll-cue {
    display: none;
  }

  .statement-section,
  .ecosystem-section,
  .journey-section,
  .audience-section,
  .access-section {
    padding: 92px 0;
  }

  .statement-section h2,
  .section-head h2,
  .journey-copy h2,
  .center-head h2,
  .preview-copy h2,
  .access-copy h2 {
    font-size: clamp(39px, 12vw, 54px);
  }

  .statement-section p,
  .section-head p {
    font-size: 16px;
  }

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

  .bento-large,
  .bento-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .bento-large {
    min-height: 460px;
  }

  .bento-card {
    min-height: 270px;
  }

  .service-flow {
    overflow-x: auto;
  }

  .preview-section {
    padding: 65px 0;
  }

  .preview-card {
    min-height: 720px;
    padding: 38px 24px;
    border-radius: 30px;
  }

  .orbit-system {
    width: 260px;
    height: 260px;
  }

  .orbit-core {
    width: 86px;
    height: 86px;
    border-radius: 26px;
  }

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

  .field-wide {
    grid-column: auto;
  }

  .access-form {
    border-radius: 24px;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
