:root {
  --ink: #101b18;
  --ink-soft: #46524e;
  --paper: #f4f1e9;
  --paper-deep: #e9e4d8;
  --white: #fffef9;
  --lime: #c8ff5a;
  --lime-deep: #a8df37;
  --coral: #ff8a5b;
  --purple: #6d4aff;
  --line: rgba(16, 27, 24, .14);
  --max: 1180px;
  --radius: 28px;
  --shadow: 0 24px 70px rgba(18, 35, 30, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img, svg { max-width: 100%; }
button, input, textarea { font: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  z-index: 20;
  width: min(calc(100% - 40px), var(--max));
  height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-size: 1.12rem;
  font-weight: 790;
  letter-spacing: -.03em;
  text-decoration: none;
}
.brand-mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 11px;
  font-size: 1rem;
  font-weight: 850;
}
.brand-mark span { color: var(--lime); }
.site-nav { display: flex; align-items: center; gap: 34px; }
.site-nav a {
  color: var(--ink-soft);
  font-size: .89rem;
  font-weight: 650;
  text-decoration: none;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--ink); }
.site-nav .nav-cta {
  padding: 11px 17px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
}
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  background: transparent;
}
.menu-button > span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
}

.hero {
  width: min(calc(100% - 40px), var(--max));
  min-height: 680px;
  margin: 0 auto;
  padding: 80px 0 95px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 70px;
}
.eyebrow {
  margin: 0 0 22px;
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero h1, .page-hero h1, .voice-hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(3.4rem, 7vw, 6.55rem);
  line-height: .96;
  letter-spacing: -.072em;
}
.hero-lede {
  max-width: 660px;
  margin: 31px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  line-height: 1.55;
}
.button-row { display: flex; align-items: center; gap: 14px; margin-top: 35px; flex-wrap: wrap; }
.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 760;
  text-decoration: none;
}
.button-primary { color: var(--ink); background: var(--lime); box-shadow: 0 9px 25px rgba(123, 169, 31, .22); }
.button-primary:hover { background: var(--lime-deep); transform: translateY(-1px); }
.button-quiet { border: 1px solid var(--line); }
.button-light { color: var(--ink); background: var(--white); }

.hero-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(200,255,90,.34), transparent 31%),
    linear-gradient(145deg, #21342e, #0f1b18);
  border-radius: 44px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 24px 24px;
  mask-image: linear-gradient(to bottom, transparent, #000 30%, #000 70%, transparent);
}
.orbit { position: relative; width: 320px; height: 320px; display: grid; place-items: center; }
.orbit-ring { position: absolute; border: 1px solid rgba(255,255,255,.22); border-radius: 50%; }
.orbit-ring-one { inset: 35px; }
.orbit-ring-two { inset: 0; border-style: dashed; animation: spin 28s linear infinite; }
.orbit-core {
  position: relative;
  z-index: 2;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--lime);
  border-radius: 25px;
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 0 55px rgba(200,255,90,.38);
}
.orbit-node {
  position: absolute;
  z-index: 3;
  padding: 8px 12px;
  color: var(--white);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  font-size: .68rem;
  font-weight: 750;
}
.node-one { top: 42px; right: 3px; }
.node-two { bottom: 22px; left: 32px; }
.node-three { top: 67px; left: -12px; }
.signal-card {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  color: var(--white);
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 15px 40px rgba(0,0,0,.16);
  backdrop-filter: blur(12px);
}
.signal-card-top { top: 28px; right: 28px; gap: 10px; padding: 12px 15px; border-radius: 15px; font-size: .68rem; }
.signal-card-top strong { margin-left: 8px; color: var(--lime); }
.signal-dot { width: 7px; height: 7px; background: var(--lime); border-radius: 50%; box-shadow: 0 0 12px var(--lime); }
.signal-card-bottom { bottom: 28px; left: 28px; padding: 16px 18px; border-radius: 18px; gap: 12px; }
.signal-card-bottom span { font-size: .71rem; }
.signal-card-bottom strong { color: var(--lime); }
.signal-arrow { opacity: .5; }
@keyframes spin { to { transform: rotate(360deg); } }

.trust-strip {
  padding: 25px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(15px, 3vw, 42px);
  color: rgba(255,255,255,.62);
  background: var(--ink);
  overflow: hidden;
  font-size: .71rem;
  font-weight: 760;
  letter-spacing: .09em;
  text-transform: uppercase;
  white-space: nowrap;
}
.trust-strip i { width: 4px; height: 4px; background: var(--lime); border-radius: 50%; }

.section { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; padding: 120px 0; }
.section-heading { max-width: 760px; margin-bottom: 55px; }
.section-heading h2, .product-copy h2, .contact-panel h2, .voice-support h2 {
  margin: 0;
  font-size: clamp(2.45rem, 5vw, 4.45rem);
  line-height: 1.02;
  letter-spacing: -.06em;
}
.section-heading > p:last-child, .product-copy > p, .voice-support p {
  max-width: 650px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  position: relative;
  min-height: 450px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.service-card-accent { background: var(--lime); }
.card-number { position: absolute; top: 30px; right: 30px; color: rgba(16,27,24,.44); font-size: .73rem; font-weight: 800; }
.service-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 85px;
  background: var(--paper);
  border-radius: 16px;
  font-size: 1.55rem;
}
.service-card-accent .service-icon { background: rgba(255,255,255,.48); }
.service-card h3 { margin: 0 0 15px; font-size: 1.5rem; letter-spacing: -.035em; }
.service-card p { color: var(--ink-soft); }
.service-card ul { padding: 0; margin: 25px 0 0; list-style: none; }
.service-card li { padding: 8px 0 8px 20px; border-top: 1px solid var(--line); font-size: .82rem; font-weight: 650; }
.service-card li::before { content: "•"; margin-left: -20px; margin-right: 11px; color: var(--coral); }

.approach-section { width: 100%; max-width: none; padding: 0 20px; }
.approach-panel {
  width: min(100%, 1360px);
  margin: 0 auto;
  padding: 110px max(25px, calc((100% - 1120px) / 2));
  color: var(--white);
  background: var(--ink);
  border-radius: 42px;
}
.approach-panel .eyebrow { color: var(--lime); }
.approach-panel .section-heading { margin-bottom: 30px; }
.process-list { margin: 0 0 0 auto; padding: 0; max-width: 780px; list-style: none; }
.process-list li { padding: 32px 0; display: grid; grid-template-columns: 70px 1fr; border-top: 1px solid rgba(255,255,255,.15); }
.process-list li > span { color: var(--lime); font-size: .72rem; font-weight: 800; }
.process-list h3 { margin: 0 0 6px; font-size: 1.3rem; }
.process-list p { margin: 0; color: rgba(255,255,255,.61); }

.ai-section { padding-bottom: 0; }
.ai-panel {
  padding: 68px;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  color: var(--ink);
  background: linear-gradient(135deg, var(--lime), #e8ffb9);
  border-radius: 42px;
  box-shadow: var(--shadow);
}
.ai-copy h2 {
  margin: 0;
  font-size: clamp(2.45rem, 5vw, 4.45rem);
  line-height: 1.02;
  letter-spacing: -.06em;
}
.ai-copy > p:not(.eyebrow) { color: var(--ink-soft); font-size: 1.08rem; }
.ai-use-cases { display: grid; gap: 0; }
.ai-use-cases article { padding: 24px 0; display: grid; grid-template-columns: 48px 1fr; border-top: 1px solid rgba(16,27,24,.2); }
.ai-use-cases article:first-child { border-top: 0; padding-top: 0; }
.ai-use-cases article > span { grid-row: 1 / 3; font-size: .72rem; font-weight: 800; }
.ai-use-cases h3 { margin: 0 0 5px; font-size: 1.25rem; }
.ai-use-cases p { margin: 0; color: var(--ink-soft); }

.product-feature { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: center; }
.product-copy > p { margin-top: 24px; }
.text-link { display: inline-flex; gap: 18px; margin-top: 22px; font-size: .85rem; font-weight: 800; text-decoration: none; }
.text-link:hover span { transform: translateX(3px); }
.app-preview {
  position: relative;
  min-height: 245px;
  padding: 38px;
  display: grid;
  grid-template-columns: 115px 1fr auto;
  gap: 30px;
  align-items: center;
  color: var(--white);
  background: linear-gradient(145deg, #321a61, #6d4aff);
  border-radius: 34px;
  box-shadow: var(--shadow);
  text-decoration: none;
  overflow: hidden;
}
.app-preview::after {
  content: "";
  position: absolute;
  width: 230px;
  height: 230px;
  right: -80px;
  top: -100px;
  background: var(--coral);
  border-radius: 50%;
  filter: blur(6px);
  opacity: .34;
}
.app-icon {
  width: 104px;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(145deg, #ffb762, #ff705f);
  border-radius: 27%;
  box-shadow: 0 18px 45px rgba(28, 9, 67, .35);
}
.app-icon .bar { width: 7px; background: #321a61; border-radius: 99px; }
.bar-1, .bar-5 { height: 25%; }
.bar-2, .bar-4 { height: 48%; }
.bar-3 { height: 70%; }
.status-pill, .platform-pill {
  display: inline-flex;
  padding: 6px 9px;
  margin: 0 5px 8px 0;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  font-size: .62rem;
  font-weight: 790;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.app-preview h3 { margin: 5px 0 4px; font-size: 2rem; letter-spacing: -.045em; }
.app-preview p { margin: 0; color: rgba(255,255,255,.7); }
.app-arrow { position: relative; z-index: 2; font-size: 1.4rem; }

.contact-section { padding-top: 30px; }
.contact-panel {
  padding: 90px;
  color: var(--white);
  background: var(--coral);
  border-radius: 42px;
  text-align: center;
}
.contact-panel h2 { max-width: 850px; margin: 0 auto; }
.contact-panel > p:not(.eyebrow) { font-size: 1.12rem; }
.contact-panel .button { margin-top: 20px; }
.contact-panel small { display: block; margin-top: 26px; color: rgba(255,255,255,.75); }

.site-footer {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 45px 0 55px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 35px;
  align-items: center;
  border-top: 1px solid var(--line);
}
.site-footer p { color: var(--ink-soft); font-size: .8rem; }
.site-footer nav { display: flex; gap: 24px; }
.site-footer nav a { font-size: .75rem; font-weight: 700; text-decoration: none; }
.site-footer small { grid-column: 1 / -1; color: var(--ink-soft); font-size: .68rem; }

.page-hero {
  width: min(calc(100% - 40px), var(--max));
  margin: 0 auto;
  padding: 110px 0 85px;
}
.page-hero h1 { max-width: 900px; }
.page-hero h1 em { color: var(--coral); font-family: Georgia, serif; font-weight: 400; }
.page-lede { max-width: 600px; margin-top: 30px; color: var(--ink-soft); font-size: 1.2rem; }
.software-list { padding-top: 25px; display: grid; gap: 25px; }
.software-card {
  min-height: 430px;
  display: grid;
  grid-template-columns: 44% 56%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 36px;
  overflow: hidden;
  text-decoration: none;
}
.software-art { display: grid; place-items: center; min-height: 430px; }
.voicelevel-art { background: radial-gradient(circle at 50%, #8a68ff, #3b1d72 65%, #23113f); }
.app-icon-large { width: 160px; height: 160px; gap: 9px; }
.app-icon-large .bar { width: 10px; }
.software-details { padding: 70px; align-self: center; }
.software-details .status-pill, .software-details .platform-pill { color: var(--ink-soft); border-color: var(--line); }
.software-details h2 { margin: 13px 0 5px; font-size: clamp(2.5rem, 5vw, 4.4rem); letter-spacing: -.06em; }
.software-details p { max-width: 560px; color: var(--ink-soft); font-size: 1.05rem; }
.software-card-empty { opacity: .76; }
.future-art { background: var(--paper-deep); }
.future-art span { font-size: 6rem; font-weight: 200; }
.status-muted { background: var(--paper-deep); }

.site-header-dark, .site-footer-dark { color: var(--white); }
.site-header-dark .brand, .site-header-dark .site-nav a, .site-footer-dark .brand, .site-footer-dark a { color: var(--white); }
.site-header-dark .brand-mark, .site-footer-dark .brand-mark { color: var(--ink); background: var(--white); }
.site-header-dark .site-nav .nav-cta-light { color: var(--ink); background: var(--white); }
.voicelevel-page { background: #f6f2ff; }
.voicelevel-page .site-header {
  width: 100%;
  max-width: none;
  padding: 0 max(20px, calc((100% - var(--max)) / 2));
  background: #301960;
}
.voice-hero {
  min-height: 720px;
  padding: 90px max(20px, calc((100% - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr .85fr;
  align-items: center;
  gap: 80px;
  color: var(--white);
  background:
    radial-gradient(circle at 75% 55%, rgba(255,138,91,.25), transparent 28%),
    linear-gradient(135deg, #301960, #4f2eb4);
  overflow: hidden;
}
.voice-copy > p:not(.eyebrow) { max-width: 610px; color: rgba(255,255,255,.68); font-size: 1.2rem; }
.app-icon-xl { width: 120px; height: 120px; margin-bottom: 35px; }
.button-disabled { color: #2c165b; background: #ffb762; cursor: default; }
.button-quiet-light { color: var(--white); border: 1px solid rgba(255,255,255,.27); }
.voice-wave {
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transform: rotate(-8deg);
}
.voice-wave span {
  width: clamp(8px, 1.1vw, 14px);
  height: var(--h);
  background: linear-gradient(to top, var(--coral), #ffcf71);
  border-radius: 999px;
  box-shadow: 0 0 25px rgba(255,138,91,.24);
  animation: pulse 2.8s ease-in-out infinite alternate;
  animation-delay: calc(var(--h) * -0.02);
}
@keyframes pulse { to { transform: scaleY(.65); opacity: .7; } }
.voice-story { padding-bottom: 70px; }
.readiness-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.readiness-card { min-height: 250px; padding: 30px; background: var(--white); border: 1px solid rgba(76,44,143,.12); border-radius: 25px; }
.readiness-card > span { color: var(--purple); font-size: .7rem; font-weight: 850; }
.readiness-card h3 { margin-top: 75px; margin-bottom: 5px; font-size: 1.25rem; }
.readiness-card p { color: var(--ink-soft); font-size: .88rem; }
.voice-note { margin-top: 20px; padding: 25px 30px; display: flex; gap: 30px; background: #e9e1ff; border-radius: 18px; }
.voice-note strong { white-space: nowrap; }
.voice-note p { margin: 0; color: var(--ink-soft); }
.voice-support { padding: 70px; display: flex; align-items: center; justify-content: space-between; gap: 40px; background: var(--white); border-radius: 32px; margin-bottom: 110px; }
.voice-support h2 { font-size: 2.8rem; }
.site-footer-dark {
  width: 100%;
  max-width: none;
  margin: 0;
  padding-left: max(20px, calc((100% - var(--max)) / 2));
  padding-right: max(20px, calc((100% - var(--max)) / 2));
  background: #1c0d38;
  border: 0;
}
.site-footer-dark p, .site-footer-dark small { color: rgba(255,255,255,.55); }

.legal-page { width: min(calc(100% - 40px), 850px); margin: 0 auto; padding: 100px 0 130px; }
.legal-page header { padding-bottom: 45px; border-bottom: 1px solid var(--line); }
.legal-page h1 { margin: 0; font-size: clamp(3.5rem, 8vw, 6rem); letter-spacing: -.07em; }
.legal-page header > p:last-child { color: var(--ink-soft); }
.legal-copy { padding-top: 35px; }
.legal-copy h2 { margin-top: 45px; font-size: 1.55rem; }
.legal-copy p { color: var(--ink-soft); font-size: 1rem; }

.reveal { animation: reveal-in .65s ease both; }
@keyframes reveal-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --ink: #f3f6f1;
    --ink-soft: #aebbb5;
    --paper: #0b1411;
    --paper-deep: #1a2722;
    --white: #13201c;
    --line: rgba(235, 245, 239, .14);
    --shadow: 0 24px 70px rgba(0, 0, 0, .3);
  }

  .brand-mark { color: #101b18; background: var(--lime); }
  .button-primary, .orbit-core { color: #101b18; }
  .trust-strip, .approach-panel { background: #111d19; }
  .approach-panel, .approach-panel h2, .process-list h3 { color: #fffef9; }
  .process-list p { color: rgba(255,255,255,.63); }

  .service-card-accent, .ai-panel { color: #101b18; }
  .service-card-accent p, .ai-copy > p:not(.eyebrow), .ai-use-cases p { color: #46524e; }
  .service-card-accent li, .ai-use-cases article { border-color: rgba(16,27,24,.2); }

  .contact-panel { color: #fffef9; }
  .contact-panel .button { color: #101b18; background: #fffef9; }

  .voicelevel-page { background: #0d0915; }
  .site-header-dark .brand-mark, .site-footer-dark .brand-mark { color: #101b18; background: var(--lime); }
  .site-header-dark .site-nav .nav-cta-light { color: #101b18; background: #fffef9; }
  .voice-note { background: #211936; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { animation: none; }
  .orbit-ring-two, .voice-wave span { animation: none; }
}

@media (max-width: 900px) {
  .site-header { height: 75px; }
  .menu-button { display: block; }
  .site-nav {
    position: absolute;
    top: 67px;
    left: 0;
    right: 0;
    padding: 22px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: flex; }
  .site-header-dark .site-nav { background: #2b1654; }
  .hero { grid-template-columns: 1fr; padding-top: 55px; }
  .hero-visual { min-height: 460px; }
  .service-grid, .readiness-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 390px; }
  .product-feature, .ai-panel { grid-template-columns: 1fr; gap: 45px; }
  .software-card { grid-template-columns: 1fr; }
  .software-art { min-height: 310px; }
  .voice-hero { grid-template-columns: 1fr; padding-top: 70px; gap: 10px; }
  .voice-wave { height: 250px; }
  .site-footer { grid-template-columns: 1fr; gap: 15px; }
  .site-footer small { grid-column: auto; }
}

@media (max-width: 600px) {
  .site-header, .hero, .section, .page-hero, .site-footer { width: min(calc(100% - 28px), var(--max)); }
  .hero { min-height: auto; gap: 45px; padding-bottom: 70px; }
  .hero h1, .page-hero h1, .voice-hero h1 { font-size: clamp(3rem, 16vw, 4.6rem); }
  .hero-visual { min-height: 390px; border-radius: 30px; }
  .orbit { transform: scale(.8); }
  .signal-card-top { top: 18px; right: 18px; }
  .signal-card-bottom { bottom: 18px; left: 18px; }
  .trust-strip { justify-content: flex-start; overflow-x: auto; }
  .section { padding: 80px 0; }
  .service-icon { margin-bottom: 55px; }
  .approach-section { width: 100%; padding: 0 8px; }
  .approach-panel { padding: 75px 24px; border-radius: 30px; }
  .ai-panel { padding: 55px 24px; border-radius: 30px; }
  .process-list li { grid-template-columns: 42px 1fr; }
  .app-preview { min-height: 380px; padding: 30px; grid-template-columns: 1fr; }
  .app-arrow { position: absolute; right: 28px; bottom: 28px; }
  .contact-panel { padding: 65px 24px; border-radius: 30px; }
  .software-details { padding: 42px 28px; }
  .voice-note { flex-direction: column; gap: 8px; }
  .voice-support { padding: 45px 28px; flex-direction: column; align-items: flex-start; }
}
