:root {
  --primary: #07b2d0;
  --dark: #081c24;
  --dark-2: #0d2a33;
  --secondary: #155e75;
  --light: #ffffff;
  --soft: #d8edf2;
  --muted: #90aeb8;
  --line: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  --max: 1180px;
  --section-title: clamp(2.25rem, 3.65vw, 3.9rem);
  --section-text: clamp(1.04rem, 1.35vw, 1.16rem);
  --headline-gap: clamp(24px, 2.5vw, 34px);
  --subtitle-gap: 18px;
  --text-gap: 18px;
  --module-gap: clamp(48px, 5.2vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--dark);
  color: var(--dark);
  font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(7, 178, 208, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 24%);
  opacity: calc(0.25 + (var(--scroll-progress, 0) * 0.2));
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  z-index: 30;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 84px, 84px 100%;
  opacity: 0.08;
  mix-blend-mode: screen;
  pointer-events: none;
}

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

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

.skip-link,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.skip-link:focus {
  z-index: 20;
  width: auto;
  height: auto;
  padding: 12px 16px;
  clip: auto;
  background: var(--primary);
  color: var(--dark);
}

.site-header {
  --header-bg: rgba(8, 28, 36, 0.72);
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 56px);
  background: var(--header-bg);
  background-color: var(--header-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

header.site-header.is-dark {
  --header-bg: rgba(8, 28, 36, 0.72);
}

header.site-header.is-light {
  --header-bg: rgba(247, 251, 252, 0.5);
  border-bottom-color: rgba(8, 28, 36, 0.1);
  box-shadow: 0 12px 34px rgba(8, 28, 36, 0.08);
}

header.site-header.is-light.is-scrolled {
  --header-bg: rgba(247, 251, 252, 0.58);
}

.brand img {
  width: clamp(142px, 16vw, 210px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.2vw, 20px);
  color: var(--soft);
  font-size: clamp(0.76rem, 0.86vw, 0.9rem);
  font-weight: 600;
  white-space: nowrap;
}

.site-header.is-light .site-nav {
  color: var(--dark);
}

.site-nav a {
  opacity: 0.82;
  transition: color 180ms ease, opacity 180ms ease;
}

.site-nav a:hover {
  color: var(--primary);
  opacity: 1;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--light);
}

.site-header.is-light .menu-toggle {
  border-color: rgba(8, 28, 36, 0.18);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--light);
}

.site-header.is-light .menu-toggle span:not(.sr-only) {
  background: var(--dark);
}

section {
  padding: clamp(76px, 9vw, 132px) clamp(20px, 5vw, 56px);
}

.section-dark {
  background:
    radial-gradient(circle at 16% 18%, rgba(7, 178, 208, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 22%),
    linear-gradient(135deg, var(--dark) 0%, #061419 55%, var(--dark-2) 100%);
  color: var(--light);
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 120px;
}

.hero-grid,
.section-grid,
.vision-content,
.about-grid,
.contact-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: clamp(34px, 6vw, 80px);
}

.hero-grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.78fr);
  align-items: center;
  column-gap: clamp(80px, 9vw, 150px);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  line-height: 1.18;
  font-weight: 760;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  font-size: clamp(3rem, 4.85vw, 5rem);
}

.title-line {
  display: block;
  white-space: nowrap;
}

.title-line:first-child {
  white-space: nowrap;
}

h2 {
  font-size: var(--section-title);
}

.headline-line {
  display: block;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  line-height: 1.25;
}

.hero-text {
  max-width: 660px;
  margin: 18px 0 0;
  color: var(--soft);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 18px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button-primary {
  background: var(--primary);
  color: var(--dark);
}

.button-secondary {
  border-color: var(--line);
  color: var(--light);
  background: rgba(255, 255, 255, 0.04);
}

.button-dark {
  border-color: rgba(8, 28, 36, 0.18);
  color: var(--dark);
  background: rgba(255, 255, 255, 0.78);
}

.hero-panel {
  position: relative;
  display: grid;
  justify-items: stretch;
  gap: 26px;
  min-height: 560px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(8, 28, 36, 0.68);
  overflow: hidden;
  transform: translate3d(0, calc(var(--hero-shift, 0px) * -1), 0);
  transition: border-color 240ms ease, transform 240ms ease;
}

.hero-panel:hover {
  border-color: rgba(7, 178, 208, 0.42);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  pointer-events: none;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.13) 46%, transparent 72%);
  opacity: 0.55;
  transform: translateX(-120%);
  animation: sheen 4600ms ease-in-out infinite;
  pointer-events: none;
}

.hero-panel:hover::after {
  opacity: 0.8;
}

.panel-brand {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.hero-symbol {
  width: min(28vw, 185px);
  opacity: 0.96;
}

.panel-brand span {
  display: block;
  color: var(--light);
  font-size: clamp(1rem, 1.45vw, 1.22rem);
  line-height: 1.24;
  font-weight: 800;
  white-space: nowrap;
}

.conversation-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  min-height: clamp(304px, 23vw, 338px);
  align-content: stretch;
  transition: opacity 380ms ease, transform 380ms ease, filter 380ms ease;
}

.conversation-stack.is-switching {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(8px);
}

.conversation-card {
  width: 100%;
  min-height: 144px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: clamp(18px, 2.3vw, 24px);
  background: rgba(6, 20, 25, 0.76);
}

.conversation-card p {
  margin: 0;
  color: var(--soft);
}

.hero-panel .conversation-card .question {
  margin-bottom: 8px;
  color: #07b2d0;
  font-weight: 800;
}

.problem-section,
.differentials,
.how-it-works,
.product,
.unique-section,
.experience,
.cases,
.about,
.contact {
  background: #f7fbfc;
  color: var(--dark);
}

.unique-section.section-dark,
.experience.section-dark,
.contact.section-dark {
  background:
    radial-gradient(circle at 16% 18%, rgba(7, 178, 208, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 22%),
    linear-gradient(135deg, var(--dark) 0%, #061419 55%, var(--dark-2) 100%);
  color: var(--light);
}

.cases.section-dark {
  background:
    radial-gradient(circle at 16% 18%, rgba(7, 178, 208, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 22%),
    linear-gradient(135deg, var(--dark) 0%, #061419 55%, var(--dark-2) 100%);
  color: var(--light);
}

.section-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  align-items: start;
}

.section-grid,
.vision-content,
.about-grid,
.contact-grid {
  row-gap: var(--text-gap);
}

.section-copy p,
.vision p,
.about p,
.contact p {
  margin: 0 0 16px;
  color: rgba(8, 28, 36, 0.76);
  font-size: var(--section-text);
  line-height: 1.65;
}

strong {
  color: inherit;
  font-weight: 800;
}

.section-copy strong,
.section-lead strong,
.section-subtitle strong,
.vision strong,
.about strong,
.contact strong {
  color: var(--dark);
}

.section-dark .section-copy strong,
.section-dark .section-lead strong,
.section-dark .section-subtitle strong,
.section-dark .vision strong,
.section-dark .about strong,
.section-dark .contact strong,
.section-dark p strong {
  color: var(--light);
}

p.eyebrow {
  color: var(--primary);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-dark .eyebrow {
  color: var(--primary);
}

.section-dark p:not(.eyebrow) {
  color: var(--soft);
}

.section-subtitle,
.section-lead {
  max-width: 980px;
  margin: var(--subtitle-gap) 0 0;
  color: rgba(8, 28, 36, 0.76);
  font-size: var(--section-text);
  line-height: 1.55;
}

.section-dark .section-subtitle,
.section-dark .section-lead {
  color: var(--soft);
}

.problem-section .section-grid,
.cases .section-grid {
  grid-template-columns: 1fr;
  justify-items: start;
  text-align: left;
  gap: var(--text-gap);
}

.problem-section .section-copy,
.cases .impact-grid {
  max-width: none;
}

.section-heading {
  width: min(100%, var(--max));
  margin: 0 auto var(--module-gap);
}

.grouped-heading {
  margin-top: 0;
}

.section-divider {
  width: min(100%, var(--max));
  height: 1px;
  margin: clamp(58px, 6vw, 86px) auto;
  background: linear-gradient(90deg, transparent, rgba(7, 178, 208, 0.34), transparent);
}

.section-dark .section-divider {
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
}

.section-heading h2 {
  max-width: 920px;
}

.section-heading .eyebrow,
.section-grid .eyebrow,
.vision-content .eyebrow,
.about-grid .eyebrow,
.contact-grid .eyebrow {
  margin-bottom: 18px;
}

.section-grid h2 + .section-copy,
.section-heading h2 + .section-copy,
.section-heading h2 + .section-lead,
.vision-content h2 + p,
.about-grid h2 + p,
.contact-grid h2 + p {
  margin-top: var(--headline-gap);
}

.service-grid,
.pillars,
.impact-grid,
.how-grid,
.pain-grid,
.philosophy-grid,
.feature-grid,
.unique-grid,
.experience-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

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

.service-card,
.how-grid article,
.pain-grid article,
.pillars article,
.impact-grid article,
.philosophy-grid article,
.feature-grid article,
.unique-grid article,
.experience-grid article,
.contact-form {
  border-radius: 8px;
}

.service-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.service-card h3 {
  color: var(--primary);
}

.service-card:hover,
.how-grid article:hover,
.pain-grid article:hover,
.philosophy-grid article:hover,
.feature-grid article:hover,
.unique-grid article:hover,
.experience-grid article:hover,
.pillars article:hover,
.impact-grid article:hover,
.flow-highlight article:hover,
.product-mockup:hover,
.insight-card:hover {
  transform: translateY(-6px);
  border-color: rgba(7, 178, 208, 0.38);
}

.service-card p,
.how-grid p,
.philosophy-grid p,
.feature-grid p,
.unique-grid p,
.experience-grid p,
.pillars p,
.impact-grid p {
  margin: 0;
}

.service-card p + p,
.impact-grid p + p {
  margin-top: 10px;
}

.service-card p {
  color: var(--soft);
}

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

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

.how-grid article {
  position: relative;
}

.how-grid article:not(:last-child)::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -18px;
  z-index: 2;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: var(--primary);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  transform: translateY(-50%);
}

.step-number {
  display: block;
  margin-bottom: 28px;
  color: var(--primary);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.impact-line {
  width: min(100%, var(--max));
  margin: clamp(28px, 4vw, 46px) auto 0;
  color: var(--soft);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.45;
  font-weight: 600;
}

.vision .impact-line {
  width: min(100%, var(--max));
  margin: clamp(28px, 4vw, 46px) auto 0;
  text-align: left;
  color: var(--soft);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.45;
  font-weight: 600;
}

.vision .impact-line strong {
  color: var(--light);
  font-weight: 800;
}

.impact-line strong {
  color: var(--light);
  font-weight: 800;
}

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

.unique-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.experience-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.product-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.82fr);
  align-items: center;
  gap: clamp(56px, 8vw, 110px);
}

.service-card,
.pain-grid article,
.philosophy-grid article,
.feature-grid article,
.how-grid article,
.unique-grid article,
.experience-grid article,
.pillars article,
.impact-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(8, 28, 36, 0.14);
  background: var(--light);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
  box-shadow: none;
}

.service-card h3,
.pain-grid h3,
.philosophy-grid h3,
.feature-grid h3,
.how-grid h3,
.unique-grid h3,
.experience-grid h3,
.pillars h3,
.impact-grid h3 {
  display: block;
  margin: 0 0 10px;
  font-size: 1.2rem;
  line-height: 1.24;
  font-weight: 800;
}

.service-card p,
.pain-grid p,
.philosophy-grid p,
.feature-grid p,
.how-grid p,
.unique-grid p,
.experience-grid p,
.pillars p,
.impact-grid p {
  font-size: 1rem;
  line-height: 1.52;
  font-weight: 500;
}

.unique-grid ul,
.experience-grid ul {
  display: grid;
  gap: 6px;
  margin: 10px 0;
  padding: 0;
  list-style: none;
  color: rgba(8, 28, 36, 0.72);
  font-size: 1rem;
  line-height: 1.42;
}

.unique-grid li,
.experience-grid li {
  position: relative;
  padding-left: 16px;
}

.unique-grid li::before,
.experience-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--primary);
}

.experience-grid li::before {
  background: var(--primary);
}

.about .about-impact {
  width: min(100%, var(--max));
  margin: clamp(28px, 4vw, 46px) auto 0;
  color: rgba(8, 28, 36, 0.76);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.45;
  font-weight: 600;
}

.about .about-impact strong {
  color: var(--dark);
  font-weight: 800;
}

.unique-grid .featured-card {
  border-color: rgba(7, 178, 208, 0.42);
  background:
    linear-gradient(180deg, rgba(7, 178, 208, 0.08), rgba(255, 255, 255, 0)),
    var(--light);
}

.unique-grid .featured-card h3::before {
  content: "🧠 ";
}

.problem-section .philosophy-grid article {
  border-color: rgba(8, 28, 36, 0.14);
  background: var(--light);
  box-shadow: none;
}

.check-list {
  display: grid;
  gap: 8px;
  margin: 8px 0 18px;
  padding: 0;
  list-style: none;
  color: rgba(8, 28, 36, 0.76);
  font-size: var(--section-text);
  line-height: 1.5;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.check-list li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 900;
}

.pain-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: var(--module-gap);
}

.pain-grid article {
  align-content: start;
}

.pain-grid h3 {
  color: var(--primary);
}

.philosophy-grid h3,
.feature-grid h3,
.how-grid h3,
.experience-grid h3,
.pillars h3,
.impact-grid h3,
.problem-section .philosophy-grid h3 {
  color: var(--dark);
}

.unique-grid h3 {
  color: var(--primary);
}

.experience-grid h3 {
  color: var(--primary);
}

.philosophy-grid p,
.feature-grid p,
.experience-grid p,
.how-grid p,
.unique-grid p,
.pillars p,
.impact-grid p {
  color: rgba(8, 28, 36, 0.72);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.52;
}

.problem-section .philosophy-grid p {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.25;
}

.problem-section .philosophy-grid span {
  display: block;
  margin-top: 10px;
  color: rgba(8, 28, 36, 0.72);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.52;
}

.section-dark .unique-grid article,
.section-dark .experience-grid article,
.section-dark .how-grid article,
.section-dark .pillars article,
.section-dark .impact-grid article,
.section-dark .service-card,
.section-dark .philosophy-grid article {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
}

.section-dark .unique-grid p,
.section-dark .experience-grid p,
.section-dark .how-grid p,
.section-dark .pillars p,
.section-dark .impact-grid p,
.section-dark .philosophy-grid p {
  color: var(--soft);
}

.section-dark .unique-grid h3,
.section-dark .experience-grid h3,
.section-dark .how-grid h3,
.section-dark .impact-grid h3,
.section-dark .philosophy-grid h3 {
  color: var(--light);
}

.section-dark .how-grid h3,
.section-dark .service-card h3,
.section-dark .impact-grid h3,
.section-dark .pillars h3 {
  color: var(--primary);
}

.product .product-mockup {
  border-color: rgba(8, 28, 36, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.72)),
    #ffffff;
  box-shadow: none;
}

.product-mockup {
  position: relative;
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035)),
    rgba(8, 28, 36, 0.68);
  box-shadow: none;
  overflow: hidden;
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.product-mockup::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(7, 178, 208, 0.22), transparent 30%),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(255, 255, 255, 0.035) 43px 44px);
  opacity: 0.5;
  pointer-events: none;
}

.product .product-mockup::before {
  background:
    radial-gradient(circle at 18% 12%, rgba(7, 178, 208, 0.14), transparent 30%),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(8, 28, 36, 0.035) 43px 44px);
  opacity: 0.9;
}

.mockup-top,
.mock-question,
.mock-answer,
.mock-indicators {
  position: relative;
  z-index: 1;
}

.mockup-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--soft);
  font-size: 0.9rem;
}

.product .mockup-top {
  color: rgba(8, 28, 36, 0.72);
}

.mockup-top span,
.mock-question span,
.mock-answer span {
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mock-question,
.mock-answer {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(6, 20, 25, 0.76);
}

.product .mock-question,
.product .mock-answer {
  border-color: rgba(8, 28, 36, 0.12);
  background: #f7fbfc;
  box-shadow: none;
}

.mock-question p,
.mock-answer p,
.mock-answer div {
  margin: 8px 0 0;
  color: var(--soft);
}

.product .mock-question p,
.product .mock-answer p,
.product .mock-answer div {
  color: rgba(8, 28, 36, 0.76);
}

.mock-answer p:first-of-type {
  color: var(--light);
  font-size: 1.25rem;
  font-weight: 800;
}

.product .mock-answer p:first-of-type {
  color: var(--dark);
}

.mock-answer p {
  margin: 8px 0 0;
}

.mock-question,
.mock-answer,
.mock-indicators {
  transition: opacity 420ms ease, transform 420ms ease;
}

.product-mockup.is-switching .mock-question,
.product-mockup.is-switching .mock-answer,
.product-mockup.is-switching .mock-indicators {
  opacity: 0;
  transform: translateY(8px);
}

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

.mock-metric {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(8, 28, 36, 0.1);
  border-radius: 8px;
  background: rgba(247, 251, 252, 0.72);
}

.mock-metric span {
  color: rgba(8, 28, 36, 0.66);
  font-size: 0.78rem;
  font-weight: 800;
}

.mock-metric .metric-value {
  color: var(--dark);
  font-size: 1rem;
  line-height: 1;
  font-weight: 800;
}

.mock-metric i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: rgba(8, 28, 36, 0.08);
  overflow: hidden;
}

.mock-metric i::after {
  content: "";
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), #72efff);
  animation: metricFill 1200ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.pillars {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.pillars article,
.impact-grid article {
  padding: 22px;
  border: 1px solid rgba(8, 28, 36, 0.12);
  background: var(--light);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
  box-shadow: none;
}

.section-dark .impact-grid article {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.055);
}

.pillars article {
  min-height: 190px;
}

.pillars p,
.impact-grid p {
  color: rgba(8, 28, 36, 0.72);
}

.section-dark .pillars p,
.section-dark .impact-grid p {
  color: var(--soft);
}

.section-dark .impact-grid h3 {
  color: var(--primary);
}

.vision-content {
  grid-template-columns: 1fr;
  justify-items: start;
  align-items: center;
  text-align: left;
  row-gap: clamp(28px, 3.5vw, 48px);
}

.flow-highlight {
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.flow-highlight article {
  min-height: 170px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.05);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.flow-highlight span {
  display: block;
  margin-bottom: 18px;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flow-highlight p {
  margin: 0;
  color: var(--light);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  font-weight: 800;
}

.prompt-list {
  width: min(100%, var(--max));
  display: grid;
  gap: 16px;
  margin-top: 0;
}

.insight-lab {
  position: relative;
}

.insight-lab::before {
  content: "";
  position: absolute;
  inset: -36px -20px;
  background:
    radial-gradient(circle at 12% 20%, rgba(7, 178, 208, 0.18), transparent 26%),
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(255, 255, 255, 0.035) 43px 44px);
  opacity: 0.45;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  pointer-events: none;
}

.insight-card {
  position: relative;
  display: grid;
  gap: 14px;
  width: 100%;
  min-height: 86px;
  overflow: hidden;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.055);
  color: var(--soft);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 320ms ease, border-color 320ms ease, background 320ms ease, box-shadow 320ms ease, min-height 320ms ease;
}

.insight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(7, 178, 208, 0.18), transparent);
  opacity: 0;
  transform: translateX(-60%);
  pointer-events: none;
}

.insight-card.is-active {
  min-height: 218px;
  border-color: rgba(7, 178, 208, 0.44);
  background:
    linear-gradient(180deg, rgba(7, 178, 208, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.07);
}

.insight-card.is-active::before {
  animation: dataSweep 1800ms ease infinite;
  opacity: 1;
}

.insight-question {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--light);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.insight-answer {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 860px;
  color: var(--soft);
  font-size: 1rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(8px);
  max-height: 0;
  transition: opacity 320ms ease, transform 320ms ease, max-height 320ms ease;
}

.insight-card.is-active .insight-answer {
  opacity: 1;
  transform: translateY(0);
  max-height: 80px;
}

.insight-bars {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  max-height: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 320ms ease, transform 320ms ease, max-height 320ms ease;
}

.insight-card.is-active .insight-bars {
  max-height: 140px;
  opacity: 1;
  transform: translateY(0);
}

.metric-line {
  display: grid;
  grid-template-columns: 110px minmax(120px, 1fr) 74px;
  align-items: center;
  gap: 12px;
  color: var(--soft);
  font-size: 0.9rem;
  font-weight: 700;
}

.metric-line i {
  position: relative;
  display: block;
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.metric-line i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--value);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), #72efff);
  transform: scaleX(0);
  transform-origin: left;
}

.metric-line-warning i::after {
  background: linear-gradient(90deg, #155e75, #07b2d0);
}

.insight-card.is-active .metric-line i::after {
  animation: metricFill 850ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--delay);
}

.metric-line strong {
  color: var(--light);
  text-align: right;
}

@keyframes dataSweep {
  0% {
    transform: translateX(-70%);
  }

  55%,
  100% {
    transform: translateX(70%);
  }
}

@keyframes metricFill {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.impact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 8px;
}

.impact-grid h3 {
  display: block;
  margin-bottom: 8px;
  color: var(--secondary);
  font-size: 1.3rem;
}

.about-grid {
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.72fr);
  justify-items: stretch;
  align-items: start;
  text-align: left;
  column-gap: clamp(64px, 9vw, 130px);
  row-gap: clamp(28px, 4vw, 46px);
}

.about-headline {
  grid-column: 1 / -1;
  max-width: 100%;
}

.about-grid img {
  grid-column: 2;
  grid-row: 2;
  width: min(100%, 430px);
  margin-top: clamp(10px, 3vw, 38px);
  justify-self: center;
}

.about-copy {
  grid-column: 1;
  grid-row: 2;
  max-width: 760px;
}

.about-grid .about-close {
  margin-top: clamp(24px, 3vw, 36px);
  color: var(--dark);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.45;
  font-weight: 800;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.78fr);
  align-items: end;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.contact-actions {
  margin-top: 30px;
}

.contact-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(8, 28, 36, 0.14);
  border-radius: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--secondary);
  font-weight: 800;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-links a:hover {
  transform: translateY(-2px);
  border-color: rgba(7, 178, 208, 0.5);
  background: var(--light);
}

.contact-links svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(8, 28, 36, 0.12);
  background: var(--light);
  box-shadow: none;
}

.section-dark .contact-form {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 800;
}

.section-dark .contact-form label {
  color: var(--light);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(8, 28, 36, 0.16);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--dark);
  font: inherit;
  resize: vertical;
}

.section-dark .contact-form input,
.section-dark .contact-form textarea {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(6, 20, 25, 0.72);
  color: var(--light);
}

.contact-form input {
  min-height: 48px;
}

.contact-form textarea {
  min-height: 132px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(7, 178, 208, 0.22);
  border-color: var(--primary);
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 40px 20px;
  background: #f7fbfc;
  color: rgba(8, 28, 36, 0.7);
  text-align: center;
}

.site-footer img {
  width: min(230px, 56vw);
}

.site-footer p {
  margin: 0;
  color: var(--dark);
  font-weight: 800;
}

.thanks-page {
  min-height: 100svh;
}

.thanks {
  min-height: 100svh;
  display: grid;
  place-items: center;
}

.thanks-content {
  width: min(100%, 760px);
}

.thanks-content img {
  width: min(260px, 68vw);
  margin-bottom: 56px;
}

.thanks-content p:not(.eyebrow) {
  max-width: 640px;
  margin: 22px 0 32px;
  color: var(--soft);
  font-size: 1.18rem;
}

.reveal {
  --reveal-x: 0px;
  --reveal-y: 56px;
  opacity: 0;
  filter: blur(22px);
  clip-path: inset(18% 0 -12% 0);
  transform: translate3d(var(--reveal-x), var(--reveal-y), 0) scale(0.985);
  transition: opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1), transform 1100ms cubic-bezier(0.22, 1, 0.36, 1), filter 1100ms ease, clip-path 1100ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform, filter, clip-path;
}

.reveal.is-visible {
  opacity: 1;
  filter: blur(0);
  clip-path: inset(-16px);
  transform: translateY(0);
}

.reveal-from-left {
  --reveal-x: -150px;
  --reveal-y: 0px;
}

.reveal-from-right {
  --reveal-x: 150px;
  --reveal-y: 0px;
}

.reveal-from-bottom {
  --reveal-x: 0px;
  --reveal-y: 54px;
}

.reveal-from-top {
  --reveal-x: 0px;
  --reveal-y: -34px;
}

.hero-panel.reveal.is-visible {
  transform: translate3d(0, calc(var(--hero-shift, 0px) * -1), 0) scale(1);
}

@keyframes sheen {
  0% {
    transform: translateX(-120%);
  }

  62%,
  100% {
    transform: translateX(120%);
  }
}

@media (max-width: 1020px) {
  .how-grid article:not(:last-child)::after {
    display: none;
  }

  .hero-grid,
  .section-grid,
  .vision-content,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .pillars,
  .how-grid,
  .pain-grid,
  .philosophy-grid,
  .feature-grid,
  .unique-grid,
  .experience-grid,
  .product-grid,
  .flow-highlight {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .about-grid img {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    width: min(100%, 340px);
    margin-top: 0;
  }

  .about-headline,
  .about-copy {
    grid-column: 1;
    grid-row: auto;
  }

  h1 {
    font-size: clamp(2.8rem, 8.4vw, 5rem);
  }

  .hero-panel {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 20px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 20px 18px;
    background: inherit;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 12px 0;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: clamp(1.95rem, 8.2vw, 2.35rem);
  }

  .service-grid,
  .pillars,
  .how-grid,
  .pain-grid,
  .philosophy-grid,
  .feature-grid,
  .unique-grid,
  .experience-grid,
  .product-grid,
  .flow-highlight {
    grid-template-columns: 1fr;
  }

  .service-card,
  .how-grid article,
  .pain-grid article,
  .pillars article,
  .philosophy-grid article,
  .feature-grid article,
  .unique-grid article,
  .experience-grid article {
    min-height: auto;
  }

  .how-grid {
    row-gap: 36px;
  }

  .how-grid article:not(:last-child)::after {
    content: "↓";
    display: grid;
    top: auto;
    right: 50%;
    bottom: -29px;
    transform: translateX(50%);
  }

  .insight-card {
    padding: 18px;
  }

  .metric-line {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .metric-line strong {
    text-align: left;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .hero-panel.reveal,
  .service-card.reveal,
  .pillars article.reveal,
  .impact-grid article.reveal,
  .conversation-card.reveal {
    opacity: 1;
    filter: none;
    clip-path: none;
    transform: none;
    transition: none;
  }
}

.flow-highlight article:last-child {
  border: 1px solid rgba(7,178,208,.45);
  background: linear-gradient(
    135deg,
    rgba(7,178,208,.10),
    rgba(7,178,208,.03)
  );
  box-shadow: 0 0 30px rgba(7,178,208,.12);
}

.service-grid,
.pillars,
.impact-grid,
.how-grid,
.pain-grid,
.philosophy-grid,
.feature-grid,
.unique-grid,
.experience-grid,
.flow-highlight,
.product-grid {
  overflow: visible;
}

.service-card:hover,
.service-card.reveal.is-visible:hover,
.how-grid article:hover,
.how-grid article.reveal.is-visible:hover,
.pain-grid article:hover,
.pain-grid article.reveal.is-visible:hover,
.philosophy-grid article:hover,
.philosophy-grid article.reveal.is-visible:hover,
.feature-grid article:hover,
.feature-grid article.reveal.is-visible:hover,
.unique-grid article:hover,
.unique-grid article.reveal.is-visible:hover,
.experience-grid article:hover,
.experience-grid article.reveal.is-visible:hover,
.pillars article:hover,
.pillars article.reveal.is-visible:hover,
.impact-grid article:hover,
.impact-grid article.reveal.is-visible:hover,
.flow-highlight article:hover,
.flow-highlight article.reveal.is-visible:hover,
.product-mockup:hover,
.product-mockup.reveal.is-visible:hover,
.insight-card:hover,
.insight-card.reveal.is-visible:hover {
  transform: translateY(-6px);
  border-color: rgba(7, 178, 208, 0.48);
  clip-path: inset(-16px);
}
