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

:root {
  --ocean: #0B4F6C;
  --ocean-deep: #062C3E;
  --sky: #3DA5D9;
  --sky-light: #E8F4FD;
  --coral: #F26430;
  --coral-soft: #FF8C61;
  --sand: #FAF0E6;
  --sand-dark: #E8DDD0;
  --forest: #2E8B57;
  --forest-light: #A8E6CF;
  --ink: #1A1A2E;
  --ink-soft: #4A4A5A;
  --white: #FFFFFF;
  --glass: rgba(255, 255, 255, 0.85);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans KR', sans-serif;
  color: var(--ink);
  background: var(--sand);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== LANDING NAV ===== */
.landing-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 24px;
  background: rgba(6,44,62,.6);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.landing-nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 52px;
}
.landing-nav .logo {
  font-size: 18px; font-weight: 800; color: #fff; text-decoration: none; letter-spacing: -.02em;
}
.landing-nav .nav-links { display: flex; align-items: center; gap: 20px; }
.landing-nav .nav-links a {
  font-size: 14px; color: rgba(255,255,255,.7); text-decoration: none; font-weight: 500;
  transition: color .2s;
}
.landing-nav .nav-links a:hover { color: #fff; }
.landing-nav .nav-btn-cta {
  background: var(--coral); color: #fff; padding: 7px 18px; border-radius: 980px;
  font-size: 13px; font-weight: 600; text-decoration: none; transition: all .3s;
}
.landing-nav .nav-btn-cta:hover { background: #e55a28; transform: scale(1.03); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: linear-gradient(165deg, var(--ocean-deep) 0%, var(--ocean) 35%, var(--sky) 100%);
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 20% 80%, rgba(242, 100, 48, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 800px 600px at 80% 20%, rgba(61, 165, 217, 0.2) 0%, transparent 70%),
    radial-gradient(ellipse 400px 400px at 60% 70%, rgba(46, 139, 87, 0.1) 0%, transparent 70%);
}

.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;
}

.hero-floating {
  position: absolute; border-radius: 50%; opacity: 0.08;
  background: white; animation: floatUp 20s infinite ease-in-out;
}
.hero-floating:nth-child(1) { width: 300px; height: 300px; top: 60%; left: -5%; animation-delay: 0s; }
.hero-floating:nth-child(2) { width: 200px; height: 200px; top: 10%; right: -3%; animation-delay: -7s; }
.hero-floating:nth-child(3) { width: 150px; height: 150px; top: 70%; right: 15%; animation-delay: -14s; }

@keyframes floatUp {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-40px) scale(1.05); }
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; padding: 2rem; max-width: 900px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px; padding: 8px 20px;
  font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  animation: fadeInDown 0.8s ease-out;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 900; color: white; line-height: 1.25;
  letter-spacing: -0.03em; margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease-out 0.15s both;
}

.hero h1 .accent {
  position: relative; display: inline-block; color: var(--coral-soft);
}

.hero h1 .accent::after {
  content: ''; position: absolute;
  bottom: 2px; left: 0; right: 0; height: 4px;
  background: var(--coral); border-radius: 2px;
  transform: scaleX(0); animation: expandLine 0.6s ease-out 1s forwards;
}

@keyframes expandLine { to { transform: scaleX(1); } }

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(255,255,255,0.75); font-weight: 300;
  line-height: 1.7; max-width: 600px; margin: 0 auto 2.5rem;
  animation: fadeInDown 0.8s ease-out 0.3s both;
}

.hero-cta-group {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  animation: fadeInDown 0.8s ease-out 0.45s both;
}

.btn-hero-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--coral); color: white; border: none;
  padding: 16px 36px; border-radius: 14px;
  font-size: 1.05rem; font-weight: 700; font-family: inherit;
  cursor: pointer; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none; box-shadow: 0 4px 20px rgba(242, 100, 48, 0.35);
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(242, 100, 48, 0.45);
  background: #e55a28;
}

.btn-hero-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  color: white; border: 1px solid rgba(255,255,255,0.25);
  padding: 16px 36px; border-radius: 14px;
  font-size: 1.05rem; font-weight: 500; font-family: inherit;
  cursor: pointer; transition: all 0.3s ease; text-decoration: none;
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,0.2); transform: translateY(-2px);
}

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.15em;
  animation: fadeInDown 0.8s ease-out 0.8s both;
}

.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== SECTIONS COMMON ===== */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--sky); margin-bottom: 1rem;
}
.section-label::before {
  content: ''; width: 24px; height: 2px; background: var(--sky); border-radius: 1px;
}

.section-header {
  text-align: center; max-width: 700px; margin: 0 auto 5rem;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; letter-spacing: -0.02em; line-height: 1.3;
  color: var(--ink); margin-bottom: 1rem;
}
.section-header p {
  font-size: 1.1rem; color: var(--ink-soft); font-weight: 300; line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */
.how-section {
  padding: 7rem 2rem; background: var(--sand); position: relative;
}
.how-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 120px;
  background: linear-gradient(to bottom, var(--ocean-deep), transparent); opacity: 0.03;
}

.steps-container {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  position: relative;
}
.steps-container::before {
  content: ''; position: absolute; top: 55px; left: 15%; right: 15%;
  height: 2px;
  background: linear-gradient(to right, var(--sky), var(--forest), var(--coral));
  opacity: 0.2; z-index: 0;
}

.step-card {
  position: relative; z-index: 1;
  background: var(--white); border-radius: 24px;
  padding: 2.5rem 2rem; text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 4px 30px rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
}

.step-number {
  width: 56px; height: 56px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 900; color: white;
  margin: 0 auto 1.5rem;
}
.step-card:nth-child(1) .step-number { background: linear-gradient(135deg, var(--sky), var(--ocean)); }
.step-card:nth-child(2) .step-number { background: linear-gradient(135deg, var(--forest), var(--forest-light)); }
.step-card:nth-child(3) .step-number { background: linear-gradient(135deg, var(--coral), var(--coral-soft)); }

.step-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.step-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.step-card p { font-size: 0.95rem; color: var(--ink-soft); line-height: 1.7; font-weight: 300; }

.step-tag {
  display: inline-block; margin-top: 1rem; padding: 4px 14px;
  border-radius: 100px; font-size: 0.75rem; font-weight: 600;
}
.step-card:nth-child(1) .step-tag { background: var(--sky-light); color: var(--ocean); }
.step-card:nth-child(2) .step-tag { background: #e8f5e9; color: var(--forest); }
.step-card:nth-child(3) .step-tag { background: #fff3e0; color: var(--coral); }

/* ===== PROMPT DEMO ===== */
.prompt-section {
  padding: 7rem 2rem; background: var(--ocean-deep);
  position: relative; overflow: hidden;
}
.prompt-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 500px 500px at 10% 50%, rgba(61,165,217,0.08), transparent),
    radial-gradient(ellipse 400px 400px at 90% 30%, rgba(242,100,48,0.06), transparent);
}
.prompt-section .section-header h2 { color: white; }
.prompt-section .section-header p { color: rgba(255,255,255,0.5); }
.prompt-section .section-label { color: var(--coral-soft); }
.prompt-section .section-label::before { background: var(--coral-soft); }

.prompt-demo-wrapper { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }

.landing-prompt-box {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; overflow: hidden;
}

.prompt-box-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.prompt-box-header .dots { display: flex; gap: 6px; }
.prompt-box-header .dots span { width: 10px; height: 10px; border-radius: 50%; }
.prompt-box-header .dots span:nth-child(1) { background: #FF5F57; }
.prompt-box-header .dots span:nth-child(2) { background: #FEBC2E; }
.prompt-box-header .dots span:nth-child(3) { background: #28C840; }

.prompt-box-header .tab {
  font-size: 0.8rem; color: rgba(255,255,255,0.4); font-weight: 500;
  display: flex; align-items: center; gap: 6px;
}
.prompt-box-header .tab .ai-icon {
  width: 18px; height: 18px;
  background: linear-gradient(135deg, var(--sky), var(--coral-soft));
  border-radius: 5px;
}

.copy-btn {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  padding: 6px 14px; border-radius: 8px;
  font-size: 0.8rem; font-family: inherit;
  cursor: pointer; transition: all 0.2s ease;
}
.copy-btn:hover { background: rgba(255,255,255,0.2); color: white; }
.copy-btn.copied {
  background: rgba(46, 139, 87, 0.3);
  border-color: var(--forest-light); color: var(--forest-light);
}

.prompt-box-body { padding: 2rem; }

.prompt-text {
  font-family: 'JetBrains Mono', 'Noto Sans KR', monospace;
  font-size: 0.9rem; line-height: 2;
  color: rgba(255,255,255,0.8);
  white-space: pre-wrap; word-break: keep-all;
}
.prompt-text .url { color: var(--sky); }
.prompt-text .cred { color: var(--coral-soft); }
.prompt-text .schedule { color: var(--forest-light); }
.prompt-text .label { color: rgba(255,255,255,0.35); }

.prompt-tip {
  display: flex; align-items: flex-start; gap: 12px;
  margin-top: 2rem; padding: 1.25rem;
  background: rgba(61, 165, 217, 0.08);
  border: 1px solid rgba(61, 165, 217, 0.15);
  border-radius: 14px;
}
.prompt-tip-icon {
  flex-shrink: 0; width: 32px; height: 32px;
  background: rgba(61, 165, 217, 0.15); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.prompt-tip p { font-size: 0.85rem; color: rgba(255,255,255,0.55); line-height: 1.6; }
.prompt-tip strong { color: rgba(255,255,255,0.8); }

/* ===== RESULT PREVIEW ===== */
.preview-section {
  padding: 7rem 2rem;
  background: linear-gradient(180deg, var(--sand) 0%, var(--white) 100%);
}

.preview-layout {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}

.preview-text h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900; line-height: 1.3; letter-spacing: -0.02em; margin-bottom: 1.5rem;
}
.preview-text h2 .highlight {
  background: linear-gradient(135deg, var(--coral), var(--coral-soft));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.preview-text p {
  font-size: 1.05rem; color: var(--ink-soft); line-height: 1.8; font-weight: 300; margin-bottom: 2rem;
}

.feature-pills { display: flex; flex-wrap: wrap; gap: 10px; }
.feature-pill {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 18px; background: var(--white);
  border: 1px solid rgba(0,0,0,0.06); border-radius: 100px;
  font-size: 0.88rem; font-weight: 500; color: var(--ink);
  box-shadow: 0 2px 8px rgba(0,0,0,0.03); transition: all 0.3s ease;
}
.feature-pill:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
.feature-pill .pill-icon { font-size: 1.1rem; }

/* Phone mockup */
.phone-frame {
  background: var(--white); border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12), 0 0 0 1px rgba(0,0,0,0.05);
  overflow: hidden; max-width: 380px; margin: 0 auto;
}
.phone-notch { height: 32px; background: var(--white); display: flex; align-items: center; justify-content: center; }
.phone-notch-inner { width: 100px; height: 5px; background: var(--sand-dark); border-radius: 10px; }

.mockup-header { padding: 1rem 1.5rem; background: linear-gradient(135deg, var(--ocean), var(--sky)); color: white; }
.mockup-header h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 4px; }
.mockup-header span { font-size: 0.8rem; opacity: 0.7; }

.mockup-places { padding: 1rem 1.5rem 1.5rem; }
.mockup-place {
  display: flex; gap: 14px; padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05); align-items: flex-start;
}
.mockup-place:last-child { border-bottom: none; }

.mockup-time { flex-shrink: 0; font-size: 0.8rem; font-weight: 700; color: var(--ocean); min-width: 44px; padding-top: 2px; }
.mockup-dot-line { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; padding-top: 4px; }
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.mockup-line { width: 2px; flex: 1; min-height: 30px; background: var(--sand-dark); margin-top: 4px; }

.mockup-place:nth-child(1) .mockup-dot { background: var(--sky); }
.mockup-place:nth-child(2) .mockup-dot { background: var(--forest); }
.mockup-place:nth-child(3) .mockup-dot { background: var(--coral); }
.mockup-place:nth-child(4) .mockup-dot { background: var(--ocean); }

.mockup-info h5 { font-size: 0.92rem; font-weight: 600; margin-bottom: 4px; }
.mockup-info p { font-size: 0.78rem; color: var(--ink-soft); line-height: 1.4; font-weight: 300; }

.mockup-navi-btns { display: flex; gap: 6px; margin-top: 8px; }
.navi-btn {
  padding: 4px 10px; border-radius: 6px; font-size: 0.65rem; font-weight: 600;
  border: none; cursor: pointer; transition: transform 0.2s;
}
.navi-btn:hover { transform: scale(1.05); }
.navi-btn.tmap { background: #E8F5E9; color: #2E7D32; }
.navi-btn.kakao { background: #FFF9C4; color: #F57F17; }
.navi-btn.naver { background: #E8F5E9; color: #1B5E20; }

.mockup-share-bar {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px; background: var(--sky-light);
  font-size: 0.82rem; font-weight: 600; color: var(--ocean);
  cursor: pointer; transition: background 0.2s;
}
.mockup-share-bar:hover { background: #d4ecf7; }

/* ===== FEATURES ===== */
.features-section { padding: 7rem 2rem; background: var(--white); }
.features-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}

.feature-card-landing {
  padding: 2.5rem 2rem; border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.05); background: var(--sand);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; overflow: hidden;
}
.feature-card-landing::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  border-radius: 4px 4px 0 0; opacity: 0; transition: opacity 0.3s;
}
.feature-card-landing:hover::before { opacity: 1; }
.feature-card-landing:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }

.feature-card-landing:nth-child(1)::before { background: linear-gradient(90deg, var(--sky), var(--ocean)); }
.feature-card-landing:nth-child(2)::before { background: linear-gradient(90deg, var(--coral), var(--coral-soft)); }
.feature-card-landing:nth-child(3)::before { background: linear-gradient(90deg, var(--forest), var(--forest-light)); }

.feature-card-landing .f-icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 1.5rem;
}
.feature-card-landing:nth-child(1) .f-icon { background: var(--sky-light); }
.feature-card-landing:nth-child(2) .f-icon { background: #fff3e0; }
.feature-card-landing:nth-child(3) .f-icon { background: #e8f5e9; }

.feature-card-landing h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.75rem; }
.feature-card-landing p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.7; font-weight: 300; }

/* ===== VISION ===== */
.vision-section {
  padding: 7rem 2rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--sand) 50%, var(--white) 100%);
  position: relative; overflow: hidden;
}
.vision-section::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(61,165,217,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.vision-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem;
}

.vision-card {
  position: relative; padding: 2.5rem 2rem; border-radius: 24px;
  background: var(--white); border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 4px 30px rgba(0,0,0,0.03);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); overflow: hidden;
}
.vision-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(0,0,0,0.07); }

.vision-card .v-badge {
  display: inline-block; padding: 4px 12px; border-radius: 100px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 1.25rem;
}
.vision-card:nth-child(1) .v-badge { background: #EDE7F6; color: #5E35B1; }
.vision-card:nth-child(2) .v-badge { background: #FFF3E0; color: #E65100; }
.vision-card:nth-child(3) .v-badge { background: #E8F5E9; color: #2E7D32; }
.vision-card:nth-child(4) .v-badge { background: #E3F2FD; color: #1565C0; }

.vision-card .v-icon { font-size: 2.2rem; margin-bottom: 1rem; display: block; }
.vision-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.vision-card p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.7; font-weight: 300; }

/* Mini components */
.mini-cal { margin-top: 1.25rem; display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; max-width: 240px; }
.mini-cal .cal-header { font-size: 0.6rem; font-weight: 600; color: var(--ink-soft); text-align: center; padding: 2px 0; }
.mini-cal .cal-day {
  aspect-ratio: 1; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem; font-weight: 500; color: var(--ink-soft); background: var(--sand);
}
.mini-cal .cal-day.has-trip {
  background: linear-gradient(135deg, var(--sky), var(--ocean)); color: white;
  font-weight: 700; box-shadow: 0 2px 8px rgba(11, 79, 108, 0.25);
}
.mini-cal .cal-day.empty { background: transparent; }

.mini-groups { margin-top: 1.25rem; display: flex; flex-direction: column; gap: 8px; }
.mini-group-row { display: flex; align-items: center; gap: 10px; padding: 8px 12px; border-radius: 12px; background: var(--sand); }
.mini-group-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.mini-group-row:nth-child(1) .mini-group-dot { background: var(--coral); }
.mini-group-row:nth-child(2) .mini-group-dot { background: var(--sky); }
.mini-group-row:nth-child(3) .mini-group-dot { background: var(--forest); }
.mini-group-info { flex: 1; }
.mini-group-info .name { font-size: 0.78rem; font-weight: 600; color: var(--ink); }
.mini-group-info .count { font-size: 0.65rem; color: var(--ink-soft); }
.mini-group-avatars { display: flex; }
.mini-group-avatars span {
  width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--white);
  margin-left: -6px; font-size: 0.55rem;
  display: flex; align-items: center; justify-content: center;
}
.mini-group-avatars span:first-child { margin-left: 0; }
.mini-group-row:nth-child(1) .mini-group-avatars span { background: #FFCDD2; }
.mini-group-row:nth-child(2) .mini-group-avatars span { background: #BBDEFB; }
.mini-group-row:nth-child(3) .mini-group-avatars span { background: #C8E6C9; }

.mini-timeline { margin-top: 1.25rem; display: flex; gap: 12px; overflow: hidden; }
.mini-tl-card { flex-shrink: 0; width: 110px; border-radius: 14px; overflow: hidden; background: var(--sand); box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
.mini-tl-img { height: 60px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.mini-tl-card:nth-child(1) .mini-tl-img { background: linear-gradient(135deg, #a8e6cf, #88d8b0); }
.mini-tl-card:nth-child(2) .mini-tl-img { background: linear-gradient(135deg, #ffd3b6, #ffaaa5); }
.mini-tl-card:nth-child(3) .mini-tl-img { background: linear-gradient(135deg, #a8d8ea, #88c8d8); }
.mini-tl-info { padding: 8px 10px; }
.mini-tl-info .tl-title { font-size: 0.72rem; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.mini-tl-info .tl-date { font-size: 0.6rem; color: var(--ink-soft); }

/* ===== CTA ===== */
.cta-section {
  padding: 7rem 2rem; text-align: center;
  background: linear-gradient(165deg, var(--ocean-deep), var(--ocean));
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 400px at 50% 100%, rgba(242,100,48,0.12), transparent);
}
.cta-content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.cta-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 900; color: white;
  line-height: 1.3; margin-bottom: 1rem; letter-spacing: -0.02em;
}
.cta-content p {
  font-size: 1.1rem; color: rgba(255,255,255,0.5); font-weight: 300;
  margin-bottom: 2.5rem; line-height: 1.7;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .steps-container { grid-template-columns: 1fr; max-width: 420px; gap: 1.5rem; }
  .steps-container::before { display: none; }
  .preview-layout { grid-template-columns: 1fr; gap: 3rem; }
  .preview-text { text-align: center; }
  .feature-pills { justify-content: center; }
  .features-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .vision-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 600px) {
  .hero-cta-group { flex-direction: column; align-items: center; }
  .btn-hero-primary, .btn-hero-secondary { width: 100%; max-width: 300px; justify-content: center; }
  .prompt-box-body { padding: 1.25rem; }
  .prompt-text { font-size: 0.8rem; }
  .phone-frame { max-width: 320px; }
  .landing-nav .nav-links { gap: 12px; }
  .landing-nav .nav-links a { font-size: 12px; }
}
