/* ===================================================================
   CREUGO — design tokens
   Subject: trust-bridge for India's informal daily-wage economy.
   Palette: warm "verified ledger / registration document" feel.
   =================================================================== */

:root {
  --ink: #14241c;
  --ink-soft: #2a3a30;
  --paper: #faf7f0;
  --paper-dim: #f1ecdf;
  --saffron: #e08a2c;
  --saffron-deep: #c8721c;
  --banyan: #2f6b4f;
  --banyan-deep: #1f4d38;
  --banyan-bright: #4a9b76;
  --terracotta: #b6532c;
  --line: #d9d2c2;
  --line-dark: rgba(250, 247, 240, 0.16);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "Space Mono", "SF Mono", monospace;

  --container: 1180px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 26px;

  --shadow-card: 0 1px 2px rgba(20, 36, 28, 0.04), 0 12px 28px -12px rgba(20, 36, 28, 0.16);
  --shadow-card-lg: 0 4px 8px rgba(20, 36, 28, 0.05), 0 30px 60px -20px rgba(20, 36, 28, 0.22);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ===================================================================
   RESET / BASE
   =================================================================== */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p { margin: 0; }
ul, dl { margin: 0; padding: 0; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }

:focus-visible {
  outline: 2.5px solid var(--saffron);
  outline-offset: 3px;
  border-radius: 4px;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.4;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.page-shell { position: relative; z-index: 2; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--banyan-deep);
  margin: 0 0 14px;
}

.section-heading.light .eyebrow { color: var(--saffron); }

.seal-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--banyan);
  display: inline-block;
}

.section-sub {
  font-size: 17px;
  color: var(--ink-soft);
  max-width: 46ch;
  margin-top: 10px;
}

/* ===================================================================
   REVEAL ANIMATION
   =================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
[data-reveal-group] [data-reveal] { transition-delay: calc(var(--stagger, 0) * 70ms); }

/* ===================================================================
   HEADER
   =================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 56px);
  background: rgba(250, 247, 240, 0.86);
  backdrop-filter: blur(10px) saturate(1.1);
  border-bottom: 1px solid var(--line);
}

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 38px; height: 38px; color: var(--banyan-deep); flex-shrink: 0; }
.brand-mark svg { width: 100%; height: 100%; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong { font-family: var(--font-display); font-size: 19px; }
.brand-text small { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.05em; color: var(--ink-soft); text-transform: uppercase; }

.desktop-nav { display: flex; gap: 28px; font-size: 14.5px; font-weight: 600; }
.desktop-nav a { position: relative; padding: 4px 0; }
.desktop-nav a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--saffron);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}
.desktop-nav a:hover::after { transform: scaleX(1); }

.header-action {
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  white-space: nowrap;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.header-action:hover { background: var(--banyan-deep); transform: translateY(-1px); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
}
.nav-toggle span { height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.25s var(--ease), opacity 0.25s var(--ease); }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px clamp(20px, 5vw, 56px) 18px;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 70px;
  z-index: 39;
}
.mobile-nav a { padding: 12px 4px; font-weight: 600; border-bottom: 1px solid var(--line); }
.mobile-nav[hidden] { display: none; }

@media (max-width: 880px) {
  .desktop-nav, .header-action { display: none; }
  .nav-toggle { display: flex; }
}

/* ===================================================================
   HERO
   =================================================================== */

.hero {
  position: relative;
  padding: clamp(28px, 5vw, 48px) clamp(20px, 5vw, 56px) clamp(40px, 6vw, 72px);
  max-width: var(--container);
  margin: 0 auto;
}

/* --- image slot ---
   Drop a real photo at assets/hero.jpg. Until then, a soft placeholder
   shows so the layout still reads as intentional rather than broken. */
.hero-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/7;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: clamp(28px, 5vw, 44px);
  background: linear-gradient(135deg, var(--paper-dim), #e7dfc9);
}

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

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20,36,28,0) 40%, rgba(20,36,28,0.55) 100%);
  pointer-events: none;
}

.media-placeholder {
  position: absolute;
  inset: 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--ink-soft);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.03em;
}
.media-placeholder svg { width: 34px; height: 34px; opacity: 0.55; }
.hero-media.media-empty .media-placeholder { display: flex; }
.hero-media.media-empty img { display: none; }
.hero-media.media-empty::after { display: none; }

.floating-services {
  position: absolute;
  top: clamp(46px, 7vw, 80px);
  left: 0;
  right: 0;
  height: 0;
  pointer-events: none;
}

.float-card {
  position: absolute;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--ink);
  background: rgba(250, 247, 240, 0.92);
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  animation: floatChip 5.5s ease-in-out infinite;
  animation-delay: var(--d, 0s);
}

.float-card.clean { top: 8%; left: 6%; }
.float-card.garden { top: 4%; left: 38%; }
.float-card.wash { top: 14%; right: 22%; }
.float-card.load { top: 2%; right: 4%; }

@keyframes floatChip {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 760px) {
  .floating-services { display: none; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 6vw, 64px);
  align-items: center;
}

.hero-content { max-width: 560px; }

.hero h1 {
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.04;
  color: var(--ink);
}

.hero h1 em {
  font-style: normal;
  color: var(--banyan-deep);
  background: linear-gradient(180deg, transparent 62%, rgba(224, 138, 44, 0.28) 62%);
}

.hero-copy {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 22px 0 0;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.primary-btn, .ghost-btn {
  font-size: 15px;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.primary-btn {
  background: var(--saffron);
  color: var(--ink);
  box-shadow: 0 10px 24px -8px rgba(224, 138, 44, 0.55);
}
.primary-btn:hover { background: var(--saffron-deep); transform: translateY(-2px); }

.ghost-btn { border: 1.5px solid var(--ink); color: var(--ink); }
.ghost-btn:hover { background: var(--ink); color: var(--paper); }

.hero-stat-row {
  display: flex;
  gap: clamp(24px, 4vw, 44px);
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero-stat-row dt { font-family: var(--font-display); font-size: 26px; color: var(--banyan-deep); }
.hero-stat-row dd { margin: 4px 0 0; font-size: 12.5px; color: var(--ink-soft); letter-spacing: 0.01em; }

/* --- ledger card --- */

.hero-panel { display: flex; justify-content: center; }

.ledger-card {
  width: 100%;
  max-width: 380px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-card-lg);
  position: relative;
  transition: transform 0.3s var(--ease);
}
.ledger-card:hover { transform: translateY(-3px); }

.ledger-card::before {
  content: "";
  position: absolute;
  top: 18px; bottom: 18px; left: -1px;
  width: 1px;
  background: repeating-linear-gradient(to bottom, var(--line) 0 6px, transparent 6px 12px);
}

.ledger-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.ledger-tag { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }

.pulse-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--banyan);
  box-shadow: 0 0 0 0 rgba(47, 107, 79, 0.5);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(47, 107, 79, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(47, 107, 79, 0); }
  100% { box-shadow: 0 0 0 0 rgba(47, 107, 79, 0); }
}

.ledger-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 14.5px;
}
.ledger-label { color: var(--ink-soft); }
.ledger-value { font-weight: 700; }
.ledger-value.price { color: var(--saffron-deep); font-family: var(--font-mono); }

.wave { display: flex; align-items: center; gap: 3px; height: 18px; }
.wave i { width: 3px; background: var(--banyan); border-radius: 2px; animation: wave 1.1s ease-in-out infinite; }
.wave i:nth-child(1){height:6px;animation-delay:0s}
.wave i:nth-child(2){height:14px;animation-delay:.1s}
.wave i:nth-child(3){height:9px;animation-delay:.2s}
.wave i:nth-child(4){height:16px;animation-delay:.3s}
.wave i:nth-child(5){height:7px;animation-delay:.4s}
.wave i:nth-child(6){height:12px;animation-delay:.5s}
@keyframes wave { 0%,100%{transform:scaleY(0.5)} 50%{transform:scaleY(1)} }

.ledger-divider { height: 1px; background: var(--line); margin: 6px 0 16px; }
.ledger-match { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }

.verified-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--banyan-deep);
  background: rgba(47, 107, 79, 0.1);
  padding: 5px 10px;
  border-radius: 999px;
  width: fit-content;
}
.verified-chip svg { width: 13px; height: 13px; }
.ledger-match p { font-size: 14px; color: var(--ink-soft); }

.ledger-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--ink);
  color: var(--paper);
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
}
.ledger-arrow { color: var(--saffron); font-weight: 700; transition: transform 0.25s var(--ease); }
.ledger-card:hover .ledger-arrow { transform: translateX(3px); }

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-panel { order: -1; }
}

/* ===================================================================
   SECTION HEADING (shared)
   =================================================================== */

.section-heading {
  max-width: 640px;
  margin: 0 auto 48px;
  padding: 0 clamp(20px, 5vw, 56px);
  text-align: left;
}
section[id] { scroll-margin-top: 80px; }

/* ===================================================================
   ANIMATED DEMO REEL
   =================================================================== */

.demo-reel {
  max-width: var(--container);
  margin: clamp(64px, 9vw, 110px) auto 0;
  padding: 0 clamp(20px, 5vw, 56px);
}

.video-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}

.video-frame {
  width: 100%;
  max-width: 760px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-lg);
  overflow: hidden;
}

.video-toolbar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
  background: var(--paper-dim);
}
.video-toolbar span { width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.video-toolbar span:nth-child(1) { background: var(--terracotta); }
.video-toolbar span:nth-child(2) { background: var(--saffron); }
.video-toolbar span:nth-child(3) { background: var(--banyan); }
.video-toolbar b {
  margin-left: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-soft);
  font-weight: 400;
}

.scene-track {
  position: relative;
  min-height: 360px;
}

.scene-card {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: center;
  padding: clamp(24px, 4vw, 44px);
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  pointer-events: none;
}

.scene-card.is-active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.scene-phone {
  background: var(--paper-dim);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
  justify-content: center;
}

.scene-phone b { font-size: 12px; font-family: var(--font-mono); color: var(--ink-soft); text-transform: uppercase; letter-spacing: 0.04em; }

.scene-chip-list { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; }
.scene-chip-list span {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13.5px;
  font-weight: 600;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.scene-chip-list span.is-picked {
  border-color: var(--banyan);
  background: rgba(47, 107, 79, 0.08);
  color: var(--banyan-deep);
}

.video-wave { display: flex; align-items: center; gap: 4px; height: 36px; margin-top: 6px; }
.video-wave i { width: 4px; background: var(--banyan); border-radius: 3px; animation: wave 1.1s ease-in-out infinite; }
.video-wave i:nth-child(1){height:12px;animation-delay:0s}
.video-wave i:nth-child(2){height:28px;animation-delay:.1s}
.video-wave i:nth-child(3){height:18px;animation-delay:.2s}
.video-wave i:nth-child(4){height:32px;animation-delay:.3s}
.video-wave i:nth-child(5){height:14px;animation-delay:.4s}
.video-wave i:nth-child(6){height:24px;animation-delay:.5s}

.scene-tag {
  align-self: flex-start;
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-soft);
  background: #fff;
  border: 1px solid var(--line);
  padding: 6px 11px;
  border-radius: 999px;
}
.verified-tag { display: inline-flex; align-items: center; gap: 6px; color: var(--banyan-deep); border-color: rgba(47,107,79,0.3); }
.verified-tag svg { width: 12px; height: 12px; }

.scene-phone.map-screen { gap: 16px; }
.mini-map { position: relative; height: 90px; border-radius: 10px; background: #fff; overflow: hidden; }
.mini-map .mp { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--banyan); box-shadow: 0 0 0 3px rgba(47,107,79,0.18); }
.mini-map .mp.one { top: 30%; left: 20%; }
.mini-map .mp.two { top: 55%; left: 55%; background: var(--saffron); box-shadow: 0 0 0 3px rgba(224,138,44,0.2); }
.mini-map .mp.three { top: 70%; left: 30%; }
.mini-map .mp-route {
  position: absolute;
  top: 32%; left: 22%;
  width: 32%; height: 24%;
  border: 1.5px dashed var(--banyan);
  border-radius: 0 0 0 50%;
  border-top: none;
  border-right: none;
  opacity: 0.6;
}

.otp-screen { align-items: center; text-align: center; }
.otp-screen strong {
  font-family: var(--font-mono);
  font-size: 30px;
  letter-spacing: 0.12em;
  color: var(--ink);
}

.scene-copy small {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--saffron-deep);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.scene-copy strong { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 600; margin: 8px 0 10px; }
.scene-copy p { font-size: 14.5px; color: var(--ink-soft); }

@media (max-width: 700px) {
  .scene-track { min-height: 460px; }
  .scene-card { grid-template-columns: 1fr; }
}

.demo-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.demo-pill {
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease), background 0.25s var(--ease);
}
.demo-pill.is-active { border-color: var(--banyan); color: var(--banyan-deep); background: rgba(47,107,79,0.08); }
.demo-pill:hover { border-color: var(--ink); }

/* ===================================================================
   SERVICES
   =================================================================== */

.services {
  max-width: var(--container);
  margin: clamp(64px, 9vw, 120px) auto 0;
  padding: 0 clamp(20px, 5vw, 56px);
}

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

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: transparent; }

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent) 14%, white);
  color: var(--accent);
  margin-bottom: 18px;
}
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 { font-size: 19px; margin-bottom: 6px; }
.service-card p { font-size: 14.5px; color: var(--ink-soft); }

@media (max-width: 880px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .service-grid { grid-template-columns: 1fr; } }

/* ===================================================================
   FLOW / TIMELINE
   =================================================================== */

.flow {
  max-width: var(--container);
  margin: clamp(64px, 9vw, 120px) auto 0;
  padding: 0 clamp(20px, 5vw, 56px);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.timeline article { background: #fff; padding: 30px 24px; }
.timeline strong { font-family: var(--font-mono); font-size: 13px; color: var(--saffron-deep); display: block; margin-bottom: 14px; }
.timeline h3 { font-size: 17.5px; margin-bottom: 8px; }
.timeline p { font-size: 14px; color: var(--ink-soft); }

@media (max-width: 880px) { .timeline { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .timeline { grid-template-columns: 1fr; } }

/* ===================================================================
   TRUST / VERIFICATION CHAIN
   =================================================================== */

.trust {
  margin-top: clamp(64px, 9vw, 120px);
  background: var(--ink);
  color: var(--paper);
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 56px);
  position: relative;
  overflow: hidden;
}
.trust::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(560px circle at 15% 10%, rgba(47, 107, 79, 0.35), transparent 60%),
    radial-gradient(480px circle at 90% 80%, rgba(224, 138, 44, 0.16), transparent 60%);
  pointer-events: none;
}
.trust .section-heading { position: relative; }
.trust .section-sub { color: rgba(250, 247, 240, 0.65); }
.trust h2 { color: var(--paper); }

.chain { position: relative; max-width: var(--container); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.chain-link { position: relative; padding: 8px 22px 0; border-left: 1px dashed var(--line-dark); }
.chain-link:first-child { border-left: none; }

.chain-seal {
  width: 56px;
  height: 56px;
  border: 1.5px solid var(--banyan-bright);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--banyan-bright);
  margin-bottom: 22px;
  background: rgba(47, 107, 79, 0.18);
}
.chain-seal svg { width: 26px; height: 26px; }

.chain-step { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--saffron); display: block; margin-bottom: 10px; }
.chain-link h3 { color: var(--paper); font-size: 19px; margin-bottom: 10px; }
.chain-link p { font-size: 14.5px; color: rgba(250, 247, 240, 0.72); }

.trust-footnote {
  position: relative;
  max-width: var(--container);
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding-top: 40px;
  border-top: 1px solid var(--line-dark);
}
.footnote-item h4 { color: var(--paper); font-size: 16px; margin-bottom: 8px; }
.footnote-item p { font-size: 14.5px; color: rgba(250, 247, 240, 0.7); }

@media (max-width: 920px) {
  .chain { grid-template-columns: 1fr 1fr; gap: 36px 0; }
  .chain-link { border-left: none; padding-left: 0; }
  .trust-footnote { grid-template-columns: 1fr; }
}
@media (max-width: 560px) { .chain { grid-template-columns: 1fr; } }

/* ===================================================================
   APP SHOWCASE
   =================================================================== */

.app-showcase {
  max-width: var(--container);
  margin: clamp(64px, 9vw, 120px) auto 0;
  padding: 0 clamp(20px, 5vw, 56px);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}

.phone {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  aspect-ratio: 9/18;
  background: var(--ink);
  border-radius: 38px;
  padding: 14px;
  position: relative;
  box-shadow: var(--shadow-card-lg);
}
.phone-notch { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 70px; height: 18px; background: var(--ink); border-radius: 0 0 14px 14px; z-index: 3; }
.phone-header, .map, .job-card, .otp-card { position: relative; z-index: 2; }

.phone-header { display: flex; align-items: center; justify-content: space-between; background: #fff; border-radius: 18px 18px 0 0; padding: 30px 14px 12px; font-size: 12px; }
.verified-chip.small { font-size: 10px; padding: 3px 8px; }
.verified-chip.small svg { width: 10px; height: 10px; }
.phone-header small { color: var(--ink-soft); }

.map { height: 56%; background: var(--paper-dim); position: relative; overflow: hidden; }
.map .pin { position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--banyan); box-shadow: 0 0 0 4px rgba(47, 107, 79, 0.18); }
.map .pin.one { top: 30%; left: 25%; }
.map .pin.two { top: 55%; left: 60%; background: var(--saffron); box-shadow: 0 0 0 4px rgba(224,138,44,0.2); }
.map .pin.three { top: 70%; left: 35%; }
.map .route { position: absolute; top: 32%; left: 27%; width: 36%; height: 26%; border: 1.5px dashed var(--banyan); border-radius: 0 0 0 60%; border-top: none; border-right: none; opacity: 0.6; }

.job-card { background: #fff; display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; font-size: 12.5px; border-top: 1px solid var(--line); }
.job-card b { display: block; }
.job-card small { color: var(--ink-soft); font-size: 11px; }
.job-card span { font-weight: 800; color: var(--saffron-deep); }

.otp-card { background: var(--ink); color: var(--paper); border-radius: 0 0 18px 18px; padding: 12px 14px; display: flex; align-items: center; justify-content: space-between; }
.otp-card small { font-size: 11px; color: rgba(250,247,240,0.6); }
.otp-card b { font-family: var(--font-mono); font-size: 17px; letter-spacing: 0.1em; }

.showcase-copy h2 { font-size: clamp(26px, 3.4vw, 36px); margin: 0 0 16px; }
.showcase-copy p { font-size: 16.5px; color: var(--ink-soft); max-width: 50ch; }

.metric-row { display: flex; flex-wrap: wrap; gap: 28px; margin-top: 30px; }
.metric-row b { display: block; font-family: var(--font-display); font-size: 22px; color: var(--banyan-deep); }
.metric-row small { font-size: 12px; color: var(--ink-soft); }

@media (max-width: 880px) {
  .app-showcase { grid-template-columns: 1fr; text-align: center; }
  .showcase-copy p { margin-inline: auto; }
  .metric-row { justify-content: center; }
}

/* ===================================================================
   PRICING
   =================================================================== */

.pricing {
  max-width: var(--container);
  margin: clamp(64px, 9vw, 120px) auto 0;
  padding: 0 clamp(20px, 5vw, 56px);
}

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

.pricing-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 30px 26px; text-align: left; }
.pricing-amount { font-family: var(--font-display); font-size: 38px; color: var(--saffron-deep); display: block; margin-bottom: 16px; }
.pricing-card h3 { font-size: 17.5px; margin-bottom: 8px; }
.pricing-card p { font-size: 14.5px; color: var(--ink-soft); }

@media (max-width: 880px) { .pricing-grid { grid-template-columns: 1fr; } }

/* ===================================================================
   HELP DESK
   =================================================================== */

.help-desk {
  max-width: var(--container);
  margin: clamp(64px, 9vw, 120px) auto 0;
  padding: clamp(48px, 7vw, 76px) clamp(20px, 5vw, 56px);
  background: var(--paper-dim);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: center;
}
.help-desk h2 { font-size: clamp(24px, 3vw, 32px); margin: 10px 0; }
.help-desk p { color: var(--ink-soft); font-size: 15.5px; max-width: 44ch; }

.help-numbers { display: flex; flex-direction: column; gap: 12px; }
.help-numbers a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 700;
  font-family: var(--font-mono);
  font-size: 15px;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.help-numbers a:hover { border-color: var(--banyan); transform: translateX(3px); }
.help-numbers svg { width: 17px; height: 17px; color: var(--banyan); flex-shrink: 0; }

@media (max-width: 760px) {
  .help-desk { grid-template-columns: 1fr; text-align: center; }
  .help-desk p { margin-inline: auto; }
  .help-numbers { align-items: center; }
}

/* ===================================================================
   FOOTER
   =================================================================== */

footer {
  max-width: var(--container);
  margin: clamp(56px, 8vw, 90px) auto 0;
  padding: 28px clamp(20px, 5vw, 56px) 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}
.footer-brand { display: flex; flex-direction: column; }
.footer-brand strong { font-family: var(--font-display); font-size: 18px; }
.footer-brand span { font-size: 13px; color: var(--ink-soft); }
footer a { font-size: 13.5px; font-weight: 700; text-decoration: underline; text-decoration-color: var(--line); }

@media (max-width: 560px) {
  footer { flex-direction: column; gap: 14px; text-align: center; }
}