:root {
  --bg: #f5f0e8;
  --surface: #faf6ef;
  --surface-alt: #f0ebe2;
  --text: #18181b;
  --text-mid: #52525b;
  --text-dim: #a1a1aa;
  --text-faint: #d4d4d8;
  --accent: #18181b;
  --accent-soft: rgba(24, 24, 27, 0.06);
  --border: rgba(0, 0, 0, 0.06);
  --border-hover: rgba(0, 0, 0, 0.12);
  --radius: 14px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--text-faint) transparent;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

/* ══════════ HERO ══════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 2rem;
}

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,0,0,0.02) 0%, transparent 70%);
  filter: blur(60px);
  animation: glow-breathe 10s ease-in-out infinite;
  pointer-events: none;
}

@keyframes glow-breathe {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.15); opacity: 1; }
}

.hero-mark {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-logo-svg {
  width: clamp(220px, 40vw, 420px);
  height: auto;
  opacity: 0;
  animation: fade-up 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-meaning {
  font-style: italic;
  font-weight: 300;
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  color: var(--text-dim);
  margin-top: 0.75rem;
  letter-spacing: 0.12em;
  opacity: 0;
  animation: fade-up 1s cubic-bezier(0.16, 1, 0.3, 1) 0.65s forwards;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-mid);
  margin-top: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  opacity: 0;
  animation: fade-up 1s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

.hero-sub {
  font-size: clamp(0.88rem, 1.8vw, 1rem);
  color: var(--text-dim);
  margin-top: 1rem;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.01em;
  opacity: 0;
  animation: fade-up 1s cubic-bezier(0.16, 1, 0.3, 1) 1.15s forwards;
}

.hero-cta-group {
  margin-top: 2.5rem;
  display: flex;
  gap: 0.75rem;
  align-items: center;
  opacity: 0;
  animation: fade-up 1s cubic-bezier(0.16, 1, 0.3, 1) 1.45s forwards;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  background: var(--accent);
  color: var(--bg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.cta-secondary {
  padding: 0.8rem 1.5rem;
  color: var(--text-mid);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: all 0.3s;
  cursor: pointer;
  background: none;
  border: 1px solid var(--border);
  border-radius: 100px;
}

.cta-secondary:hover {
  color: var(--text);
  border-color: var(--border-hover);
  background: var(--accent-soft);
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fade-up 1s ease 2.2s forwards;
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--text-faint), transparent);
  animation: scroll-pulse 2.5s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.7; transform: scaleY(1.2); }
}

/* ══════════ SECTIONS (shared) ══════════ */
.section {
  padding: 7rem 2rem;
  max-width: 860px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.25;
  margin-bottom: 1.25rem;
  color: var(--text);
}

.section-title em {
  font-weight: 500;
  font-style: normal;
}

.section-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 560px;
}

/* ══════════ TRY IT ══════════ */
.try-section {
  padding: 7rem 2rem;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.try-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 2.5rem 2rem;
  max-width: 480px;
  margin: 2rem auto 0;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.try-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.try-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  position: relative;
}

.try-avatar-letter {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--bg);
}

.try-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0;
  animation: try-pulse-ring 3s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.try-pulse--delay { animation-delay: 1s; }

@keyframes try-pulse-ring {
  0% { width: 56px; height: 56px; opacity: 0.25; }
  100% { width: 100px; height: 100px; opacity: 0; }
}

.try-name {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.try-meaning {
  font-style: italic;
  font-weight: 300;
  font-size: 0.8rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.try-desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
  max-width: 360px;
  margin: 0 auto 1.75rem;
}

.try-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  background: var(--accent);
  color: var(--bg);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.88rem;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.try-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.try-cta svg {
  transition: transform 0.3s;
}

.try-cta:hover svg {
  transform: translateX(3px);
}

.try-after {
  text-align: center;
  margin-top: 1.75rem;
  font-size: 0.92rem;
  color: var(--text-dim);
  font-weight: 300;
}

.try-after em {
  color: var(--text);
  font-style: normal;
  font-weight: 500;
}

/* ══════════ POSSIBILITIES ══════════ */
.possibilities-section {
  text-align: center;
}

.possibilities-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  justify-content: center;
  margin-top: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.possibility {
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--surface);
  font-size: 0.86rem;
  color: var(--text-mid);
  font-style: italic;
  font-weight: 300;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(10px);
}

.possibility::before {
  content: '\201C';
  color: var(--text-dim);
  margin-right: 1px;
}

.possibility::after {
  content: '\201D';
  color: var(--text-dim);
  margin-left: 1px;
}

.possibility.visible {
  opacity: 1;
  transform: translateY(0);
}

.possibility:hover {
  border-color: var(--border-hover);
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* ══════════ HOW IT WORKS ══════════ */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}

.step {
  padding: 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  transition: all 0.35s ease;
}

.step:hover {
  border-color: var(--border-hover);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.step-num {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  font-weight: 500;
  margin-bottom: 1rem;
  font-variant-numeric: tabular-nums;
}

.step-title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.6rem;
  color: var(--text);
}

.step-desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

/* ══════════ JOURNEY ══════════ */
.journey-timeline {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.journey-step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  align-items: center;
  transition: all 0.35s ease;
}

.journey-step:hover {
  border-color: var(--border-hover);
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.journey-marker {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
}

.journey-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.journey-coda {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 1rem;
  color: var(--text);
  font-weight: 400;
  font-style: italic;
}

/* ══════════ BUSINESS CTA ══════════ */
.business-section {
  padding: 5rem 2rem 7rem;
  display: flex;
  justify-content: center;
  position: relative;
}

.business-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, transparent, var(--text-faint));
}

.business-inner {
  max-width: 600px;
  text-align: center;
}

.business-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-weight: 500;
}

.business-badge svg {
  color: var(--text-dim);
}

.business-title {
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.business-title em {
  font-weight: 500;
  font-style: normal;
}

.business-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.7;
}

.business-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  border: 1px solid var(--accent);
  border-radius: 100px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.business-cta svg {
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.business-cta:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.business-cta:hover svg {
  transform: translate(2px, -2px);
}

/* ══════════ NETWORK TEASE ══════════ */
.network-tease {
  text-align: center;
  padding: 7rem 2rem;
  position: relative;
}

.network-tease::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--text-faint));
}

.network-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  color: var(--text-dim);
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-weight: 500;
}

.network-badge .pulse {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text);
  animation: pulse 2.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(24,24,27,0.2); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px transparent; }
}

.network-title {
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  max-width: 500px;
  margin: 0 auto 1rem;
  line-height: 1.35;
}

.network-sub {
  font-size: 0.9rem;
  color: var(--text-mid);
  max-width: 460px;
  margin: 0 auto;
  line-height: 1.7;
}

.network-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1.75rem;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: gap 0.3s;
}

.network-link:hover { gap: 0.6rem; }

/* ══════════ FINAL CTA ══════════ */
.final-cta {
  text-align: center;
  padding-bottom: 6rem;
}

.final-cta .section-title--dim {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--text-dim);
  margin-bottom: 0.4rem;
}

.final-cta .section-title--strong {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 2.5rem;
}

/* ══════════ FOOTER ══════════ */
footer {
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
}

.footer-logo {
  margin-bottom: 0.75rem;
}

.footer-logo img {
  width: 64px;
  height: auto;
  opacity: 0.2;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 0.5rem;
}

.footer-links a {
  font-size: 0.7rem;
  color: var(--text-dim);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
  font-weight: 500;
}

.footer-links a:hover { color: var(--text); }

/* ══════════ ANIMATIONS ══════════ */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 700px) {
  .steps { grid-template-columns: 1fr; }
  .hero-cta-group { flex-direction: column; }
  .section { padding: 5rem 1.5rem; }
  .try-section { padding: 5rem 1.5rem; }
  .network-tease { padding: 5rem 1.5rem; }
  .journey-step { grid-template-columns: 80px 1fr; gap: 1rem; padding: 1.25rem; }
  .possibilities-grid { gap: 0.5rem; }
  .possibility { font-size: 0.8rem; padding: 0.6rem 1.1rem; }
}
