@import url('https://fonts.googleapis.com/css2?family=Syne:wght@500;600;700;800&family=Manrope:wght@300;400;500;600;700&family=Fira+Code:wght@300;400;500&display=swap');

:root {
  --bg-mint: #F0FDF9;
  --bg-lavender: #EEF2FF;
  --bg-violet: #F5F3FF;
  --card-bg: #FFFFFF;
  --graphite: #1A1A2E;
  --indigo: #6366F1;
  --indigo-deep: #4F46E5;
  --mint: #34D399;
  --coral: #FB7185;
  --lavender-border: #E0E7FF;
  --mint-pastel: #A7F3D0;
  --violet-pastel: #F3E8FF;
  --shadow-card: 0 8px 32px rgba(99, 102, 241, 0.08);
  --shadow-hover: 0 20px 60px rgba(99, 102, 241, 0.15);
  --shadow-strong: 0 24px 64px rgba(99, 102, 241, 0.18);
  --shadow-mega: 0 24px 64px rgba(99, 102, 241, 0.25);
}

strong, p {
  color: inherit;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: 'Manrope', sans-serif;
  color: var(--graphite);
  background: linear-gradient(135deg, var(--bg-mint) 0%, var(--bg-lavender) 50%, var(--bg-violet) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  color: var(--graphite);
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 700;
}

p {
  margin: 0;
  line-height: 1.7;
}

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

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(99, 102, 241, 0.05);
}

::-webkit-scrollbar-thumb {
  background: rgba(99, 102, 241, 0.4);
  border-radius: 24px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(99, 102, 241, 0.6);
}

.font-syne { font-family: 'Syne', sans-serif; }
.font-manrope { font-family: 'Manrope', sans-serif; }
.font-fira { font-family: 'Fira Code', monospace; }

.text-graphite { color: var(--graphite); }
.text-indigo { color: var(--indigo); }
.text-mint { color: var(--mint); }
.text-coral { color: var(--coral); }

.bg-soft-mesh {
  background: linear-gradient(135deg, #F0FDF9 0%, #EEF2FF 50%, #F5F3FF 100%);
}

.mesh-bg {
  position: relative;
  overflow: hidden;
}

.mesh-bg::before,
.mesh-bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}

.mesh-blob-1 {
  position: absolute;
  width: 700px;
  height: 700px;
  background: var(--indigo);
  opacity: 0.2;
  filter: blur(140px);
  border-radius: 50%;
  pointer-events: none;
  top: -100px;
  right: -100px;
  animation: mesh-drift-1 30s ease-in-out infinite;
}

.mesh-blob-2 {
  position: absolute;
  width: 450px;
  height: 450px;
  background: var(--mint);
  opacity: 0.18;
  filter: blur(100px);
  border-radius: 50%;
  pointer-events: none;
  bottom: -50px;
  left: 10%;
  animation: mesh-drift-2 35s ease-in-out infinite;
}

.mesh-blob-3 {
  position: absolute;
  width: 280px;
  height: 280px;
  background: var(--violet-pastel);
  opacity: 0.5;
  filter: blur(70px);
  border-radius: 50%;
  pointer-events: none;
  top: 40%;
  right: 30%;
  animation: mesh-drift-3 25s ease-in-out infinite;
}

.mesh-blob-4 {
  position: absolute;
  width: 350px;
  height: 350px;
  background: var(--mint-pastel);
  opacity: 0.35;
  filter: blur(80px);
  border-radius: 50%;
  pointer-events: none;
  bottom: 20%;
  left: 40%;
  animation: mesh-drift-4 28s ease-in-out infinite;
}

@keyframes mesh-drift-1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(60px, -40px); }
}

@keyframes mesh-drift-2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-50px, 40px); }
}

@keyframes mesh-drift-3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, 30px); }
}

@keyframes mesh-drift-4 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-45px, -35px); }
}

.mesh-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(99, 102, 241, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 1;
}

.floating-card {
  background: var(--card-bg);
  border: 1px solid var(--lavender-border);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  padding: 24px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.3s ease;
  position: relative;
  color: var(--graphite);
}

.floating-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border: 2px solid var(--indigo);
  z-index: 20;
}

.floating-card-static {
  background: var(--card-bg);
  border: 1px solid var(--lavender-border);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  padding: 24px;
  color: var(--graphite);
}

.floating-card-static:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border: 2px solid var(--indigo);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-deep) 100%);
  color: #FFFFFF;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  border-radius: 20px;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(99, 102, 241, 0.4);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
  white-space: nowrap;
  min-height: 52px;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(99, 102, 241, 0.5);
  color: #FFFFFF;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #FFFFFF;
  color: var(--indigo);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  border-radius: 20px;
  padding: 16px 32px;
  border: 2px solid var(--indigo);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              background 0.3s ease,
              color 0.3s ease;
  white-space: nowrap;
  min-height: 52px;
  font-size: 15px;
}

.btn-secondary:hover {
  background: var(--indigo);
  color: #FFFFFF;
  transform: translateY(-2px);
}

.btn-mint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--mint);
  color: var(--graphite);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  border-radius: 20px;
  padding: 14px 28px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(52, 211, 153, 0.3);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  white-space: nowrap;
  min-height: 48px;
  font-size: 14px;
}

.btn-mint:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(52, 211, 153, 0.45);
  color: var(--graphite);
}

.brand-shell {
  position: fixed;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--lavender-border);
  border-radius: 20px;
  box-shadow: 0 12px 48px rgba(99, 102, 241, 0.1);
  padding: 24px;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--lavender-border);
  background: linear-gradient(135deg, var(--indigo) 0%, var(--mint) 100%);
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 22px;
  margin-bottom: 12px;
}

.brand-domain {
  font-family: 'Fira Code', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--graphite);
  text-transform: lowercase;
  margin-bottom: 4px;
}

.brand-name {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--graphite);
  text-transform: uppercase;
  line-height: 1.3;
}

.brand-nav {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-nav a {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--graphite);
  padding: 10px 14px;
  border-radius: 0 12px 12px 0;
  transition: all 0.25s ease;
  border-left: 3px solid transparent;
}

.brand-nav a:hover {
  background: rgba(99, 102, 241, 0.12);
  color: var(--indigo);
  border-left: 3px solid var(--indigo);
}

.brand-nav a.active {
  background: rgba(99, 102, 241, 0.12);
  color: var(--indigo);
  border-left: 3px solid var(--indigo);
}

.brand-cta {
  margin-top: 24px;
  width: 100%;
  font-size: 13px;
  padding: 14px 20px;
}

.mobile-topbar {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--lavender-border);
  z-index: 90;
  padding: 0 20px;
  align-items: center;
  justify-content: space-between;
  backdrop-filter: blur(10px);
}

.mobile-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-brand .brand-mark {
  width: 36px;
  height: 36px;
  font-size: 16px;
  margin-bottom: 0;
}

.mobile-brand .brand-domain {
  font-size: 9px;
}

.mobile-brand .brand-name {
  font-size: 11px;
}

.burger-btn {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--lavender-border);
  background: rgba(255, 255, 255, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  color: var(--graphite);
}

.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--graphite);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 85%;
  max-width: 360px;
  background: linear-gradient(135deg, #F0FDF9 0%, #EEF2FF 100%);
  z-index: 110;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 24px;
  overflow-y: auto;
  box-shadow: 4px 0 32px rgba(0, 0, 0, 0.1);
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--lavender-border);
  background: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  font-size: 22px;
  color: var(--graphite);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 46, 0.4);
  z-index: 105;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.mobile-drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-drawer-nav {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-drawer-nav a {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--graphite);
  padding: 12px 16px;
  border-radius: 12px;
  transition: background 0.2s ease;
  opacity: 0;
  transform: translateX(20px);
  animation: drawer-item-in 0.4s ease-out forwards;
}

.mobile-drawer-nav a:nth-child(1) { animation-delay: 0.07s; }
.mobile-drawer-nav a:nth-child(2) { animation-delay: 0.14s; }
.mobile-drawer-nav a:nth-child(3) { animation-delay: 0.21s; }
.mobile-drawer-nav a:nth-child(4) { animation-delay: 0.28s; }
.mobile-drawer-nav a:nth-child(5) { animation-delay: 0.35s; }
.mobile-drawer-nav a:nth-child(6) { animation-delay: 0.42s; }
.mobile-drawer-nav a:nth-child(7) { animation-delay: 0.49s; }
.mobile-drawer-nav a:nth-child(8) { animation-delay: 0.56s; }
.mobile-drawer-nav a:nth-child(9) { animation-delay: 0.63s; }
.mobile-drawer-nav a:nth-child(10) { animation-delay: 0.70s; }

@keyframes drawer-item-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mobile-drawer-nav a:hover {
  background: rgba(99, 102, 241, 0.12);
}

.mobile-drawer-num {
  font-family: 'Fira Code', monospace;
  font-size: 12px;
  color: var(--coral);
  min-width: 28px;
}

.mobile-drawer-cta {
  margin-top: 32px;
  width: 100%;
}

.mobile-drawer-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.15;
}

.mobile-drawer-blob-1 {
  width: 280px;
  height: 280px;
  background: var(--indigo);
  top: 20%;
  right: -80px;
  animation: drift-slow 12s ease-in-out infinite;
}

.mobile-drawer-blob-2 {
  width: 200px;
  height: 200px;
  background: var(--mint);
  bottom: 20%;
  left: -60px;
  animation: drift-slow 14s ease-in-out infinite reverse;
}

@keyframes drift-slow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}

.main-canvas {
  margin-left: 304px;
  position: relative;
  z-index: 1;
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 32px);
  padding: 60px 80px 80px 80px;
  display: flex;
  align-items: center;
  z-index: 2;
}

.hero-eyebrow {
  font-family: 'Fira Code', monospace;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--indigo);
  text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-block;
  padding: 6px 14px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 100px;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 800;
  color: var(--graphite);
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0 0 24px 0;
}

.hero-title .accent-indigo { color: var(--indigo); }
.hero-title .accent-mint { color: var(--mint); }

.hero-subline {
  font-family: 'Fira Code', monospace;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: var(--indigo);
  text-transform: uppercase;
  margin-bottom: 32px;
  display: block;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--indigo);
  max-width: 480px;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-photo-frame {
  background: var(--card-bg);
  border: 1px solid var(--lavender-border);
  border-radius: 24px;
  padding: 8px;
  box-shadow: var(--shadow-strong);
  transform: rotate(-2deg);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-photo-frame:hover {
  transform: rotate(0) translateY(-6px);
}

.hero-photo-inner {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--violet-pastel) 0%, var(--mint-pastel) 100%);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section-shell {
  padding: 100px 80px;
  position: relative;
  z-index: 2;
}

.section-eyebrow {
  font-family: 'Fira Code', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--indigo);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  color: var(--graphite);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.05;
}

.section-lead {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--graphite);
  max-width: 720px;
  margin-bottom: 56px;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 20px;
}

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

.bento-medium {
  grid-column: span 1;
  grid-row: span 2;
}

.bento-small {
  grid-column: span 1;
  grid-row: span 1;
}

.bento-wide {
  grid-column: span 2;
  grid-row: span 1;
}

.bento-tall {
  grid-column: span 1;
  grid-row: span 2;
}

.bento-cell {
  background: var(--card-bg);
  border: 1px solid var(--lavender-border);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  color: var(--graphite);
}

.bento-cell:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--shadow-hover);
  border: 2px solid var(--indigo);
  z-index: 20;
}

.bento-cell.bg-indigo {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-deep) 100%);
  color: #FFFFFF;
  border-color: var(--indigo);
}

.bento-cell.bg-mint {
  background: linear-gradient(135deg, var(--mint) 0%, #10B981 100%);
  color: var(--graphite);
  border-color: var(--mint);
}

.bento-cell strong {
  color: inherit;
}

.bento-cell-image {
  flex-grow: 1;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--lavender-border) 0%, var(--mint-pastel) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento-cell-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bento-cell-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(99, 102, 241, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--indigo);
  font-size: 24px;
  margin-bottom: 16px;
}

.bento-cell.bg-indigo .bento-cell-icon {
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.bento-title {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: inherit;
}

.bento-meta {
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--indigo);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.bento-cell.bg-indigo .bento-meta {
  color: #C7D2FE;
}

.bento-text {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: var(--graphite);
  opacity: 0.85;
}

.bento-cell.bg-indigo .bento-text {
  color: #E0E7FF;
}

.bento-price {
  font-family: 'Fira Code', monospace;
  font-size: 14px;
  font-weight: 500;
  color: var(--indigo);
  margin-top: 8px;
}

.bento-cell.bg-indigo .bento-price {
  color: var(--mint);
}

.category-rail {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 32px 0 16px 0;
  scroll-snap-type: x mandatory;
  margin-top: 32px;
  border-top: 1px solid var(--lavender-border);
}

.category-rail-item {
  flex: 0 0 auto;
  padding: 14px 24px;
  background: var(--card-bg);
  border: 1px solid var(--lavender-border);
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--graphite);
  cursor: pointer;
  scroll-snap-align: start;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.category-rail-item:hover,
.category-rail-item.active {
  background: var(--indigo);
  color: #FFFFFF;
  border-color: var(--indigo);
  transform: translateY(-2px);
}

.timeline-shell {
  position: relative;
  padding-left: 80px;
}

.timeline-line {
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--indigo) 0%, var(--mint) 100%);
  border-radius: 3px;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 1.5s ease-out;
}

.timeline-line.drawn {
  transform: scaleY(1);
}

.timeline-node {
  position: relative;
  padding: 0 0 48px 60px;
  min-height: 160px;
}

.timeline-bullet {
  position: absolute;
  left: -64px;
  top: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 2px solid var(--indigo);
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fira Code', monospace;
  font-size: 16px;
  font-weight: 600;
  color: var(--indigo);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
  z-index: 5;
}

.timeline-bullet.final {
  background: var(--mint);
  border-color: var(--mint);
  color: var(--graphite);
}

.timeline-node:hover .timeline-bullet {
  transform: scale(1.2);
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.2);
}

.timeline-card {
  margin-left: -24px;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  z-index: 2;
}

.timeline-node:hover .timeline-card {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border: 2px solid var(--indigo);
  z-index: 15;
}

.masonry-shell {
  column-count: 3;
  column-gap: 24px;
}

.masonry-card {
  background: var(--card-bg);
  border: 1px solid var(--lavender-border);
  border-radius: 20px;
  padding: 8px;
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.1);
  margin-bottom: 24px;
  break-inside: avoid;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: block;
  color: var(--graphite);
}

.masonry-card:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: var(--shadow-strong);
  border: 2px solid var(--indigo);
  z-index: 20;
  position: relative;
}

.masonry-card-img {
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--lavender-border) 0%, var(--mint-pastel) 100%);
  display: block;
}

.masonry-card-img img {
  width: 100%;
  height: auto;
  display: block;
}

.masonry-card.tall .masonry-card-img { aspect-ratio: 3/4; }
.masonry-card.wide .masonry-card-img { aspect-ratio: 4/3; }
.masonry-card.square .masonry-card-img { aspect-ratio: 1/1; }

.masonry-card-body {
  padding: 16px 12px 12px 12px;
}

.masonry-card-type {
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  color: var(--indigo);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.masonry-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--graphite);
  line-height: 1.3;
}

.masonry-card-loc {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  color: var(--indigo);
  margin-top: 4px;
}

.split-sticky {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.split-sticky-left {
  position: sticky;
  top: 100px;
  background: var(--card-bg);
  border: 1px solid var(--lavender-border);
  border-radius: 24px 24px 24px 0;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4/5;
}

.split-sticky-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-sticky-right h3 {
  font-family: 'Syne', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--graphite);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  line-height: 1.05;
}

.fact-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.fact-card {
  background: var(--card-bg);
  border: 1px solid var(--lavender-border);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
  text-align: left;
  color: var(--graphite);
}

.fact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border: 2px solid var(--indigo);
  z-index: 10;
}

.fact-num {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--indigo);
  line-height: 1;
  margin-bottom: 6px;
}

.fact-label {
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--graphite);
  text-transform: uppercase;
}

.flexgrow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.flexgrow-card {
  background: var(--card-bg);
  border: 1px solid var(--lavender-border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--graphite);
}

.flexgrow-card:hover {
  transform: translateY(-4px) scale(1.04);
  border: 2px solid var(--indigo);
  box-shadow: var(--shadow-strong);
  z-index: 20;
}

.flexgrow-blob {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.12;
  pointer-events: none;
  right: -50px;
  bottom: -50px;
}

.flexgrow-blob.bg-1 { background: var(--indigo); }
.flexgrow-blob.bg-2 { background: var(--mint); }
.flexgrow-blob.bg-3 { background: var(--coral); }
.flexgrow-blob.bg-4 { background: var(--violet-pastel); }
.flexgrow-blob.bg-5 { background: var(--mint-pastel); }
.flexgrow-blob.bg-6 { background: var(--indigo); }

.flexgrow-num {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--indigo);
  line-height: 1;
}

.flexgrow-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--graphite);
  margin: 12px 0 8px 0;
  line-height: 1.3;
}

.flexgrow-text {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: var(--graphite);
  opacity: 0.8;
}

.hover-reveal-shell {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px;
  align-items: start;
  min-height: 480px;
}

.team-list {
  display: flex;
  flex-direction: column;
}

.team-list-row {
  padding: 20px 16px;
  border-bottom: 1px solid rgba(99, 102, 241, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  border-radius: 0 12px 12px 0;
}

.team-list-row:hover,
.team-list-row.active {
  background: rgba(99, 102, 241, 0.1);
  border-left: 4px solid var(--indigo);
}

.team-list-name {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--graphite);
  margin-bottom: 4px;
}

.team-list-role {
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--indigo);
  text-transform: uppercase;
}

.team-reveal {
  position: relative;
  min-height: 420px;
}

.team-card {
  position: absolute;
  inset: 0;
  background: var(--card-bg);
  border: 2px solid var(--lavender-border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 48px rgba(99, 102, 241, 0.12);
  display: flex;
  flex-direction: column;
  gap: 20px;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.team-card.visible {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  border: 2px solid var(--indigo);
}

.team-photo {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--lavender-border) 0%, var(--mint-pastel) 100%);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card-name {
  font-family: 'Syne', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--graphite);
}

.team-card-role {
  font-family: 'Fira Code', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--indigo);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.team-card-text {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: var(--graphite);
}

.coverflow-shell {
  position: relative;
  perspective: 1200px;
  padding: 40px 0;
}

.coverflow-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 40px 20px;
  scrollbar-width: thin;
}

.coverflow-card {
  flex: 0 0 380px;
  background: var(--card-bg);
  border: 1px solid var(--lavender-border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 12px 40px rgba(99, 102, 241, 0.1);
  scroll-snap-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: var(--graphite);
}

.coverflow-card:hover {
  border: 2px solid var(--indigo);
  box-shadow: var(--shadow-strong);
  transform: translateY(-4px);
  z-index: 20;
}

.coverflow-blob {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.1;
  top: -40px;
  right: -40px;
  pointer-events: none;
}

.coverflow-stars {
  color: var(--indigo);
  font-size: 18px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.coverflow-text {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--graphite);
  margin-bottom: 20px;
  min-height: 100px;
}

.coverflow-author {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--graphite);
}

.coverflow-meta {
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--indigo);
  text-transform: uppercase;
  margin-top: 4px;
}

.coverflow-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-deep) 100%);
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 30;
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.coverflow-arrow.prev { left: -12px; }
.coverflow-arrow.next { right: -12px; }

.accordion-shell {
  max-width: 880px;
  margin: 0 auto;
}

.accordion-panel {
  background: var(--card-bg);
  border: 1px solid var(--lavender-border);
  border-radius: 16px;
  margin-bottom: 12px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(99, 102, 241, 0.06);
  transition: all 0.3s ease;
  color: var(--graphite);
}

.accordion-panel:hover {
  box-shadow: 0 8px 24px rgba(99, 102, 241, 0.1);
  border-left: 3px solid var(--indigo);
}

.accordion-panel.open {
  border: 2px solid var(--indigo);
  box-shadow: var(--shadow-hover);
  z-index: 15;
  position: relative;
}

.accordion-trigger {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--graphite);
  text-align: left;
}

.accordion-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.12);
  color: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.accordion-panel.open .accordion-icon {
  transform: rotate(45deg);
  background: var(--mint);
  color: var(--graphite);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.accordion-content-inner {
  padding: 0 24px 24px 24px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: var(--indigo);
}

.contact-split {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: 0;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: var(--card-bg);
  margin-top: 40px;
  position: relative;
}

.contact-form-side {
  background: var(--card-bg);
  padding: 64px;
  border-radius: 0 0 0 32px;
  color: var(--graphite);
}

.contact-info-side {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-deep) 100%);
  color: #FFFFFF;
  padding: 64px;
  border-radius: 0 0 32px 0;
  position: relative;
  overflow: hidden;
}

.contact-info-side::before {
  content: '';
  position: absolute;
  width: 280px;
  height: 280px;
  background: var(--mint);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
  bottom: -100px;
  right: -100px;
}

.contact-info-side::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: var(--coral);
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.18;
  top: -60px;
  left: -60px;
}

.contact-info-side > * {
  position: relative;
  z-index: 1;
}

.form-field {
  margin-bottom: 28px;
  position: relative;
}

.form-label {
  display: block;
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--graphite);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--lavender-border);
  background: transparent;
  padding: 12px 0;
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  color: var(--graphite);
  outline: none;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-bottom-color: var(--indigo);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #94A3B8;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%236366F1' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  padding-right: 32px;
}

.form-submit {
  width: 100%;
  margin-top: 16px;
}

.contact-info-title {
  font-family: 'Syne', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  line-height: 1.05;
}

.contact-phone {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--mint);
  margin-bottom: 24px;
  display: block;
  letter-spacing: -0.01em;
}

.contact-email {
  font-family: 'Fira Code', monospace;
  font-size: 14px;
  color: var(--violet-pastel);
  margin-bottom: 32px;
  display: block;
}

.contact-address {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #E0E7FF;
  margin-bottom: 32px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.contact-address-pin {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--mint);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--graphite);
  font-size: 16px;
  flex-shrink: 0;
}

.site-footer {
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-deep) 100%);
  color: #FFFFFF;
  padding: 80px 80px 40px 80px;
  margin-left: 304px;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: var(--mint);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  top: -200px;
  right: -100px;
  animation: drift-slow 35s ease-in-out infinite;
}

.site-footer::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: var(--coral);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
  bottom: -150px;
  left: -100px;
  animation: drift-slow 40s ease-in-out infinite reverse;
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.footer-top-line {
  height: 4px;
  background: linear-gradient(90deg, var(--mint) 0%, var(--mint) 30%, #FFFFFF 30%, #FFFFFF 33%, var(--mint) 33%, var(--mint) 63%, #FFFFFF 63%, #FFFFFF 66%, var(--mint) 66%, var(--mint) 96%, #FFFFFF 96%, #FFFFFF 100%);
  border-radius: 24px;
  margin-bottom: 56px;
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-brand-block .brand-mark {
  margin-bottom: 16px;
}

.footer-brand-name {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.footer-brand-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 1.7;
  color: #C7D2FE;
  max-width: 320px;
}

.footer-col-title {
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--mint);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-list a {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: #C7D2FE;
  transition: color 0.2s ease;
}

.footer-nav-list a:hover {
  color: var(--mint);
}

.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: #C7D2FE;
  line-height: 1.5;
}

.footer-contact-icon {
  color: var(--mint);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-family: 'Fira Code', monospace;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #C7D2FE;
}

.footer-legal-list {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.footer-legal-list a {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: #C7D2FE;
  transition: color 0.2s ease;
}

.footer-legal-list a:hover {
  color: var(--mint);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  max-width: 380px;
  width: calc(100% - 40px);
  background: var(--card-bg);
  border: 1px solid var(--lavender-border);
  border-radius: 20px;
  box-shadow: var(--shadow-strong);
  padding: 24px;
  z-index: 200;
  color: var(--graphite);
  box-sizing: border-box;
}

.cookie-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--graphite);
  margin-bottom: 8px;
}

.cookie-text {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  line-height: 1.6;
  color: var(--graphite);
  margin-bottom: 16px;
}

.cookie-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-accept {
  background: var(--indigo);
  color: #FFFFFF;
  border: none;
  padding: 10px 18px;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.cookie-accept:hover {
  background: var(--indigo-deep);
}

.cookie-decline {
  background: transparent;
  color: var(--graphite);
  border: 1px solid var(--lavender-border);
  padding: 10px 18px;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cookie-decline:hover {
  border-color: var(--indigo);
  color: var(--indigo);
}

.cookie-more {
  background: transparent;
  color: var(--indigo);
  border: none;
  padding: 6px 0;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  cursor: pointer;
  text-decoration: underline;
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.thanks-shell {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px;
  text-align: center;
}

.thanks-card {
  background: var(--card-bg);
  border: 1px solid var(--lavender-border);
  border-radius: 24px;
  padding: 64px;
  box-shadow: var(--shadow-strong);
  max-width: 640px;
  color: var(--graphite);
}

.thanks-check {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint) 0%, #10B981 100%);
  color: #FFFFFF;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 12px 32px rgba(52, 211, 153, 0.3);
}

.thanks-title {
  font-family: 'Syne', sans-serif;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--graphite);
}

.thanks-text {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--graphite);
  margin-bottom: 32px;
}

.thanks-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.subpage-hero {
  padding: 80px 80px 60px 80px;
  position: relative;
  z-index: 2;
}

.subpage-eyebrow {
  font-family: 'Fira Code', monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--indigo);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
  padding: 6px 14px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 100px;
}

.subpage-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--graphite);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  line-height: 1.05;
}

.subpage-lead {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--graphite);
  max-width: 720px;
}

.legal-shell {
  padding: 60px 80px 100px 80px;
  position: relative;
  z-index: 2;
}

.legal-card {
  background: var(--card-bg);
  border: 1px solid var(--lavender-border);
  border-radius: 24px;
  padding: 56px 64px;
  box-shadow: var(--shadow-card);
  max-width: 960px;
  color: var(--graphite);
}

.legal-card h1 {
  font-family: 'Syne', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--graphite);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.legal-card h2 {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--graphite);
  margin: 32px 0 12px;
}

.legal-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--indigo);
  margin: 20px 0 8px;
}

.legal-card p {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: var(--graphite);
  margin-bottom: 14px;
}

.legal-card ul {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: var(--graphite);
  padding-left: 20px;
  margin-bottom: 14px;
}

.legal-updated {
  font-family: 'Fira Code', monospace;
  font-size: 12px;
  color: var(--indigo);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 24px;
  display: block;
}

.detail-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 60px 80px;
  position: relative;
  z-index: 2;
}

.detail-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.detail-gallery .img-tall {
  grid-row: span 2;
  aspect-ratio: 3/4;
}

.detail-gallery .img-short {
  aspect-ratio: 4/3;
}

.detail-img {
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--lavender-border) 0%, var(--mint-pastel) 100%);
}

.detail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-info h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--graphite);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.05;
}

.detail-info .subpage-eyebrow {
  margin-bottom: 16px;
}

.detail-price-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 24px 0;
  padding: 20px 24px;
  background: var(--card-bg);
  border: 1px solid var(--lavender-border);
  border-radius: 16px;
}

.detail-price {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--indigo);
}

.detail-price-note {
  font-family: 'Fira Code', monospace;
  font-size: 12px;
  color: var(--graphite);
  letter-spacing: 0.05em;
}

.detail-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.detail-spec {
  background: var(--card-bg);
  border: 1px solid var(--lavender-border);
  border-radius: 12px;
  padding: 16px;
  color: var(--graphite);
}

.detail-spec-label {
  font-family: 'Fira Code', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--indigo);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.detail-spec-value {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--graphite);
}

.detail-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--lavender-border);
  border-radius: 20px;
  padding: 8px;
  box-shadow: var(--shadow-card);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: var(--graphite);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  border: 2px solid var(--indigo);
  box-shadow: var(--shadow-hover);
  z-index: 20;
}

.blog-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-img {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--lavender-border) 0%, var(--mint-pastel) 100%);
  margin-bottom: 16px;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-body {
  padding: 8px 12px 16px 12px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-tag {
  font-family: 'Fira Code', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--indigo);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.blog-card-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--graphite);
  margin-bottom: 8px;
  line-height: 1.3;
}

.blog-card-excerpt {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: var(--graphite);
  opacity: 0.85;
  margin-bottom: 16px;
  flex-grow: 1;
}

.blog-card-meta {
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  color: var(--indigo);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-detail .subpage-hero {
  margin-bottom: 100px;
}

.article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Fira Code', monospace;
  font-size: 12px;
  color: var(--indigo);
  margin-bottom: 20px;
}

.article-breadcrumb a {
  color: var(--indigo);
  transition: color 0.2s ease;
}

.article-breadcrumb a:hover {
  color: var(--mint);
}

.breadcrumb-sep {
  color: var(--lavender-border);
}

.article-tag {
  display: inline-block;
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--indigo);
  text-transform: uppercase;
  background: rgba(99, 102, 241, 0.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.article-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: var(--graphite);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Fira Code', monospace;
  font-size: 12px;
  color: var(--indigo);
}

.article-sep {
  color: var(--lavender-border);
}

.article-cover-img {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 48px auto;
  padding: 0 80px;
}

.article-cover-img img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-strong);
}

.article-content-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 80px 80px 80px;
}

.article-lead {
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: var(--graphite);
  border-left: 4px solid var(--indigo);
  padding-left: 24px;
  margin-bottom: 40px;
}

.article-body {
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--graphite);
}

.article-body h2 {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--graphite);
  margin: 48px 0 20px 0;
  letter-spacing: -0.01em;
}

.article-body h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--graphite);
  margin: 32px 0 16px 0;
}

.article-body p {
  margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
  margin: 0 0 20px 0;
  padding-left: 24px;
}

.article-body li {
  margin-bottom: 10px;
  line-height: 1.7;
}

.article-body strong {
  color: var(--graphite);
  font-weight: 600;
}

.article-quote {
  background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(52, 211, 153, 0.08) 100%);
  border-left: 4px solid var(--mint);
  border-radius: 0 16px 16px 0;
  padding: 24px 28px;
  margin: 40px 0;
}

.article-quote p {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  color: var(--graphite);
  line-height: 1.6;
  margin-bottom: 12px;
}

.article-quote cite {
  font-family: 'Fira Code', monospace;
  font-size: 12px;
  color: var(--indigo);
  font-style: normal;
}

.article-footer {
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--lavender-border);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.article-author-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(99, 102, 241, 0.05);
  border-radius: 16px;
  padding: 20px;
}

.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--mint) 100%);
  color: #FFFFFF;
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1.3;
  flex-shrink: 0;
}

.author-info {
  flex: 1;
}

.author-name {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--graphite);
  margin-bottom: 4px;
}

.author-bio {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: var(--graphite);
  opacity: 0.8;
  line-height: 1.6;
}

.article-share {
  display: flex;
  align-items: center;
  gap: 16px;
}

.share-label {
  font-family: 'Fira Code', monospace;
  font-size: 12px;
  color: var(--indigo);
  letter-spacing: 0.05em;
}

.share-buttons {
  display: flex;
  gap: 8px;
}

.share-btn {
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid var(--lavender-border);
  background: var(--card-bg);
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--graphite);
  cursor: pointer;
  transition: all 0.2s ease;
}

.share-btn:hover {
  background: var(--indigo);
  color: #FFFFFF;
  border-color: var(--indigo);
}

.comparison-table {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--lavender-border);
  margin: 32px 0;
}

.comparison-header {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-deep) 100%);
  color: #FFFFFF;
}

.comparison-th {
  padding: 16px 20px;
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.comparison-th:first-child {
  text-align: left;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  border-bottom: 1px solid var(--lavender-border);
  background: var(--card-bg);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-row:nth-child(even) {
  background: rgba(99, 102, 241, 0.03);
}

.comparison-td {
  padding: 14px 20px;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--graphite);
  text-align: center;
}

.comparison-td:first-child {
  text-align: left;
  font-weight: 600;
}

.season-guide {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 32px 0;
}

.season-item {
  background: var(--card-bg);
  border: 1px solid var(--lavender-border);
  border-radius: 16px;
  padding: 20px;
  transition: all 0.3s ease;
}

.season-item:hover {
  border-color: var(--indigo);
  box-shadow: var(--shadow-card);
}

.season-label {
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  color: var(--indigo);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.season-value {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--graphite);
  margin-bottom: 4px;
}

.season-reason {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  color: var(--graphite);
  opacity: 0.7;
}

.review-detailed {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.review-detailed-card {
  background: var(--card-bg);
  border: 1px solid var(--lavender-border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
  color: var(--graphite);
}

.review-detailed-card:hover {
  transform: translateY(-4px);
  border: 2px solid var(--indigo);
  box-shadow: var(--shadow-hover);
  z-index: 20;
}

.review-photo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--lavender-border) 0%, var(--mint-pastel) 100%);
}

.review-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-detailed-stars {
  color: var(--indigo);
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.review-detailed-text {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--graphite);
  margin-bottom: 16px;
}

.review-detailed-author {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--graphite);
}

.review-detailed-meta {
  font-family: 'Fira Code', monospace;
  font-size: 11px;
  color: var(--indigo);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

@media (max-width: 1100px) {
  .brand-shell { display: none; }
  .mobile-topbar { display: flex; }
  .main-canvas { margin-left: 0; padding-top: 64px; }
  .site-footer { margin-left: 0; padding: 60px 24px 32px 24px; }
  .hero-section { padding: 40px 24px; min-height: auto; }
  .section-shell { padding: 64px 24px; }
  .subpage-hero { padding: 40px 24px 32px 24px; }
  .legal-shell { padding: 32px 16px 64px 16px; }
  .detail-hero { padding: 32px 24px; grid-template-columns: 1fr; }
  .legal-card { padding: 32px 24px; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .bento-large, .bento-wide { grid-column: span 2; }
  .bento-medium, .bento-small, .bento-tall { grid-column: span 1; grid-row: span 1; }
  .masonry-shell { column-count: 2; }
  .flexgrow-grid { grid-template-columns: repeat(2, 1fr); }
  .hover-reveal-shell { grid-template-columns: 1fr; }
  .team-reveal { min-height: 380px; }
  .team-card { position: relative; inset: auto; opacity: 1; transform: none; pointer-events: auto; margin-bottom: 24px; display: none; }
  .team-card.visible { display: flex; }
  .split-sticky { grid-template-columns: 1fr; }
  .split-sticky-left { position: relative; top: auto; aspect-ratio: 4/3; }
  .contact-split { grid-template-columns: 1fr; }
  .contact-form-side, .contact-info-side { padding: 40px 24px; border-radius: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .blog-grid { grid-template-columns: 1fr; }
  .review-detailed { grid-template-columns: 1fr; }
  .coverflow-card { flex-basis: 320px; }
  .fact-strip { grid-template-columns: 1fr; }
  .detail-specs { grid-template-columns: 1fr; }
  .detail-gallery { grid-template-columns: 1fr; }
  .detail-gallery .img-tall { grid-row: span 1; aspect-ratio: 4/3; }
  .hero-title { font-size: 40px; }
}

@media (max-width: 640px) {
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 140px; }
  .bento-large, .bento-medium, .bento-wide, .bento-small, .bento-tall { grid-column: span 1; grid-row: span 1; }
  .masonry-shell { column-count: 1; }
  .flexgrow-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-cta-row .btn-primary,
  .hero-cta-row .btn-secondary { width: 100%; }
  .hero-cta-row { flex-direction: column; }
  .contact-phone { font-size: 28px; }
  .contact-info-title { font-size: 32px; }
  .legal-card h1 { font-size: 32px; }
  .thanks-card { padding: 32px 24px; }
  .thanks-title { font-size: 28px; }
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; max-width: none; }
}

@media (min-width: 1101px) {
  .main-canvas, .site-footer { margin-left: 304px; }
}