/* ==========================================================================
   VisioClinical AI — Global styles
   Brand: #01265b | #04a3ac | #6aabe5 | #ffffff
   ========================================================================== */

:root {
  --navy: #01265b;
  --teal: #04a3ac;
  --sky: #6aabe5;
  --white: #ffffff;
  --off-white: #f4f8fc;
  --text: #1a2d4a;
  --text-muted: #4a5f7a;
  --glass: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.2);
  --shadow: 0 8px 32px rgba(1, 38, 91, 0.12);
  --shadow-lg: 0 20px 60px rgba(1, 38, 91, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --header-h: 72px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

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

a {
  color: var(--teal);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--navy);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--navy);
}

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

.container--narrow {
  width: min(760px, 92vw);
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 9999;
  padding: 0.5rem 1rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

/* ==========================================================================
   Header / Nav
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background var(--transition), box-shadow var(--transition);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(1, 38, 91, 0.08);
}

.site-header.is-transparent {
  background: transparent;
}

.site-header.header--hero-image .nav__link {
  color: rgba(255, 255, 255, 0.95);
}

.site-header.header--hero-image .nav__link:hover,
.site-header.header--hero-image .nav__link--active {
  color: var(--sky);
  background: rgba(255, 255, 255, 0.1);
}

.site-header.header--hero-image .nav__link--cta {
  color: var(--white) !important;
}

.site-header.header--hero-image .nav__toggle-bar {
  background: var(--white);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.nav__logo {
  height: 40px;
  width: auto;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__link {
  display: block;
  padding: 0.5rem 1rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}

.nav__link:hover,
.nav__link--active {
  color: var(--teal);
  background: rgba(4, 163, 172, 0.08);
}

.nav__link--cta {
  background: linear-gradient(135deg, var(--teal), var(--sky));
  color: var(--white) !important;
  margin-left: 0.5rem;
}

.nav__link--cta:hover {
  filter: brightness(1.05);
  color: var(--white) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] .nav__toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

main {
  padding-top: var(--header-h);
}

/* ==========================================================================
   Typography utilities
   ========================================================================== */

.eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.eyebrow--light {
  color: var(--sky);
}

.section {
  padding: clamp(4rem, 10vw, 6.5rem) 0;
}

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

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 1rem;
}

.section__title--light {
  color: var(--white);
}

.section__lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0;
}

.section__intro {
  max-width: 65ch;
  color: var(--text-muted);
}

.section__intro--light {
  color: rgba(255, 255, 255, 0.85);
}

.section__header {
  margin-bottom: 3rem;
  max-width: 720px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

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

.btn--primary {
  background: linear-gradient(135deg, var(--teal) 0%, #038a92 100%);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(4, 163, 172, 0.35);
}

.btn--primary:hover {
  color: var(--white);
  filter: brightness(1.06);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border-color: rgba(1, 38, 91, 0.25);
}

.btn--outline:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}

.btn--sky {
  background: var(--sky);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(106, 171, 229, 0.45);
}

.btn--sky:hover {
  color: var(--navy);
  filter: brightness(1.08);
}

/* Glass */
.glass {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.glass-card {
  background: var(--white);
  border: 1px solid rgba(106, 171, 229, 0.25);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

/* ==========================================================================
   Hero zone (hero + positioning share decorative background)
   ========================================================================== */

.hero-zone {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.hero-zone__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: linear-gradient(160deg, var(--off-white) 0%, #e8f2fa 50%, rgba(106, 171, 229, 0.12) 100%);
}

/* Framed hero — gutters shrink first, then image crops from the left (right edge preserved) */
.hero--framed {
  position: relative;
  z-index: 1;
  padding: clamp(1rem, 2.5vw, 1.5rem) 0 0;
  background: transparent;
  --hero-natural-width: 75rem; /* match hero image width (1200px) */
}

.hero__wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  /* Side bumpers absorb narrowing first; reach zero when viewport ≈ image width */
  padding-inline: clamp(0px, (100vw - var(--hero-natural-width)) / 2, 9rem);
  background: transparent;
}

.hero__figure {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: none;
}

.hero__media {
  position: relative;
  display: flex;
  justify-content: flex-end;
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 16px 48px rgba(1, 38, 91, 0.14);
}

.hero__img {
  display: block;
  flex-shrink: 0;
  width: max(100%, var(--hero-natural-width));
  max-width: none;
  height: auto;
}

.hero__headline {
  position: absolute;
  top: 10%;
  left: 9%;
  width: 36%;
  max-width: 18em;
  pointer-events: none;
  z-index: 2;
}

.hero--framed .hero__title {
  font-size: 3.35rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-shadow: 0 2px 20px rgba(1, 38, 91, 0.45);
}

/* Copy sits in the image's built-in white area (bottom-left) */
.hero__inset {
  position: absolute;
  left: 5.5%;
  bottom: 4.5%;
  width: min(84%, 800px);
  pointer-events: auto;
  z-index: 2;
}

.hero__inset-text {
  font-size: clamp(1.0625rem, 1.85vw, 1.1875rem);
  line-height: 1.65;
  color: var(--navy);
  margin: 0 0 1.25rem;
  font-weight: 500;
}

.hero--framed .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.positioning {
  position: relative;
  z-index: 1;
  background: transparent;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  animation: float 12s ease-in-out infinite;
}

.hero__orb--1 {
  width: 400px;
  height: 400px;
  background: rgba(4, 163, 172, 0.2);
  top: -10%;
  right: 10%;
}

.hero__orb--2 {
  width: 300px;
  height: 300px;
  background: rgba(106, 171, 229, 0.25);
  bottom: 10%;
  left: -5%;
  animation-delay: -4s;
}

.hero__grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(1, 38, 91, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(1, 38, 91, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 1;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}

/* Positioning */
.positioning__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: start;
}

.positioning__body p {
  margin: 0 0 1rem;
  color: var(--text-muted);
}

.positioning__body p:last-child {
  margin-bottom: 0;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.stat-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(145deg, var(--navy), #023d7a);
  color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.stat-card__number {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--sky);
}

.stat-card__suffix {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--teal);
}

.stat-card__label {
  margin: 0.5rem 0 0;
  font-size: 0.9375rem;
  opacity: 0.9;
}

/* Problem section */
.section--problem {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  overflow: hidden;
}

.section--problem::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 100% 0%, rgba(4, 163, 172, 0.15), transparent 60%);
  pointer-events: none;
}

.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.problem__main p {
  color: rgba(255, 255, 255, 0.85);
}

.problem__closing {
  font-weight: 500;
  color: var(--sky) !important;
  border-left: 3px solid var(--teal);
  padding-left: 1.25rem;
  margin-top: 1.5rem !important;
}

.question-bubble {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(106, 171, 229, 0.2);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  transition: transform var(--transition), background var(--transition);
}

.question-bubble:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.1);
}

.question-bubble__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 50%;
}

.question-bubble p {
  margin: 0;
  font-size: 0.9375rem;
}

.problem__impact {
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.problem__impact p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.0625rem;
  line-height: 1.65;
}

/* Solution */
.section--solution {
  background: var(--white);
}

.solution__intro {
  margin-bottom: 2rem;
}

.solution__content p {
  color: var(--text-muted);
  max-width: 72ch;
}

.solution__quote {
  margin-top: 2rem;
  font-size: 1.125rem;
  font-style: italic;
  color: var(--navy);
  border-left: 4px solid var(--teal);
}

/* Workflow */
.workflow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 3.5rem;
  padding: 2.5rem;
  background: linear-gradient(135deg, var(--off-white), rgba(106, 171, 229, 0.12));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(106, 171, 229, 0.2);
}

.workflow__step {
  flex: 1;
  text-align: center;
  padding: 0 0.5rem;
}

.workflow__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border-radius: 14px;
  color: var(--teal);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.workflow__step:hover .workflow__icon {
  transform: scale(1.08);
  color: var(--navy);
}

.workflow__icon svg {
  width: 28px;
  height: 28px;
}

.workflow__step h3 {
  font-size: 1.125rem;
  margin: 0 0 0.35rem;
}

.workflow__step p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.workflow__connector {
  flex: 0 0 40px;
  height: 2px;
  margin-top: 28px;
  background: linear-gradient(90deg, var(--teal), var(--sky));
  opacity: 0.6;
}

/* Platform / products */
.section--platform {
  background: var(--off-white);
}

.product-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  position: relative;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-card--armormed:hover { border-color: var(--teal); }
.product-card--woundguard:hover { border-color: #c45c7a; }
.product-card--tremortrack:hover { border-color: var(--sky); }

.product-card--armormed { --accent: var(--teal); }
.product-card--woundguard { --accent: #c45c7a; }
.product-card--tremortrack { --accent: var(--sky); }

.product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
}

.product-card__badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  background: rgba(4, 163, 172, 0.12);
  color: var(--teal);
  border-radius: 4px;
  margin-bottom: 0.75rem;
}

.product-card__badge--dev {
  background: rgba(106, 171, 229, 0.2);
  color: var(--navy);
}

.product-card__name {
  font-size: 1.5rem;
  margin: 0 0 0.25rem;
}

.product-card__subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.product-card__short {
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.75rem;
}

.product-card__desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0;
}

.product-card__icon {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 64px;
  height: 64px;
  opacity: 0.12;
  color: var(--accent);
}

.product-card__icon svg {
  width: 100%;
  height: 100%;
}

/* Value tabs */
.section--values {
  background: var(--white);
}

.tabs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 0.35rem;
  background: var(--off-white);
  border-radius: 12px;
  width: fit-content;
}

.tabs__btn {
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--text-muted);
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}

.tabs__btn--active,
.tabs__btn:hover {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow);
}

.tabs__panel {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tabs__panel--active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.value-row {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: value-card;
}

.value-row__item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.25rem 1.25rem 1.5rem;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(106, 171, 229, 0.28);
  border-top: 3px solid var(--teal);
  transition: transform var(--transition), box-shadow var(--transition);
}

.value-row__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.value-row__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}

.value-row__body strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.value-row__body span {
  display: block;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Vision */
.vision {
  position: relative;
  padding: clamp(5rem, 12vw, 8rem) 0;
  overflow: hidden;
}

.vision__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, #024080 50%, rgba(4, 163, 172, 0.4) 100%);
  animation: gradientShift 15s ease infinite alternate;
}

@keyframes gradientShift {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(8deg); }
}

.vision__inner {
  position: relative;
  text-align: center;
  max-width: 900px;
}

.vision__quote {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--white);
  margin: 0 0 2rem;
  line-height: 1.35;
}

.vision__cta {
  margin-top: 0.5rem;
}

/* CTA */
.section--cta {
  background: var(--off-white);
}

.cta-block {
  text-align: center;
  padding: 3.5rem 2rem;
  background: linear-gradient(145deg, var(--white), rgba(106, 171, 229, 0.1));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(106, 171, 229, 0.25);
  box-shadow: var(--shadow);
}

.cta-block--inline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  text-align: left;
}

.cta-block__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 0.75rem;
}

.cta-block__text {
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  max-width: 50ch;
  margin-inline: auto;
}

.cta-block--inline .cta-block__text {
  margin: 0;
  margin-inline: 0;
}

/* Page hero (inner pages) */
.page-hero {
  position: relative;
  padding: clamp(4rem, 10vw, 6rem) 0;
  background: var(--navy);
  overflow: hidden;
}

.page-hero--compact {
  padding: clamp(3rem, 8vw, 4.5rem) 0;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(4, 163, 172, 0.25), transparent 45%),
    radial-gradient(circle at 80% 20%, rgba(106, 171, 229, 0.2), transparent 40%);
}

.page-hero__inner {
  position: relative;
}

.page-hero__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--white);
  margin: 0 0 1rem;
}

.page-hero__subtitle {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  max-width: 55ch;
  margin: 0;
}

/* About */
.mission-block {
  margin: 0;
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  text-align: center;
  background: transparent;
  border: none;
  box-shadow: none;
}

.mission-ornament--dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.mission-ornament--dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.7;
}

.mission-ornament--dots span:nth-child(2) {
  opacity: 1;
  transform: scale(1.15);
}

.mission-ornament--line {
  width: min(120px, 30vw);
  height: 2px;
  margin: 1.75rem auto 0;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

.mission-block__text {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  color: var(--teal);
  max-width: 58ch;
  margin-inline: auto;
}

.about-story__heading {
  margin-bottom: 2rem;
}

.about-story__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-story__content p {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.about-story__content p:last-child {
  margin-bottom: 0;
}

.about-story__lead {
  margin-top: 0;
}

.about-timeline__item {
  display: flex;
  gap: 1.25rem;
  padding-bottom: 1.75rem;
  position: relative;
}

.about-timeline__item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 24px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--teal), var(--sky));
  opacity: 0.4;
}

.about-timeline__dot {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(4, 163, 172, 0.2);
}

.about-timeline__item h3 {
  font-size: 1.0625rem;
  margin: 0 0 0.35rem;
}

.about-timeline__item p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.section--beliefs {
  background: var(--navy);
}

.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.belief-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(106, 171, 229, 0.2);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), background var(--transition);
}

.belief-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}

.belief-card__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  color: var(--teal);
}

.belief-card__icon svg {
  width: 100%;
  height: 100%;
}

.belief-card__label {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--white);
  margin: 0;
  line-height: 1.35;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(106, 171, 229, 0.25);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item.is-open {
  box-shadow: var(--shadow);
  border-color: var(--teal);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  text-align: left;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}

.faq-item__trigger:hover {
  color: var(--teal);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: "";
  position: absolute;
  background: var(--teal);
  border-radius: 2px;
  transition: transform var(--transition);
}

.faq-item__icon::before {
  width: 14px;
  height: 2px;
  top: 9px;
  left: 3px;
}

.faq-item__icon::after {
  width: 2px;
  height: 14px;
  top: 3px;
  left: 9px;
}

.faq-item.is-open .faq-item__icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-item__panel {
  padding: 0 1.5rem 1.25rem;
}

.faq-item__panel p {
  margin: 0;
  color: var(--text-muted);
  padding-top: 0.25rem;
  border-top: 1px solid rgba(106, 171, 229, 0.15);
  padding-top: 1rem;
}

.faq-cta {
  text-align: center;
  margin-top: 2.5rem;
  color: var(--text-muted);
}

/* Contact */
.contact-page__headline {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin: 0 0 2.5rem;
  line-height: 1.35;
}

.contact-cards--centered {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 720px;
  margin-inline: auto;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-card h2 {
  font-size: 1.125rem;
  margin: 0 0 0.5rem;
}

.contact-card p {
  margin: 0;
  color: var(--text-muted);
}

.contact-card__icon {
  width: 40px;
  height: 40px;
  color: var(--teal);
  margin-bottom: 1rem;
}

.contact-card__icon svg {
  width: 100%;
  height: 100%;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid rgba(106, 171, 229, 0.4);
  border-radius: 8px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(4, 163, 172, 0.15);
}

.form-success {
  padding: 1rem;
  background: rgba(4, 163, 172, 0.1);
  border-radius: 8px;
  color: var(--navy);
  font-weight: 500;
}

/* Footer */
.site-footer {
  position: relative;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding-top: 4rem;
}

.footer__gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--sky), var(--teal));
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer__logo {
  display: block;
  max-height: 52px;
  width: auto;
  height: auto;
  max-width: 220px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 1rem;
}

.footer__tagline {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--sky);
  margin: 0 0 0.75rem;
}

.footer__oneliner {
  font-size: 0.9375rem;
  opacity: 0.8;
  margin: 0;
  max-width: 28ch;
}

.footer__heading {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 1rem;
}

.footer__links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__links a,
.footer__contact a {
  color: rgba(255, 255, 255, 0.8);
}

.footer__links a:hover,
.footer__contact a:hover {
  color: var(--sky);
}

.footer__address {
  font-size: 0.9375rem;
  opacity: 0.75;
}

.footer__bottom {
  display: flex;
  justify-content: center;
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.875rem;
  opacity: 0.7;
  text-align: center;
}

.footer__bottom p {
  margin: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .positioning__grid,
  .problem__grid,
  .about-story__grid,
  .contact-cards--centered {
    grid-template-columns: 1fr;
  }

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

  .hero__headline {
    top: 7%;
    left: 6%;
    width: 40%;
    max-width: 16em;
  }

  .product-cards {
    grid-template-columns: 1fr;
  }

  .workflow {
    flex-direction: column;
    align-items: stretch;
  }

  .workflow__connector {
    width: 2px;
    height: 24px;
    margin: 0 auto;
    flex: none;
  }

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

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--transition), opacity var(--transition), visibility var(--transition);
  }

  .nav__menu.is-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav__link--cta {
    margin-left: 0;
    text-align: center;
  }

  .value-row {
    grid-template-columns: 1fr;
  }

  .hero__headline {
    top: 8%;
    left: 7%;
    width: 55%;
    max-width: 14em;
  }

  .hero__inset {
    width: min(78%, 360px);
  }

  .hero__inset-text {
    font-size: 0.9375rem;
  }

  .hero--framed .hero__actions {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

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

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

  .cta-block--inline {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .hero__orb, .vision__bg { animation: none; }
}
