@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@500;600;700;800&family=Source+Sans+3:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --ink: #0E1117;
  --ink-soft: #1A2030;
  --cream: #F6F2EA;
  --coral: #FF5A3C;
  --coral-dark: #E04A2E;
  --coral-glow: rgba(255, 90, 60, 0.35);
  --teal: #1FA896;
  --teal-dark: #178A7A;
  --teal-glow: rgba(31, 168, 150, 0.3);
  --violet: #6C5CE7;
  --mist: #E8EEF2;
  --white: #ffffff;
  --text: #2A3142;
  --text-muted: #5C6478;
  --warning-bg: #FFF8E6;
  --warning-text: #7A5C00;
  --warning-border: #F0DCA0;
  --shadow: 0 4px 24px rgba(14, 17, 23, 0.08);
  --shadow-lg: 0 20px 60px rgba(14, 17, 23, 0.14);
  --shadow-glow: 0 0 60px var(--coral-glow);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-lg: 28px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 76px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--cream);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 5.5vw, 3.75rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); letter-spacing: -0.015em; }
h3 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

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

img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.25rem; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Gradient text utility */
.gradient-text {
  background: linear-gradient(135deg, var(--coral) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.4s; }

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

/* Notice bar */
.notice-bar {
  background: linear-gradient(90deg, #FFF8E6, #FFF3D6, #FFF8E6);
  background-size: 200% 100%;
  animation: shimmer 8s ease infinite;
  color: var(--warning-text);
  border-bottom: 1px solid var(--warning-border);
  padding: 10px 24px;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.5;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(246, 242, 234, 0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(20, 24, 32, 0.06);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.35rem;
  color: var(--text);
  text-decoration: none;
}

.logo:hover { color: var(--text); }

.logo-mark {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  filter: drop-shadow(0 4px 8px rgba(255, 90, 60, 0.25));
  transition: var(--transition);
}

.logo:hover .logo-mark { transform: rotate(-8deg) scale(1.05); }

.logo-text .strike { color: var(--coral); font-weight: 800; }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 6px;
  align-items: center;
}

.nav-menu a {
  display: block;
  padding: 9px 18px;
  border-radius: 999px;
  color: var(--text);
  font-weight: 500;
  font-size: 0.92rem;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(14, 17, 23, 0.2);
}

.mobile-menu-btn {
  display: none;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 10px;
  font-size: 1.25rem;
  cursor: pointer;
  color: var(--text);
  padding: 8px 12px;
  line-height: 1;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  background: linear-gradient(135deg, var(--coral) 0%, #FF7349 100%);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 24px var(--coral-glow);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.2) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}

.btn:hover::after { transform: translateX(100%); }

.btn:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px var(--coral-glow);
}

.btn-secondary {
  background: var(--ink);
  box-shadow: 0 8px 24px rgba(14, 17, 23, 0.25);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  box-shadow: 0 12px 32px var(--teal-glow);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  box-shadow: none;
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--coral);
  color: var(--white);
  background: rgba(255, 90, 60, 0.15);
  transform: translateY(-2px);
}

.btn-disabled,
.btn-disabled:hover {
  background: var(--mist);
  color: var(--text-muted);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-disabled::after { display: none; }

.btn-group { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.75rem; }

/* Marquee */
.marquee-band {
  background: var(--ink);
  color: var(--white);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-right: 20px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255,255,255,0.7);
}

.marquee-track span::after {
  content: '◆';
  color: var(--coral);
  font-size: 0.5rem;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Hero */
.hero {
  position: relative;
  padding: 72px 0 0;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(255, 90, 60, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(31, 168, 150, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 90% 70%, rgba(108, 92, 231, 0.1) 0%, transparent 50%),
    linear-gradient(160deg, #0E1117 0%, #1A2030 50%, #141820 100%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 20%, transparent 80%);
}

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

.hero-orb--1 {
  width: 400px; height: 400px;
  background: var(--coral);
  opacity: 0.12;
  top: -100px; right: -80px;
}

.hero-orb--2 {
  width: 300px; height: 300px;
  background: var(--teal);
  opacity: 0.1;
  bottom: 10%; left: -60px;
  animation-delay: -3s;
}

.hero-orb--3 {
  width: 200px; height: 200px;
  background: var(--violet);
  opacity: 0.08;
  top: 40%; right: 30%;
  animation-delay: -5s;
}

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

.hero .container { position: relative; z-index: 2; flex: 1; display: flex; align-items: center; }

.hero-content {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  width: 100%;
  padding: 40px 0 80px;
}

.hero-text { color: var(--white); }

.hero-text h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero-text h1 .highlight {
  display: block;
  background: linear-gradient(135deg, #FF8A65 0%, var(--coral) 40%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 500px;
  line-height: 1.7;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 10px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 var(--teal-glow); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px transparent; }
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 2rem;
}

.hero-stat {
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(12px);
}

.hero-stat strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--coral);
  line-height: 1;
  margin-bottom: 4px;
}

.hero-stat span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-visual { position: relative; }

.hero-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.08);
}

.hero-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, var(--coral), var(--teal), var(--violet));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 2;
  pointer-events: none;
}

.hero-frame img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float-card 4s ease-in-out infinite;
  z-index: 3;
}

.hero-float-card--1 { bottom: 24px; left: -24px; animation-delay: 0s; }
.hero-float-card--2 { top: 20px; right: -20px; animation-delay: -2s; }

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.float-icon.coral { background: rgba(255,90,60,0.12); }
.float-icon.teal { background: rgba(31,168,150,0.12); }

.float-text strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
}

.float-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Sections */
section { padding: 100px 0; position: relative; }

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

.section-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(255,90,60,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 90% 10%, rgba(31,168,150,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(255, 255, 255, 0.72); }

.section-header {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 56px;
}

.section-header p { color: var(--text-muted); font-size: 1.08rem; }
.section-dark .section-header p { color: rgba(255, 255, 255, 0.62); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--coral);
  margin-bottom: 0.85rem;
}

.section-label::before,
.section-label::after {
  content: '';
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--coral));
  border-radius: 2px;
}

.section-label::after {
  background: linear-gradient(90deg, var(--coral), transparent);
}

.section-dark .section-label { color: var(--teal); }
.section-dark .section-label::before { background: linear-gradient(90deg, transparent, var(--teal)); }
.section-dark .section-label::after { background: linear-gradient(90deg, var(--teal), transparent); }

/* Split / about */
.section-about { background: var(--cream); }

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

.split-visual {
  position: relative;
}

.split-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.split-visual-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--coral), var(--teal));
  border-radius: var(--radius);
  opacity: 0.15;
  z-index: -1;
}

.split-content .lead {
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 1rem;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.5rem;
}

.feature-pill {
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  box-shadow: var(--shadow);
}

/* Steps */
.steps-section { background: var(--white); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--coral), var(--teal), var(--violet));
  opacity: 0.3;
}

.step-card {
  text-align: center;
  padding: 0 24px;
  position: relative;
}

.step-number {
  width: 56px; height: 56px;
  margin: 0 auto 24px;
  background: var(--ink);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--white), 0 8px 24px rgba(14,17,23,0.15);
}

.step-card:nth-child(1) .step-number { background: linear-gradient(135deg, var(--coral), #FF7349); }
.step-card:nth-child(2) .step-number { background: linear-gradient(135deg, var(--teal-dark), var(--teal)); }
.step-card:nth-child(3) .step-number { background: linear-gradient(135deg, #5A4BD1, var(--violet)); }

.step-card h3 { margin-bottom: 0.75rem; }
.step-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Bento grid */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.bento-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--teal));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bento-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.bento-card:hover::before { opacity: 1; }

.bento-card:nth-child(1) { grid-column: span 7; }
.bento-card:nth-child(2) { grid-column: span 5; }
.bento-card:nth-child(3) { grid-column: span 4; }
.bento-card:nth-child(4) { grid-column: span 4; }
.bento-card:nth-child(5) { grid-column: span 4; }
.bento-card:nth-child(6) { grid-column: span 12; display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: center; }

.bento-card-num {
  position: absolute;
  top: 16px; right: 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,255,255,0.04);
  line-height: 1;
}

.bento-icon {
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255,90,60,0.2), rgba(255,90,60,0.05));
  border: 1px solid rgba(255,90,60,0.2);
  border-radius: 14px;
  margin-bottom: 18px;
  color: var(--coral);
}

.bento-icon.teal {
  background: linear-gradient(135deg, rgba(31,168,150,0.2), rgba(31,168,150,0.05));
  border-color: rgba(31,168,150,0.2);
  color: var(--teal);
}

.bento-card h3 { color: var(--white); margin-bottom: 0.5rem; }
.bento-card p { color: rgba(255,255,255,0.6); font-size: 0.95rem; margin-bottom: 0; }

/* Stats / benefits */
.stats-section {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
}

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

.stat-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(20,24,32,0.04);
  overflow: hidden;
  transition: var(--transition);
}

.stat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(255,90,60,0.04) 100%);
  pointer-events: none;
}

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

.stat-card:nth-child(2)::before { background: linear-gradient(135deg, transparent 60%, rgba(31,168,150,0.05) 100%); }
.stat-card:nth-child(3)::before { background: linear-gradient(135deg, transparent 60%, rgba(108,92,231,0.05) 100%); }

.stat-icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  background: linear-gradient(135deg, rgba(255,90,60,0.12), rgba(255,90,60,0.04));
}

.stat-card:nth-child(2) .stat-icon { background: linear-gradient(135deg, rgba(31,168,150,0.12), rgba(31,168,150,0.04)); }
.stat-card:nth-child(3) .stat-icon { background: linear-gradient(135deg, rgba(108,92,231,0.12), rgba(108,92,231,0.04)); }

.stat-card h3 { margin-bottom: 0.5rem; }
.stat-card p { color: var(--text-muted); font-size: 0.95rem; }

/* Tips cards */
.section-tips { background: var(--white); }

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

.tip-card {
  display: flex;
  gap: 16px;
  padding: 22px 24px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: var(--transition);
}

.tip-card:hover {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.tip-num {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--coral);
  opacity: 0.5;
  line-height: 1;
  flex-shrink: 0;
}

.tip-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.tips-visual {
  position: relative;
  margin-top: 48px;
}

.tips-visual img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}

/* Menu cards */
.section-menu { background: var(--cream); }

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

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--coral);
  transition: var(--transition);
  position: relative;
}

.menu-card:nth-child(2) { border-top-color: var(--teal); }
.menu-card:nth-child(3) { border-top-color: var(--violet); }
.menu-card:nth-child(4) { border-top-color: #FDCB6E; }
.menu-card:nth-child(5) { border-top-color: #74B9FF; }

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

.menu-time {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.menu-card h3 { font-size: 1rem; margin-bottom: 8px; }
.menu-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 12px; }

.menu-tag {
  display: inline-block;
  padding: 4px 10px;
  background: rgba(31,168,150,0.1);
  color: var(--teal-dark);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
}

/* CTA / Form section */
.form-section {
  position: relative;
  background: var(--ink);
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 50%, rgba(255,90,60,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 100% 50%, rgba(31,168,150,0.1) 0%, transparent 60%);
}

.form-section .section-header h2,
.form-section .section-header p { color: var(--white); }
.form-section .section-label { color: var(--coral); }

.form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.form-side h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.form-side p { color: rgba(255,255,255,0.65); margin-bottom: 1.5rem; }

.form-perks {
  list-style: none;
  padding: 0;
}

.form-perks li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: rgba(255,255,255,0.75);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.95rem;
}

.form-perks li::before {
  content: '✓';
  width: 24px; height: 24px;
  background: rgba(31,168,150,0.2);
  color: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.form-container {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 36px;
  backdrop-filter: blur(16px);
}

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: rgba(255,255,255,0.92);
  transition: var(--transition);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(31,168,150,0.15);
}

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

/* Disclaimer */
.disclaimer-section { padding: 60px 0 100px; background: var(--cream); }

.disclaimer-callout {
  background: linear-gradient(135deg, #FFF8E6, #FFF3D6);
  border: 1px solid var(--warning-border);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.disclaimer-callout::before {
  content: '⚠';
  position: absolute;
  top: -20px; right: 24px;
  font-size: 6rem;
  opacity: 0.06;
}

.disclaimer-callout h3 { color: var(--warning-text); text-align: center; margin-bottom: 12px; }
.disclaimer-callout p { color: var(--warning-text); text-align: center; line-height: 1.7; }
.disclaimer-callout .btn-wrap { text-align: center; margin-top: 24px; }
.disclaimer-callout .btn { background: var(--warning-text); box-shadow: none; }
.disclaimer-callout .btn:hover { background: var(--ink); }

/* Page hero (inner pages) */
.page-hero {
  padding: 80px 0 60px;
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(255,90,60,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(31,168,150,0.12) 0%, transparent 60%);
}

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

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero h1 .gradient-text {
  display: inline;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.1rem;
  max-width: 560px;
}

.page-content { padding: 70px 0 90px; }

.content-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(20, 24, 32, 0.04);
  transition: var(--transition);
}

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

.content-card h2 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--mist);
  display: flex;
  align-items: center;
  gap: 12px;
}

.content-card h2::before {
  content: '';
  width: 4px;
  height: 24px;
  background: linear-gradient(180deg, var(--coral), var(--teal));
  border-radius: 2px;
  flex-shrink: 0;
}

.content-card p, .content-card li { color: var(--text-muted); }
.content-card ul, .content-card ol { margin: 1rem 0; }
.content-card li { margin-bottom: 0.5rem; }

.content-meta {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-top: 40px;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: start;
}

.contact-info-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(20,24,32,0.04);
  position: relative;
  overflow: hidden;
}

.contact-info-block::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--teal));
}

.contact-info-block h3 {
  margin-bottom: 1.5rem;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--mist);
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(31,168,150,0.15), rgba(31,168,150,0.05));
  border-radius: 12px;
  font-size: 1.1rem;
}

.contact-detail p { margin: 0; color: var(--text-muted); }
.contact-detail strong { display: block; color: var(--text); margin-bottom: 2px; }

.contact-form-block {
  background: var(--ink);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.contact-form-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 100% 0%, rgba(255,90,60,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.contact-form-block h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
}

.contact-form-block .form-label { color: rgba(255,255,255,0.8); }
.contact-form-block .form-container {
  background: transparent;
  border: none;
  padding: 0;
  backdrop-filter: none;
  position: relative;
}

/* Light form context (fallback) */
.contact-info-block .form-label,
.page-content .form-label {
  color: var(--text);
}

.contact-info-block .form-input,
.contact-info-block .form-textarea {
  background: var(--cream);
  border-color: var(--mist);
}

/* Footer */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 70px 0 36px;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--teal), var(--violet), var(--coral));
  background-size: 200% 100%;
  animation: shimmer 6s ease infinite;
}

.footer-disclaimer {
  background: rgba(255, 248, 230, 0.06);
  border: 1px solid rgba(255, 248, 230, 0.12);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 52px;
}

.footer-disclaimer h4 {
  color: var(--coral);
  text-align: center;
  font-size: 1rem;
  margin-bottom: 14px;
}

.footer-disclaimer ul { list-style: none; padding: 0; font-size: 0.9rem; line-height: 1.75; }

.footer-disclaimer li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
}

.footer-disclaimer li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--coral);
}

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

.footer-brand .logo { color: var(--white); margin-bottom: 18px; }
.footer-brand .logo:hover { color: var(--white); }

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.footer-contact-item a { color: rgba(255, 255, 255, 0.72); }
.footer-contact-item a:hover { color: var(--coral); }

.footer-nav h3, .footer-legal h3 {
  color: var(--white);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.footer-nav a {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  padding: 5px 0;
  font-size: 0.95rem;
}

.footer-nav a:hover { color: var(--coral); padding-left: 4px; }

.footer-legal p {
  font-size: 0.875rem;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.52);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.42);
}

.footer-bottom p { margin-bottom: 6px; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in { animation: fadeInUp 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards; }

/* Responsive */
@media (max-width: 992px) {
  .hero-content, .split-section, .contact-grid, .form-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero { min-height: auto; }
  .hero-frame img { aspect-ratio: 16/10; }
  .hero-float-card--1 { left: 8px; bottom: 12px; }
  .hero-float-card--2 { right: 8px; top: 12px; }

  .steps-grid { grid-template-columns: 1fr; gap: 40px; }
  .steps-grid::before { display: none; }

  .bento-card:nth-child(n) { grid-column: span 12; }
  .bento-card:nth-child(6) { grid-template-columns: 1fr; }

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

  .stats-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: block; }

  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    padding: 24px;
    gap: 4px;
    transition: var(--transition);
    box-shadow: -8px 0 40px rgba(14, 17, 23, 0.2);
  }

  .nav-menu.active { right: 0; }
  .nav-menu a { padding: 14px 20px; border-radius: var(--radius-sm); }

  .menu-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; }

  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-contact-item { justify-content: center; }

  section { padding: 72px 0; }
}

@media (max-width: 576px) {
  .container { padding: 0 16px; }
  .btn-group { flex-direction: column; }
  .btn { width: 100%; }
  .content-card { padding: 24px 20px; }
  .form-container { padding: 24px 20px; }
  .hero-float-card { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}
