:root {
  --background: oklch(1 0 0);
  --surface: oklch(0.98 0.006 60);
  --ink: oklch(0.15 0 0);
  --foreground: oklch(0.15 0 0);
  --card: oklch(1 0 0);
  --primary: oklch(0.62 0.23 25);
  --primary-foreground: oklch(1 0 0);
  --accent: oklch(0.72 0.19 45);
  --muted-foreground: oklch(0.45 0.01 60);
  --border: oklch(0.92 0.005 60);
  --gradient-brand: linear-gradient(120deg, oklch(0.62 0.23 25), oklch(0.72 0.19 45));
  --shadow-elegant: 0 30px 80px -30px color-mix(in oklab, oklch(0.62 0.23 25) 35%, transparent);
  --shadow-soft: 0 20px 50px -25px oklch(0 0 0 / 0.15);
  --radius: 24px;
  --container: min(1280px, calc(100vw - 3rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans), ui-sans-serif, system-ui, sans-serif;
}

body.lock-scroll {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display), ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.02em;
}

p {
  margin: 0;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  background: color-mix(in oklab, white 80%, transparent);
  backdrop-filter: blur(20px);
}

.header-row,
.header-actions,
.button-row,
.metrics-row {
  display: flex;
  align-items: center;
}

.header-row {
  min-height: 4.5rem;
  justify-content: space-between;
  gap: 1rem;
}

.brand-mark img,
.footer-logo {
  height: 2.25rem;
  width: auto;
}

.desktop-nav {
  display: flex;
  gap: 2rem;
}

.desktop-nav a {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  font-weight: 500;
}

.desktop-nav a:hover,
.text-link:hover,
.site-footer a:hover {
  color: var(--foreground);
}

.header-actions {
  gap: 0.9rem;
}

.locale-pill {
  color: var(--muted-foreground);
  font-size: 0.75rem;
  font-weight: 500;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  min-height: 3rem;
  padding: 0 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

.button-small {
  min-height: 2.25rem;
  gap: 0.375rem;
  padding: 0 1rem;
  font-size: 0.875rem;
}

.button-small .icon-sm {
  width: 0.875rem;
  height: 0.875rem;
}

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

.button-ink {
  background: var(--ink);
  color: white;
}

.button-glass {
  border-color: color-mix(in oklab, white 30%, transparent);
  background: color-mix(in oklab, white 10%, transparent);
  color: white;
  backdrop-filter: blur(12px);
}

.button-glass:hover,
.button-outline-light:hover {
  background: color-mix(in oklab, white 16%, transparent);
}

.button-outline-light {
  width: 100%;
  border-color: color-mix(in oklab, white 20%, transparent);
  background: color-mix(in oklab, white 5%, transparent);
  color: white;
}

.hero-band,
.cta-band {
  position: relative;
  overflow: hidden;
  background: var(--gradient-brand);
  color: white;
}

.hero-grid,
.split-grid,
.cta-grid {
  display: grid;
  gap: 3rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  align-items: center;
  gap: 3rem;
  padding: 7rem 0 6rem;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-badge,
.feature-icon,
.bullet-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-badge {
  margin-bottom: 1.5rem;
  gap: 0.5rem;
  border-radius: 999px;
  background: color-mix(in oklab, white 15%, transparent);
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

.hero-copy h1 {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 0.95;
}

.hero-copy p,
.section-copy,
.footer-copy {
  line-height: 1.7;
}

.hero-copy p {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1.125rem;
  line-height: 1.625;
  color: color-mix(in oklab, white 90%, transparent);
}

.button-row {
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2rem;
}

.metrics-row {
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.25rem;
}

.metric strong,
.cta-stat,
.price-line strong,
.steps-list span {
  display: block;
  font-family: var(--font-display), ui-sans-serif, system-ui, sans-serif;
}

.metric strong {
  font-size: 1.5rem;
  font-weight: 700;
}

.metric span {
  font-size: 0.75rem;
  color: color-mix(in oklab, white 84%, transparent);
}

.hero-card {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  background: color-mix(in oklab, white 10%, transparent);
  padding: 0.6rem;
  box-shadow: 0 40px 100px -20px rgb(0 0 0 / 0.5);
  backdrop-filter: blur(20px);
}

.hero-card img,
.image-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: calc(var(--radius) - 6px);
}

.gallery-item img {
  border-radius: calc(var(--radius) - 6px);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.95);
  color: var(--primary);
  padding: 1.15rem;
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 50px rgb(0 0 0 / 0.3);
}

.hero-orb,
.cta-orb,
.image-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
}

.hero-orb-left {
  top: 2rem;
  left: -12rem;
  width: 38rem;
  height: 38rem;
  background: rgb(255 255 255 / 0.2);
}

.hero-orb-right {
  right: -10rem;
  bottom: -2rem;
  width: 30rem;
  height: 30rem;
  background: rgb(0 0 0 / 0.2);
}

.section {
  padding: 6rem 0;
}

.section-surface {
  background: var(--surface);
}

.section-ink,
.site-footer {
  background: var(--ink);
  color: white;
}

.section-head {
  margin-bottom: 3.25rem;
}

.section-head.narrow {
  max-width: 42rem;
}

.section-head.center {
  text-align: center;
}

.section-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.section-head-row h2 {
  max-width: 36rem;
  font-size: 3rem;
  line-height: 1;
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow-accent {
  color: var(--accent);
}

.section h2,
.cta-grid h2 {
  font-size: clamp(2.3rem, 4vw, 3.8rem);
  line-height: 1.06;
}

.section-copy {
  margin-top: 1.25rem;
  max-width: 38rem;
  color: var(--muted-foreground);
  font-size: 1rem;
}

.section-copy-on-dark {
  color: rgb(255 255 255 / 0.72);
}

.quartet-grid,
.pricing-grid,
.testimonial-grid,
.footer-grid {
  display: grid;
  gap: 1.5rem;
}

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

.feature-card,
.feature-panel,
.quote-card,
.price-card {
  border-radius: var(--radius);
}

.feature-card {
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.8rem;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background: color-mix(in oklab, var(--primary) 10%, white);
  color: var(--primary);
}

.feature-card h3,
.feature-panel h3,
.steps-list h3,
.tour-row h3,
.price-card h3,
.site-footer h3 {
  font-size: 1.15rem;
}

.feature-card h3,
.feature-panel h3 {
  margin-top: 1.15rem;
}

.feature-card p,
.feature-panel p,
.steps-list p,
.price-line span,
.quote-card footer,
.site-footer,
.site-footer li {
  color: var(--muted-foreground);
}

.split-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  align-items: start;
}

.steps-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  padding: 2rem 0;
}

.steps-list li + li {
  border-top: 1px solid var(--border);
}

.steps-list span {
  color: var(--primary);
  font-size: 2.6rem;
}

.stack-xl {
  display: grid;
  gap: 6rem;
}

.tour-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: center;
}

.tour-row-reverse > :first-child {
  order: 2;
}

.bullet-list,
.price-features,
.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bullet-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.bullet-list li,
.price-features li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.bullet-icon {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: color-mix(in oklab, var(--primary) 10%, white);
  color: var(--primary);
}

.image-frame {
  position: relative;
}

.image-glow {
  inset: -1rem;
  background: var(--gradient-brand);
  opacity: 0.38;
}

.image-frame img {
  position: relative;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--border);
}

.feature-panel {
  background: var(--background);
  border-radius: 0;
  padding: 2rem;
  transition: background-color 180ms ease;
}

.feature-panel:hover {
  background: var(--card);
}

.icon-primary {
  color: var(--primary);
}

.icon-accent {
  color: var(--accent);
}

.text-link {
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
}

.feature-grid {
  border-radius: 1rem;
}

.feature-panel h3 {
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 600;
}

.feature-panel p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
}

.feature-panel .icon-md {
  width: 1.5rem;
  height: 1.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  background: var(--card);
  padding: 0;
  cursor: pointer;
  aspect-ratio: 16 / 10;
}

.gallery-item-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.gallery-item:hover img {
  transform: scale(1.04);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(0 0 0 / 0.4), transparent 60%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(0 0 0 / 0.85);
  padding: 1.5rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-width: min(90vw, 1200px);
  max-height: 85vh;
  border-radius: 1rem;
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  border: 0;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.12);
  color: white;
  padding: 0.7rem;
}

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

.price-card {
  position: relative;
  border: 1px solid rgb(255 255 255 / 0.15);
  background: rgb(255 255 255 / 0.05);
  padding: 2rem;
}

.price-card-highlight {
  background: white;
  color: var(--ink);
  box-shadow: var(--shadow-elegant);
}

.price-card-highlight .price-line span,
.price-card-highlight .price-features li {
  color: var(--muted-foreground);
}

.price-tag {
  position: absolute;
  top: -0.75rem;
  left: 2rem;
  border-radius: 999px;
  background: var(--gradient-brand);
  color: white;
  padding: 0.35rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 800;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 1rem;
}

.price-line strong {
  font-size: 2.7rem;
}

.price-features {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
  margin-bottom: 4rem;
}

.logo-row img {
  height: 3rem;
  width: auto;
  object-fit: contain;
  opacity: 0.6;
  filter: grayscale(100%);
}

.logo-row img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

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

.quote-card {
  border: 1px solid var(--border);
  background: var(--background);
  padding: 2rem;
}

.quote-card p {
  font-family: var(--font-display), ui-sans-serif, system-ui, sans-serif;
  font-size: 1.35rem;
  line-height: 1.45;
}

.quote-card footer {
  margin-top: 1rem;
}

.cta-band {
  padding: 6rem 0;
}

.cta-orb {
  top: 0;
  left: -6rem;
  width: 24rem;
  height: 24rem;
  background: rgb(255 255 255 / 0.25);
}

.cta-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 1fr);
  align-items: center;
}

.cta-stat-wrap {
  display: flex;
  justify-content: end;
}

.cta-stat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 12rem;
  height: 12rem;
  border-radius: 999px;
  background: white;
  color: var(--primary);
  box-shadow: 0 20px 50px rgb(0 0 0 / 0.25);
  font-size: 2.6rem;
}

.site-footer {
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  margin-bottom: 3rem;
}

.footer-copy {
  max-width: 18rem;
  margin-top: 1rem;
  color: rgb(255 255 255 / 0.72);
}

.site-footer h3 {
  margin-bottom: 0.9rem;
  color: white;
}

.site-footer ul {
  display: grid;
  gap: 0.7rem;
}

.site-footer li,
.site-footer a {
  color: rgb(255 255 255 / 0.72);
}

.footer-bottom {
  border-top: 1px solid rgb(255 255 255 / 0.1);
  padding-top: 1.5rem;
  color: rgb(255 255 255 / 0.6);
  font-size: 0.85rem;
}

.legal-page {
  background:
    radial-gradient(circle at 12% 12%, color-mix(in oklab, var(--primary) 11%, transparent), transparent 28rem),
    linear-gradient(180deg, var(--surface), var(--background) 32rem);
}

.legal-hero {
  padding: 7rem 0 4rem;
}

.legal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(18rem, 0.7fr);
  gap: 3rem;
  align-items: end;
}

.legal-hero h1 {
  max-width: 52rem;
  margin-top: 1rem;
  color: var(--ink);
  font-size: clamp(3rem, 8vw, 5.75rem);
  line-height: 0.95;
}

.legal-hero p {
  max-width: 48rem;
  margin-top: 1.5rem;
  color: var(--muted-foreground);
  font-size: 1.1rem;
  line-height: 1.8;
}

.legal-meta-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: color-mix(in oklab, white 88%, transparent);
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}

.legal-meta-card span,
.legal-toc strong {
  color: var(--muted-foreground);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-meta-card strong {
  display: block;
  margin-top: 0.45rem;
  color: var(--ink);
  font-size: 1.35rem;
}

.legal-meta-card p {
  margin-top: 1rem;
  color: var(--muted-foreground);
  font-size: 0.95rem;
  line-height: 1.65;
}

.legal-content-section {
  padding: 0 0 6rem;
}

.legal-content-grid {
  display: grid;
  grid-template-columns: 18rem minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 6rem;
  display: grid;
  gap: 0.8rem;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 6px);
  background: var(--background);
  padding: 1.25rem;
}

.legal-toc a {
  color: var(--muted-foreground);
  font-size: 0.92rem;
  line-height: 1.35;
}

.legal-toc a:hover {
  color: var(--primary);
}

.legal-document {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  padding: clamp(1.5rem, 5vw, 3rem);
  box-shadow: var(--shadow-soft);
}

.legal-document section + section {
  margin-top: 3rem;
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}

.legal-document h2 {
  color: var(--ink);
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.15;
}

.legal-document p,
.legal-document li {
  color: color-mix(in oklab, var(--foreground) 78%, white);
  font-size: 1rem;
  line-height: 1.8;
}

.legal-document p {
  margin-top: 1rem;
}

.legal-document ul {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding-left: 1.25rem;
}

.icon-xs,
.icon-sm,
.icon-md,
.icon-lg {
  flex: 0 0 auto;
}

.icon-xs { width: 0.85rem; height: 0.85rem; }
.icon-sm { width: 1rem; height: 1rem; }
.icon-md { width: 1.35rem; height: 1.35rem; }
.icon-lg { width: 1.9rem; height: 1.9rem; }
.icon-fill { fill: currentColor; }

@media (max-width: 960px) {
  .desktop-nav,
  .locale-pill,
  .cta-stat-wrap {
    display: none;
  }

  .hero-grid,
  .split-grid,
  .tour-row,
  .pricing-grid,
  .testimonial-grid,
  .footer-grid,
  .cta-grid,
  .legal-hero-grid,
  .legal-content-grid {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

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

  .section-head-row {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(1280px, calc(100vw - 1.5rem));
  }

  .section,
  .cta-band {
    padding: 4.5rem 0;
  }

  .header-row {
    min-height: 4rem;
  }

  .hero-grid {
    padding: 4rem 0 4.5rem;
  }

  .quartet-grid,
  .feature-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item-large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .metrics-row {
    gap: 1rem;
  }

  .steps-list li {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
}



