:root {
  --navy: #062d56;
  --navy-deep: #031b34;
  --navy-soft: #0d416f;
  --teal: #08c89e;
  --teal-dark: #079775;
  --teal-soft: #dbf8f0;
  --ice: #edf8f7;
  --soft: #f5f8fa;
  --ink: #0a1b2d;
  --muted: #5c6c7c;
  --line: #dbe5ea;
  --white: #fff;
  --container: 1180px;
  --radius: 20px;
  --shadow: 0 26px 76px rgba(6, 45, 86, .15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
.container { width: min(var(--container), calc(100% - 48px)); margin-inline: auto; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
:where(a, button, summary):focus-visible {
  outline: 3px solid rgba(8, 200, 158, .72);
  outline-offset: 4px;
}
.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--navy);
  background: white;
  box-shadow: var(--shadow);
  transform: translateY(-180%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(6, 45, 86, .09);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand { display: inline-flex; align-items: center; }
.brand img { width: 272px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 27px; font-size: .91rem; font-weight: 650; }
.site-nav > a:not(.btn):hover { color: var(--teal-dark); }
.menu-toggle { display: none; border: 0; background: none; padding: 8px; }
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 25px;
  height: 2px;
  margin: 5px;
  background: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-weight: 750;
  transition: .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-small { min-height: 42px; padding: 0 17px; }
.btn-dark { color: white; background: var(--navy); }
.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--teal), #08ad87);
  box-shadow: 0 13px 30px rgba(8, 200, 158, .27);
}
.btn-secondary { border-color: #b8c8d4; background: white; }
.btn-secondary:hover { border-color: var(--teal-dark); color: var(--teal-dark); }
.btn-white { color: var(--navy); background: white; }
.btn-outline-light { color: white; border-color: rgba(255, 255, 255, .46); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 31px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 102px 0 92px;
  background:
    radial-gradient(circle at 88% 15%, rgba(8, 200, 158, .17), transparent 29%),
    linear-gradient(135deg, #f8fbfc 0%, #fff 51%, #edf8f7 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 45, 86, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 45, 86, .035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to right, transparent, black);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 64px;
}
.hero-grid > * { min-width: 0; }
.test-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 7px 11px;
  border: 1px solid #bfe9de;
  border-radius: 99px;
  color: #08745c;
  background: #eefbf7;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.test-label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(8, 200, 158, .12);
}
.eyebrow {
  margin: 0 0 17px;
  color: #08745c;
  font-size: .77rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; font-family: Manrope, Inter, sans-serif; line-height: 1.12; }
h1 {
  max-width: 12ch;
  margin-bottom: 24px;
  font-size: clamp(2.9rem, 5.1vw, 5rem);
  letter-spacing: -.052em;
}
h1 span { color: var(--teal-dark); }
h2 { font-size: clamp(2rem, 3.45vw, 3.42rem); letter-spacing: -.042em; }
h3 { font-size: 1.24rem; }
.hero-lead { max-width: 60ch; color: var(--muted); font-size: 1.12rem; }
.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  color: #34495c;
  font-size: .86rem;
  font-weight: 650;
}
.trust-list li::before { content: "✓"; margin-right: 7px; color: var(--teal-dark); }

.studio-visual { position: relative; }
.visual-glow {
  position: absolute;
  inset: 14%;
  background: var(--teal);
  filter: blur(90px);
  opacity: .23;
}
.studio-window {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 23px;
  color: #e8f2f8;
  background: var(--navy-deep);
  box-shadow: 0 40px 95px rgba(3, 27, 52, .29);
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}
.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 52px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  color: #8ea9be;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .1em;
}
.window-bar > div { display: flex; gap: 5px; }
.window-bar > div i { width: 7px; height: 7px; border-radius: 50%; background: #45647e; }
.window-bar > div i:nth-child(2) { background: #08a782; }
.window-bar > div i:nth-child(3) { background: #e3b15b; }
.window-bar b { color: #8df2dc; letter-spacing: 0; }
.window-bar b i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 4px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px var(--teal);
}
.window-body { display: grid; grid-template-columns: 120px 1fr; min-height: 430px; }
.window-body aside {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 19px 12px;
  border-right: 1px solid rgba(255, 255, 255, .07);
  background: rgba(255, 255, 255, .025);
}
.window-body aside img { width: 45px; margin: 0 8px 16px; border-radius: 10px; }
.window-body aside span {
  padding: 8px 9px;
  border-radius: 7px;
  color: #8faabd;
  font-size: .65rem;
  font-weight: 650;
}
.window-body aside span.active { color: white; background: rgba(8, 200, 158, .16); }
.production-panel { min-width: 0; padding: 20px; }
.panel-heading { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 15px; }
.panel-heading small, .panel-heading strong { display: block; }
.panel-heading small { color: #7998b0; font-size: .58rem; letter-spacing: .08em; }
.panel-heading strong { margin-top: 2px; font-size: .84rem; }
.panel-heading > span {
  align-self: flex-start;
  padding: 5px 8px;
  border-radius: 99px;
  color: #8df2dc;
  background: rgba(8, 200, 158, .12);
  font-size: .55rem;
  font-weight: 750;
}
.scene-preview {
  position: relative;
  height: 230px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 13px;
  background: linear-gradient(#a7e6f2 0 55%, #d9e7a5 55%);
}
.sky { position: absolute; inset: 0; }
.sun {
  position: absolute;
  top: 24px;
  right: 34px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #ffd469;
  box-shadow: 0 0 0 10px rgba(255, 212, 105, .22);
}
.cloud {
  position: absolute;
  width: 55px;
  height: 15px;
  border-radius: 99px;
  background: rgba(255, 255, 255, .78);
}
.cloud::before, .cloud::after {
  content: "";
  position: absolute;
  bottom: 0;
  border-radius: 50%;
  background: inherit;
}
.cloud::before { left: 10px; width: 25px; height: 25px; }
.cloud::after { right: 7px; width: 19px; height: 19px; }
.cloud-one { top: 35px; left: 35px; }
.cloud-two { top: 72px; right: 100px; transform: scale(.7); }
.hill { position: absolute; bottom: -55px; border-radius: 50% 50% 0 0; }
.hill-back { left: -25%; width: 115%; height: 155px; background: #78bd79; transform: rotate(3deg); }
.hill-front { right: -35%; width: 105%; height: 130px; background: #3f9e69; transform: rotate(-5deg); }
.character { position: absolute; z-index: 3; bottom: 25px; left: 43%; width: 58px; height: 100px; }
.character .head {
  position: absolute;
  z-index: 2;
  left: 7px;
  width: 45px;
  height: 45px;
  border: 4px solid #593f34;
  border-radius: 50%;
  background: #d9905d;
}
.character .head::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 2px;
  width: 34px;
  height: 18px;
  border-radius: 50% 50% 30% 30%;
  background: #49332d;
}
.character .head i {
  position: absolute;
  top: 20px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #172c39;
}
.character .head i:first-child { left: 10px; }
.character .head i:last-child { right: 10px; }
.character .body {
  position: absolute;
  bottom: 0;
  left: 4px;
  width: 50px;
  height: 65px;
  border-radius: 22px 22px 9px 9px;
  background: #ef6f63;
}
.shot-tag {
  position: absolute;
  z-index: 4;
  right: 10px;
  bottom: 10px;
  padding: 5px 8px;
  border-radius: 6px;
  color: white;
  background: rgba(3, 27, 52, .72);
  font-size: .56rem;
  font-weight: 700;
}
.production-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-top: 10px; }
.production-stats article {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 9px;
  background: rgba(255, 255, 255, .035);
}
.production-stats span, .production-stats strong, .production-stats small { display: block; }
.production-stats span { color: #7897af; font-size: .54rem; }
.production-stats strong { margin: 1px 0; font-size: .83rem; }
.production-stats small { color: #96aabd; font-size: .51rem; }

.context-strip { padding: 22px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.context-grid { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.context-grid p { margin: 0; font-weight: 650; }
.context-grid div { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.context-grid span { padding: 7px 12px; border-radius: 99px; background: var(--soft); font-size: .76rem; font-weight: 700; }
.context-grid i { color: var(--teal-dark); font-style: normal; }

.section { padding: 108px 0; }
.section-heading { max-width: 810px; margin-bottom: 48px; }
.section-heading > p:last-child { color: var(--muted); font-size: 1.05rem; }
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  list-style: none;
}
.workflow-grid li { min-height: 330px; padding: 29px; background: white; }
.workflow-grid li > span {
  display: grid;
  width: 43px;
  height: 43px;
  margin-bottom: 52px;
  place-items: center;
  border-radius: 11px;
  color: var(--navy);
  background: var(--teal-soft);
  font-size: .72rem;
  font-weight: 800;
}
.workflow-grid small { color: var(--teal-dark); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.workflow-grid h3 { margin: 10px 0 12px; }
.workflow-grid p { color: var(--muted); font-size: .91rem; }

.platform-section {
  color: white;
  background:
    radial-gradient(circle at 86% 15%, rgba(8, 200, 158, .18), transparent 30%),
    linear-gradient(135deg, var(--navy-deep), var(--navy));
}
.platform-grid { display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 72px; }
.platform-copy h2 { max-width: 10ch; }
.platform-copy > p:not(.eyebrow) { max-width: 54ch; color: #b2c4d2; }
.eyebrow-light { color: #79ead3; }
.text-link-light {
  display: inline-block;
  margin-top: 18px;
  padding-bottom: 3px;
  border-bottom: 2px solid var(--teal);
  color: white;
  font-weight: 800;
}
.capability-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.capability-grid article {
  position: relative;
  min-height: 235px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 14px;
  background: rgba(255, 255, 255, .055);
}
.capability-grid article > b { position: absolute; top: 20px; right: 20px; color: #7290a8; font-size: .62rem; }
.capability-icon {
  display: grid;
  width: 41px;
  height: 41px;
  margin-bottom: 32px;
  place-items: center;
  border-radius: 10px;
  color: var(--navy);
  background: var(--teal);
  font-family: Manrope, sans-serif;
  font-weight: 800;
}
.capability-grid h3 { margin-bottom: 9px; }
.capability-grid p { margin: 0; color: #acc0d0; font-size: .88rem; }

.principles-section { background: var(--soft); }
.principles-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  padding: 55px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: 0 17px 52px rgba(6, 45, 86, .07);
}
.principles-panel > div > p:last-child { color: var(--muted); }
.principles-panel ul { margin: 0; padding: 0; border-top: 1px solid var(--line); list-style: none; }
.principles-panel li {
  display: grid;
  grid-template-columns: 43px 1fr;
  gap: 17px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}
.principles-panel li > span {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border-radius: 9px;
  color: var(--teal-dark);
  background: var(--teal-soft);
  font-size: .65rem;
  font-weight: 800;
}
.principles-panel b, .principles-panel small { display: block; }
.principles-panel small { margin-top: 2px; color: var(--muted); }

.faq-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 72px; }
.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary {
  position: relative;
  padding: 22px 43px 22px 0;
  cursor: pointer;
  font-family: Manrope, sans-serif;
  font-weight: 750;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 5px;
  color: var(--teal-dark);
  font-size: 1.5rem;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0 0 22px; padding-right: 38px; color: var(--muted); }

.final-cta { padding: 42px 0 92px; background: var(--soft); }
.final-panel {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: center;
  gap: 48px;
  padding: 55px;
  border-radius: 24px;
  color: white;
  background:
    radial-gradient(circle at 83% 19%, rgba(8, 200, 158, .28), transparent 34%),
    var(--navy);
  box-shadow: var(--shadow);
}
.final-panel h2 { max-width: 17ch; margin-bottom: 12px; }
.final-panel p { margin-bottom: 0; color: #bbcad6; }
.test-label-light { border-color: rgba(255, 255, 255, .19); color: #9ff4e2; background: rgba(255, 255, 255, .07); }

footer { padding: 58px 0 24px; color: #b5c1cb; background: #03111f; }
.footer-grid { display: grid; grid-template-columns: 1.25fr .75fr 1fr; gap: 48px; align-items: start; }
.footer-grid img { width: 290px; }
.footer-grid p { max-width: 43ch; margin: 16px 0 0; }
.footer-grid b { display: block; margin-bottom: 12px; color: white; }
.footer-grid a { display: block; margin-bottom: 8px; }
.footer-grid a:hover { color: white; }
.footer-bottom { margin-top: 35px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: .8rem; }

.reveal { opacity: 1; transform: none; }
.motion-ready .reveal { opacity: 0; transform: translateY(18px); transition: .65s ease; }
.motion-ready .reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .hero-grid, .platform-grid, .principles-panel, .faq-grid, .final-panel { grid-template-columns: 1fr; }
  .hero { padding-top: 74px; }
  .hero-grid { gap: 56px; }
  .studio-window { transform: none; }
  .workflow-grid { grid-template-columns: 1fr 1fr; }
  .platform-grid { gap: 48px; }
  .principles-panel { gap: 35px; }
  .final-panel { gap: 20px; }
}

@media (max-width: 860px) {
  .site-nav {
    position: absolute;
    top: 78px;
    left: 24px;
    right: 24px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: white;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .context-grid { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 32px, var(--container)); }
  .brand img { width: 225px; }
  .section { padding: 78px 0; }
  h1 { font-size: 2.75rem; }
  .actions, .actions .btn { width: 100%; }
  .trust-list { display: block; }
  .trust-list li { margin-bottom: 7px; }
  .window-body { grid-template-columns: 1fr; }
  .window-body aside {
    align-items: center;
    flex-direction: row;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
  }
  .window-body aside img { width: 39px; margin: 0 5px 0 0; }
  .window-body aside span { flex: 0 0 auto; }
  .production-panel { padding: 14px; }
  .scene-preview { height: 205px; }
  .workflow-grid, .capability-grid { grid-template-columns: 1fr; }
  .workflow-grid li { min-height: 260px; }
  .workflow-grid li > span { margin-bottom: 34px; }
  .principles-panel, .final-panel { padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid img { width: 250px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .motion-ready .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .studio-window { transition: none; transform: none; }
}
