@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@500;600;700&family=Albert+Sans:wght@400;500;600&display=swap');

:root {
  --color-deep: #161933;
  --color-ink: #232744;
  --color-surface: #fbfaf7;
  --color-surface-alt: #f1eee6;
  --color-aurora-teal: #3ec9a7;
  --color-aurora-violet: #8a6fe8;
  --color-aurora-rose: #f2a6c7;
  --color-aurora-gold: #f0c96b;
  --color-text-body: #3a3d54;
  --color-text-muted: #6a6d85;
  --color-border: #e4e1d6;

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 999px;

  --shadow-soft: 0 2px 8px rgba(22, 25, 51, 0.06), 0 1px 2px rgba(22,25,51,0.04);
  --shadow-mid: 0 12px 32px rgba(22, 25, 51, 0.10), 0 4px 12px rgba(22,25,51,0.06);
  --shadow-deep: 0 24px 60px rgba(22, 25, 51, 0.16), 0 8px 24px rgba(22,25,51,0.08);

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5.5rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Albert Sans', sans-serif;
  color: var(--color-text-body);
  background: var(--color-surface);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Crimson Pro', serif;
  color: var(--color-deep);
  line-height: 1.2;
  font-weight: 600;
}

a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

.eyebrow-tag {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-aurora-violet);
  margin-bottom: var(--space-sm);
}

.highlight-text {
  background: linear-gradient(120deg, var(--color-aurora-teal), var(--color-aurora-violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}


.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(251, 250, 247, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.site-nav.nav-hidden { transform: translateY(-100%); }

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Crimson Pro', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-deep);
}

.nav-links {
  display: none;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--color-text-body);
  position: relative;
  padding: 0.4rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--color-aurora-teal);
  transition: width 0.3s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--color-aurora-violet); }

.nav-toggle {
  width: 44px; height: 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--radius-sm);
  transition: background 0.3s ease;
}
.nav-toggle:hover { background: var(--color-surface-alt); }
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--color-deep);
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-toggle { display: none; }
}


.mobile-sheet-overlay {
  position: fixed; inset: 0;
  background: rgba(22, 25, 51, 0.5);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-sheet-overlay.active { opacity: 1; pointer-events: auto; }

.mobile-sheet {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--color-surface);
  border-radius: 28px 28px 0 0;
  box-shadow: var(--shadow-deep);
  z-index: 201;
  padding: 1rem 1.5rem 2.5rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.32, 0.72, 0, 1);
}
.mobile-sheet.active { transform: translateY(0); }

.sheet-handle {
  width: 44px; height: 5px;
  background: var(--color-border);
  border-radius: var(--radius-pill);
  margin: 0.5rem auto 1.5rem;
}

.sheet-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.sheet-links a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 1.02rem;
  min-height: 44px;
  transition: background 0.25s ease;
}
.sheet-links a i {
  width: 22px;
  color: var(--color-aurora-violet);
}
.sheet-links a:hover, .sheet-links a:active { background: var(--color-surface-alt); }


.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 4rem;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f5ef, var(--color-surface));
}

.aurora-layer {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.aurora-one {
  width: 60vw; height: 60vw;
  background: radial-gradient(circle, var(--color-aurora-teal), transparent 70%);
  top: -20%; left: -15%;
  animation: auroraFloatOne 22s ease-in-out infinite alternate;
}
.aurora-two {
  width: 55vw; height: 55vw;
  background: radial-gradient(circle, var(--color-aurora-violet), transparent 70%);
  top: 10%; right: -20%;
  animation: auroraFloatTwo 26s ease-in-out infinite alternate;
}
.aurora-three {
  width: 40vw; height: 40vw;
  background: radial-gradient(circle, var(--color-aurora-rose), transparent 70%);
  bottom: -15%; left: 25%;
  animation: auroraFloatThree 30s ease-in-out infinite alternate;
}

@keyframes auroraFloatOne {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(8%, 12%) scale(1.15); }
}
@keyframes auroraFloatTwo {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(-10%, 8%) scale(1.1); }
}
@keyframes auroraFloatThree {
  0% { transform: translate(0,0) scale(1); }
  100% { transform: translate(6%, -10%) scale(1.2); }
}

.hero-blob {
  position: absolute;
  width: 420px; height: 420px;
  top: 50%; left: 50%;
  background: linear-gradient(135deg, rgba(62,201,167,0.18), rgba(138,111,232,0.18));
  border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%;
  filter: blur(6px);
  z-index: 0;
  animation: blobMorph 18s ease-in-out infinite;
}
@keyframes blobMorph {
  0%, 100% { border-radius: 42% 58% 65% 35% / 45% 40% 60% 55%; transform: translate(-50%,-50%) rotate(0deg); }
  33% { border-radius: 58% 42% 35% 65% / 55% 60% 40% 45%; transform: translate(-52%,-48%) rotate(8deg); }
  66% { border-radius: 35% 65% 58% 42% / 40% 55% 45% 60%; transform: translate(-48%,-52%) rotate(-6deg); }
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
  text-align: center;
}

.hero-heading {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-md);
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--color-text-muted);
  max-width: 620px;
  margin: 0 auto var(--space-lg);
}

.primary-action {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(120deg, var(--color-aurora-violet), var(--color-aurora-teal));
  color: #fff;
  padding: 1rem 2rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  box-shadow: var(--shadow-mid);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  min-height: 44px;
}
.primary-action:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-deep);
}
.primary-action.full-width { width: 100%; justify-content: center; }


.page-hero {
  position: relative;
  padding: 10rem 1.5rem 5rem;
  overflow: hidden;
  background: linear-gradient(180deg, #f7f5ef, var(--color-surface));
  text-align: center;
}
.page-hero.small-hero { padding: 9rem 1.5rem 4rem; }
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.page-hero-content h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: var(--space-md);
}
.page-hero-content p {
  color: var(--color-text-muted);
  font-size: 1.08rem;
}

.thanks-hero { text-align: center; }
.thanks-icon {
  font-size: 3.2rem;
  color: var(--color-aurora-teal);
  margin-bottom: var(--space-md);
}
.countdown-text {
  margin: var(--space-md) 0;
  font-weight: 600;
  color: var(--color-aurora-violet);
}


.content-block {
  padding: var(--space-xl) 1.5rem;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.narrow-col {
  max-width: 760px;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-lg);
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.visual-break {
  height: 1px;
  max-width: 1200px;
  margin: 0 auto;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.strip-decorative {
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--color-aurora-teal) 0 24px, var(--color-aurora-violet) 24px 48px);
  opacity: 0.7;
}
.strip-decorative.alt-strip {
  background: repeating-linear-gradient(90deg, var(--color-aurora-rose) 0 24px, var(--color-aurora-gold) 24px 48px);
}


.info-grid {
  display: grid;
  gap: var(--space-md);
}
.info-grid.three-col { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.info-grid.two-col { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.info-grid.four-col { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }

.info-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.info-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-mid);
}
.info-card i {
  font-size: 1.6rem;
  color: var(--color-aurora-violet);
  margin-bottom: var(--space-sm);
  display: inline-block;
}
.info-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}
.info-card p { color: var(--color-text-muted); font-size: 0.96rem; }

.large-card { padding: var(--space-lg); }
.compact-card { padding: var(--space-md) var(--space-sm); position: relative; }
.step-number {
  display: block;
  font-family: 'Crimson Pro', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-aurora-teal);
  margin-bottom: 0.5rem;
}


.tab-system { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-mid); overflow: hidden; border: 1px solid var(--color-border); }
.tab-buttons {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface-alt);
}
.tab-trigger {
  flex: 1;
  min-width: 140px;
  padding: 1.1rem 1rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  position: relative;
  transition: color 0.3s ease, background 0.3s ease;
  min-height: 44px;
}
.tab-trigger:hover { color: var(--color-deep); background: rgba(255,255,255,0.5); }
.tab-trigger.active { color: var(--color-aurora-violet); background: #fff; }
.tab-trigger.active::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-aurora-teal), var(--color-aurora-violet));
}
.tab-panels { padding: var(--space-lg); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: panelFade 0.5s ease; }
@keyframes panelFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.tab-panel-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.tab-panel-grid img { border-radius: var(--radius-md); box-shadow: var(--shadow-mid); }
.tab-panel h3 { font-size: 1.5rem; margin-bottom: var(--space-sm); }
.tab-panel p { color: var(--color-text-muted); margin-bottom: 0.8rem; }

@media (max-width: 760px) {
  .tab-panel-grid { grid-template-columns: 1fr; }
  .tab-panels { padding: var(--space-md); }
}


.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-md);
}
.comparison-card {
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-mid);
}
.comparison-negative { background: #fff; border: 1px solid var(--color-border); }
.comparison-positive {
  background: linear-gradient(160deg, rgba(62,201,167,0.08), rgba(138,111,232,0.08));
  border: 1px solid rgba(138,111,232,0.25);
}
.comparison-label {
  font-weight: 700;
  font-family: 'Crimson Pro', serif;
  font-size: 1.2rem;
  margin-bottom: var(--space-md);
  color: var(--color-deep);
}
.comparison-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.comparison-card li { display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.98rem; }
.comparison-negative li i { color: #c96a6a; margin-top: 0.2rem; }
.comparison-positive li i { color: var(--color-aurora-teal); margin-top: 0.2rem; }


.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  align-items: center;
}
@media (max-width: 860px) {
  .two-col-layout { grid-template-columns: 1fr; }
  .two-col-layout.reverse-mobile { display: flex; flex-direction: column-reverse; }
}
.two-col-layout h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: var(--space-sm); }
.two-col-layout p { margin-bottom: 0.9rem; color: var(--color-text-body); }

.image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-deep);
}
.image-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.image-frame:hover img { transform: scale(1.04); }


.checklist { display: flex; flex-direction: column; gap: var(--space-sm); margin-top: var(--space-md); }
.checklist-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.checklist-item:hover { box-shadow: var(--shadow-mid); transform: translateX(4px); }
.checklist-item i { color: var(--color-aurora-teal); font-size: 1.1rem; margin-top: 0.15rem; }


.process-timeline { display: flex; flex-direction: column; gap: var(--space-md); }
.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--space-md);
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.process-step:hover { box-shadow: var(--shadow-mid); transform: translateY(-3px); }
.process-marker {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-aurora-teal), var(--color-aurora-violet));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Crimson Pro', serif;
  font-weight: 700;
  font-size: 1.3rem;
  box-shadow: var(--shadow-soft);
}
.process-body h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.process-body p { color: var(--color-text-muted); }

@media (max-width: 600px) {
  .process-step { grid-template-columns: 1fr; padding: var(--space-md); }
  .process-marker { margin-bottom: 0.5rem; }
}


.quote-block {
  border-left: 4px solid var(--color-aurora-violet);
  padding: var(--space-md) var(--space-lg);
  background: var(--color-surface-alt);
  border-radius: var(--radius-md);
  font-family: 'Crimson Pro', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--color-deep);
}


.cta-section { display: flex; justify-content: center; }
.cta-panel {
  max-width: 780px;
  text-align: center;
  background: linear-gradient(160deg, rgba(62,201,167,0.12), rgba(138,111,232,0.14));
  border: 1px solid rgba(138,111,232,0.2);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-mid);
}
.cta-panel h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); margin-bottom: var(--space-sm); }
.cta-panel p { color: var(--color-text-muted); margin-bottom: var(--space-md); }


.contact-layout { grid-template-columns: 1fr 1.3fr; align-items: start; }
.contact-info-panel h2, .contact-form-panel h2 { margin-bottom: var(--space-md); font-size: 1.6rem; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: var(--space-md);
}
.contact-info-item i { font-size: 1.2rem; color: var(--color-aurora-violet); margin-top: 0.2rem; width: 24px; }
.contact-info-label { font-weight: 600; color: var(--color-deep); font-size: 0.9rem; margin-bottom: 0.1rem; }
.map-frame { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-mid); margin-top: var(--space-md); }

.contact-form-panel {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-mid);
  border: 1px solid var(--color-border);
}
.form-note { color: var(--color-text-muted); font-size: 0.9rem; margin-bottom: var(--space-md); }
.form-field { margin-bottom: var(--space-md); }
.form-field label { display: block; font-weight: 600; margin-bottom: 0.4rem; font-size: 0.92rem; color: var(--color-deep); }
.form-field input, .form-field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.98rem;
  background: var(--color-surface);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  min-height: 44px;
}
.form-field textarea { min-height: 120px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--color-aurora-violet);
  box-shadow: 0 0 0 3px rgba(138,111,232,0.15);
}
.form-checkbox-field {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: var(--space-md);
  font-size: 0.88rem;
  color: var(--color-text-muted);
}
.form-checkbox-field input { width: 20px; height: 20px; margin-top: 0.1rem; flex-shrink: 0; }
.form-checkbox-field a { color: var(--color-aurora-violet); text-decoration: underline; }


.mini-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-md);
}
.mini-gallery a {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: block;
  aspect-ratio: 4/3;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
}
.mini-gallery a:hover { box-shadow: var(--shadow-mid); transform: translateY(-4px); }
.mini-gallery img { width: 100%; height: 100%; object-fit: cover; }


.legal-page { padding-top: 2rem; }
.legal-stack { display: flex; flex-direction: column; gap: var(--space-md); }
.legal-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--color-border);
  transition: box-shadow 0.35s ease;
}
.legal-card:hover { box-shadow: var(--shadow-mid); }
.legal-card h2 { font-size: 1.3rem; margin-bottom: 0.7rem; }
.legal-card p { color: var(--color-text-body); font-size: 0.98rem; }


.site-footer {
  background: var(--color-deep);
  color: #d8d6e8;
  margin-top: auto;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-xl) 1.5rem var(--space-lg);
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--space-lg);
}
.footer-brand { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-brand img { filter: brightness(0) invert(1); }
.footer-brand p { font-family: 'Crimson Pro', serif; font-weight: 700; font-size: 1.15rem; color: #fff; }
.footer-tag { font-family: 'Albert Sans', sans-serif !important; font-weight: 400 !important; font-size: 0.9rem !important; color: #a8a6c0 !important; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: var(--space-sm); font-family: 'Crimson Pro', serif; }
.footer-col a, .footer-col p {
  display: block;
  color: #b0aecb;
  font-size: 0.92rem;
  margin-bottom: 0.6rem;
  transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--color-aurora-teal); }
.footer-col p i { width: 18px; color: var(--color-aurora-teal); margin-right: 0.4rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  padding: var(--space-md) 1.5rem;
  font-size: 0.85rem;
  color: #8a88a8;
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: 1fr; }
}

html, body { min-height: 100%; }
body { display: flex; flex-direction: column; min-height: 100vh; }
main { flex: 1; }


.cookie-modal-wrap {
  position: fixed; inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.cookie-modal-wrap.visible { display: flex; }
.cookie-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(22, 25, 51, 0.6);
  backdrop-filter: blur(4px);
}
.cookie-modal {
  position: relative;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-deep);
  animation: cookiePop 0.4s ease;
}
@keyframes cookiePop {
  from { opacity: 0; transform: scale(0.94) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h3 { font-size: 1.4rem; margin-bottom: var(--space-sm); }
.cookie-modal p { color: var(--color-text-muted); font-size: 0.92rem; margin-bottom: var(--space-md); }
.cookie-modal p a { color: var(--color-aurora-violet); text-decoration: underline; }
.cookie-categories { display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: var(--space-md); }
.cookie-category {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
}
.cookie-category-head { display: flex; justify-content: space-between; align-items: center; font-weight: 600; margin-bottom: 0.3rem; }
.cookie-category-head input { width: 20px; height: 20px; }
.cookie-category p { font-size: 0.84rem; margin: 0; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }
.cookie-btn-ghost, .cookie-btn-outline, .cookie-btn-solid {
  flex: 1;
  min-width: 120px;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.88rem;
  min-height: 44px;
  transition: all 0.3s ease;
}
.cookie-btn-ghost { background: transparent; color: var(--color-text-muted); }
.cookie-btn-ghost:hover { background: var(--color-surface-alt); }
.cookie-btn-outline { background: transparent; border: 1px solid var(--color-aurora-violet); color: var(--color-aurora-violet); }
.cookie-btn-outline:hover { background: rgba(138,111,232,0.08); }
.cookie-btn-solid { background: linear-gradient(120deg, var(--color-aurora-violet), var(--color-aurora-teal)); color: #fff; }
.cookie-btn-solid:hover { transform: translateY(-2px); box-shadow: var(--shadow-mid); }


.scroll-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.scroll-reveal.revealed { opacity: 1; transform: translateY(0); }