/* ============================================================
   Parichay — Design System
   ============================================================ */

:root {
  /* Brand */
  --blue: #0d3a8a;
  --blue-light: #1e54b8;
  --blue-deep: #001f54;
  --green: #01c8a2;
  --green-deep: #00a886;
  --dark: #04143a;
  --light: #f6f8fc;

  /* Derived ink / surfaces */
  --ink: #0b1f44;
  --ink-soft: #2c3a57;
  --muted: #5d6b86;
  --line: #e3e9f3;
  --surface: #ffffff;
  --surface-2: #f1f5fc;

  /* Gradient (echoes the logo) */
  --grad-brand: linear-gradient(135deg, var(--blue-light) 0%, var(--blue) 55%, var(--blue-deep) 100%);
  --grad-mint: linear-gradient(135deg, var(--green) 0%, var(--green-deep) 100%);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.62);
  --glass-brd: rgba(255, 255, 255, 0.7);
  --glass-blur: 18px;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06), 0 2px 6px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 8px 24px -8px rgba(15, 23, 42, 0.14), 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 30px 60px -20px rgba(13, 58, 138, 0.28), 0 12px 28px -12px rgba(15, 23, 42, 0.18);
  --shadow-brand: 0 18px 40px -14px rgba(13, 58, 138, 0.5);

  /* Radii */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 34px;

  /* Type */
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--light);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
  text-wrap: balance;
}

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

/* ---------- Layout helpers ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section { padding-block: clamp(64px, 9vw, 124px); position: relative; }
.section--tight { padding-block: clamp(48px, 6vw, 84px); }

.section-head { max-width: 660px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  padding: 7px 14px 7px 12px;
  border-radius: 100px;
  background: rgba(13, 58, 138, 0.07);
  border: 1px solid rgba(13, 58, 138, 0.14);
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grad-mint); box-shadow: 0 0 0 4px rgba(1,200,162,0.18); }

.section h2 { font-size: clamp(2rem, 4vw, 3.05rem); }
.section-head p { margin-top: 18px; color: var(--muted); font-size: clamp(1.02rem, 1.4vw, 1.18rem); }

/* The signature green dot used as a "period" */
.dotmark { color: var(--green); }

.lede { color: var(--ink-soft); font-size: 1.12rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 26px;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 24px 48px -14px rgba(13,58,138,0.6); }
.btn-ghost {
  background: #fff;
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-ghost:hover { border-color: rgba(13,58,138,0.4); color: var(--blue); transform: translateY(-2px); }
.btn-store {
  background: var(--dark);
  color: #fff;
  padding: 13px 22px;
  gap: 12px;
}
.btn-store:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-store .store-sub { font-family: var(--font-body); font-weight: 500; font-size: 0.66rem; opacity: 0.75; display: block; line-height: 1; letter-spacing: 0.04em; }
.btn-store .store-main { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; line-height: 1.1; }
.btn-store .store-txt { text-align: left; }

.btn svg { width: 20px; height: 20px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(248, 250, 252, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); font-weight: 800; font-size: 1.34rem; letter-spacing: -0.02em; }
.brand img { height: 38px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
  padding: 9px 14px;
  border-radius: 100px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover { color: var(--blue); background: rgba(13,58,138,0.06); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: 0.3s; }
.nav-toggle span + span { margin-top: 6px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: 150px; padding-bottom: clamp(60px, 8vw, 110px); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: 0.5; }
.blob-1 { width: 560px; height: 560px; background: radial-gradient(circle, rgba(30,84,184,0.55), transparent 70%); top: -180px; right: -120px; }
.blob-2 { width: 460px; height: 460px; background: radial-gradient(circle, rgba(1,200,162,0.42), transparent 70%); bottom: -160px; left: -120px; }
.blob-3 { width: 360px; height: 360px; background: radial-gradient(circle, rgba(13,58,138,0.28), transparent 70%); top: 30%; left: 38%; }
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(15,23,42,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(15,23,42,0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
}

.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero-copy { max-width: 620px; }
.hero h1 { font-size: clamp(2.5rem, 5.2vw, 4.1rem); }
.hero-sub { margin-top: 22px; font-size: clamp(1.08rem, 1.6vw, 1.28rem); color: var(--ink-soft); max-width: 540px; }
.hero-sub strong { color: var(--ink); font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-highlights { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px 22px; margin-top: 38px; max-width: 520px; }
.hl { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.96rem; color: var(--ink-soft); }
.hl .check {
  flex: none; width: 22px; height: 22px; border-radius: 50%;
  background: rgba(1,200,162,0.14); color: var(--green-deep);
  display: grid; place-items: center;
}
.hl .check svg { width: 13px; height: 13px; }

/* ---------- Phone mockup ---------- */
.hero-visual { position: relative; display: flex; justify-content: center; }
.phone {
  position: relative;
  width: 300px;
  aspect-ratio: 300 / 620;
  background: #041230;
  border-radius: 46px;
  padding: 11px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.08);
}
.phone::after { /* side button */
  content: ""; position: absolute; right: -3px; top: 150px; width: 3px; height: 64px; background: #1e293b; border-radius: 0 3px 3px 0;
}
.phone-screen {
  position: relative;
  width: 100%; height: 100%;
  background: var(--surface-2);
  border-radius: 36px;
  overflow: hidden;
}
.phone-notch { position: absolute; top: 12px; left: 50%; transform: translateX(-50%); width: 110px; height: 26px; background: #041230; border-radius: 0 0 16px 16px; z-index: 5; }

/* Business card screen */
.card-screen { height: 100%; display: flex; flex-direction: column; }
.card-hero { background: var(--grad-brand); padding: 46px 22px 58px; position: relative; color: #fff; text-align: center; }
.card-hero::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,0.16) 1px, transparent 1px); background-size: 16px 16px; opacity: 0.5; }
.card-avatar { width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 14px; background: linear-gradient(135deg, #fff, #d6e2ff); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 1.7rem; color: var(--blue); box-shadow: 0 8px 20px rgba(0,0,0,0.25); position: relative; z-index: 1; }
.card-name { font-family: var(--font-display); font-weight: 800; font-size: 1.28rem; position: relative; z-index: 1; }
.card-role { font-size: 0.82rem; opacity: 0.92; margin-top: 3px; position: relative; z-index: 1; }
.card-company { display: inline-flex; align-items: center; gap: 6px; margin-top: 12px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; padding: 5px 12px; border-radius: 100px; background: rgba(255,255,255,0.16); position: relative; z-index: 1; }
.card-body { padding: 18px 20px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.card-row { display: flex; align-items: center; gap: 11px; }
.card-row .ic { width: 32px; height: 32px; border-radius: 9px; background: rgba(13,58,138,0.08); color: var(--blue); display: grid; place-items: center; flex: none; }
.card-row .ic svg { width: 15px; height: 15px; }
.card-row .meta { display: flex; flex-direction: column; line-height: 1.25; }
.card-row .meta .k { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 700; }
.card-row .meta .v { font-size: 0.82rem; font-weight: 600; color: var(--ink); }
.card-qr { margin-top: auto; display: flex; align-items: center; gap: 13px; padding: 13px; border-radius: 16px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.card-qr .qr { width: 56px; height: 56px; flex: none; }
.card-qr .qr-txt .t { font-family: var(--font-display); font-weight: 800; font-size: 0.82rem; }
.card-qr .qr-txt .s { font-size: 0.68rem; color: var(--muted); }
.card-share { margin: 14px 0 4px; text-align: center; background: var(--dark); color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 0.84rem; padding: 12px; border-radius: 12px; }

/* Floating chips around phone */
.chip {
  position: absolute; z-index: 4;
  display: flex; align-items: center; gap: 10px;
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur)); -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-brd);
  border-radius: 16px;
  padding: 11px 15px;
  box-shadow: var(--shadow-md);
  font-weight: 700; font-size: 0.84rem;
  font-family: var(--font-display);
}
.chip .ci { width: 30px; height: 30px; border-radius: 9px; display: grid; place-items: center; flex: none; color: #fff; }
.chip small { display: block; font-family: var(--font-body); font-weight: 500; font-size: 0.7rem; color: var(--muted); }
.chip-scan { top: 70px; left: -38px; }
.chip-scan .ci { background: var(--grad-mint); }
.chip-qr { bottom: 96px; right: -30px; }
.chip-qr .ci { background: var(--grad-brand); }
.float { animation: float 5s ease-in-out infinite; }
.float.d { animation-delay: -2.5s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Trust strip */
.trust { margin-top: clamp(48px, 6vw, 80px); }
.trust-label { text-align: center; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(20px, 5vw, 56px); align-items: center; }
.trust-row .stat { text-align: center; }
.trust-row .stat .n { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.3rem); background: var(--grad-brand); -webkit-background-clip: text; background-clip: text; color: transparent; }
.trust-row .stat .l { font-size: 0.86rem; color: var(--muted); font-weight: 600; }
.trust-sep { width: 1px; height: 40px; background: var(--line); }

/* ============================================================
   GENERIC CARDS / GRIDS
   ============================================================ */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(13,58,138,0.22); }
.card .ico {
  width: 52px; height: 52px; border-radius: 15px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: rgba(13,58,138,0.08); color: var(--blue);
}
.card.green .ico { background: rgba(1,200,162,0.12); color: var(--green-deep); }
.card .ico svg { width: 25px; height: 25px; }
.card h3 { font-size: 1.22rem; margin-bottom: 9px; }
.card p { color: var(--muted); font-size: 0.98rem; }

/* ============================================================
   WHY (split)
   ============================================================ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.pain-list { display: flex; flex-direction: column; gap: 14px; margin-top: 28px; }
.pain {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 16px 18px; box-shadow: var(--shadow-sm);
}
.pain .x { flex: none; width: 26px; height: 26px; border-radius: 8px; background: rgba(239,68,68,0.1); color: #ef4444; display: grid; place-items: center; }
.pain .x svg { width: 14px; height: 14px; }
.pain p { font-weight: 600; color: var(--ink-soft); font-size: 0.98rem; }
.mission {
  background: var(--grad-brand); color: #fff; border-radius: var(--r-xl); padding: clamp(32px,4vw,48px);
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.mission::after { content: ""; position: absolute; right: -60px; bottom: -60px; width: 240px; height: 240px; border-radius: 50%; background: radial-gradient(circle, rgba(1,200,162,0.5), transparent 70%); }
.mission .badge { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 7px 14px; border-radius: 100px; background: rgba(255,255,255,0.16); position: relative; z-index: 1; }
.mission h3 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin: 20px 0 14px; position: relative; z-index: 1; }
.mission p { color: rgba(255,255,255,0.9); font-size: 1.06rem; position: relative; z-index: 1; }

/* ============================================================
   FEATURES (alternating)
   ============================================================ */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,80px); align-items: center; }
.feature + .feature { margin-top: clamp(56px, 7vw, 104px); }
.feature.flip .feat-visual { order: -1; }
.feature h3 { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin-bottom: 16px; }
.feature .lede { margin-bottom: 22px; color: var(--muted); }
.feature-list { display: flex; flex-direction: column; gap: 12px; }
.feature-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--ink-soft); }
.feature-list li .b { flex: none; width: 22px; height: 22px; border-radius: 6px; background: rgba(1,200,162,0.14); color: var(--green-deep); display: grid; place-items: center; }
.feature-list li .b svg { width: 13px; height: 13px; }

.feat-visual {
  position: relative;
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: clamp(24px,3vw,40px);
  min-height: 340px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.feat-visual::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 20%, rgba(30,84,184,0.1), transparent 60%); }

/* AZAPI badge */
.azapi-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 0.74rem;
  padding: 6px 12px; border-radius: 100px;
  background: rgba(1,200,162,0.1); color: var(--green-deep);
  border: 1px solid rgba(1,200,162,0.28);
  margin-bottom: 16px;
}
.azapi-badge .spark { width: 14px; height: 14px; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: step; }
.step {
  position: relative; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px 28px; box-shadow: var(--shadow-sm);
  transition: transform 0.25s, box-shadow 0.25s;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step .num {
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem;
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: var(--grad-brand); color: #fff; margin-bottom: 18px; box-shadow: var(--shadow-brand);
}
.step h3 { font-size: 1.18rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 0.96rem; }
.step .line { position: absolute; top: 53px; right: -14px; width: 28px; height: 2px; background: var(--line); z-index: 2; }
.step .line::after { content: ""; position: absolute; right: 0; top: -3px; width: 8px; height: 8px; border-top: 2px solid var(--line); border-right: 2px solid var(--line); transform: rotate(45deg); }

/* ============================================================
   BENEFITS
   ============================================================ */
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.benefit {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 26px; box-shadow: var(--shadow-sm); transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(1,200,162,0.3); }
.benefit .bi { width: 46px; height: 46px; border-radius: 13px; background: rgba(13,58,138,0.07); color: var(--blue); display: grid; place-items: center; margin-bottom: 16px; }
.benefit .bi svg { width: 22px; height: 22px; }
.benefit h3 { font-size: 1.12rem; margin-bottom: 6px; }
.benefit p { color: var(--muted); font-size: 0.94rem; }

/* ============================================================
   SUSTAINABILITY (band)
   ============================================================ */
.green-band {
  background: linear-gradient(135deg, #001f54 0%, #013f4f 55%, #016b58 100%);
  color: #fff; border-radius: var(--r-xl); padding: clamp(40px,5vw,72px);
  position: relative; overflow: hidden;
}
.green-band::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 85% 15%, rgba(1,200,162,0.4), transparent 45%); }
.green-band .eyebrow { background: rgba(1,200,162,0.16); color: #6ff0df; border-color: rgba(1,200,162,0.3); }
.green-band h2 { color: #fff; position: relative; z-index: 1; }
.green-band > .wrap, .green-band .gb-inner { position: relative; z-index: 1; }
.gb-inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,4vw,64px); align-items: center; }
.gb-lede { color: rgba(255,255,255,0.86); font-size: 1.1rem; margin-top: 18px; }
.gb-pills { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.gb-pill { display: flex; align-items: center; gap: 13px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r-md); padding: 18px; font-family: var(--font-display); font-weight: 700; font-size: 1rem; }
.gb-pill .leaf { width: 40px; height: 40px; border-radius: 12px; background: rgba(1,200,162,0.2); display: grid; place-items: center; flex: none; color: #6ff0df; }

/* ============================================================
   ROADMAP
   ============================================================ */
.roadmap-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.rm {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 22px; box-shadow: var(--shadow-sm); transition: transform 0.25s, box-shadow 0.25s;
}
.rm:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.rm .rmi { width: 40px; height: 40px; border-radius: 11px; background: rgba(13,58,138,0.07); color: var(--blue); display: grid; place-items: center; margin-bottom: 14px; }
.rm .rmi svg { width: 20px; height: 20px; }
.rm h4 { font-size: 1.02rem; font-weight: 700; }
.rm .soon { font-size: 0.72rem; font-weight: 700; color: var(--green-deep); letter-spacing: 0.06em; text-transform: uppercase; margin-top: 6px; display: inline-block; }

/* ============================================================
   QR SHARING SPLIT
   ============================================================ */
.qr-split { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: clamp(36px,5vw,72px); align-items: center; }
.qr-card-visual { display: grid; place-items: center; position: relative; }
.qr-frame {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 34px; box-shadow: var(--shadow-lg); text-align: center; max-width: 320px; width: 100%;
}
.qr-frame .qr-big { width: 180px; height: 180px; margin: 0 auto 18px; }
.qr-frame .qr-name { font-family: var(--font-display); font-weight: 800; font-size: 1.16rem; }
.qr-frame .qr-role { color: var(--muted); font-size: 0.9rem; }
.qr-frame .qr-logo { display: inline-flex; align-items: center; gap: 7px; margin-top: 16px; font-weight: 700; font-size: 0.84rem; color: var(--blue); }
.qr-frame .qr-logo img { height: 20px; }

/* ============================================================
   CTA DOWNLOAD
   ============================================================ */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--grad-brand); color: #fff;
  border-radius: var(--r-xl); padding: clamp(44px,6vw,80px); text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band::before { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle at 15% 20%, rgba(1,200,162,0.5), transparent 40%), radial-gradient(circle at 85% 80%, rgba(255,255,255,0.16), transparent 45%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.cta-band p { color: rgba(255,255,255,0.9); font-size: 1.15rem; margin: 16px auto 32px; max-width: 560px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.cta-band .btn-store { background: #fff; color: var(--dark); }
.cta-band .btn-store .store-sub { color: var(--muted); }
.cta-band .btn-ghost { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.3); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,0.2); color: #fff; }

/* ============================================================
   TEAM
   ============================================================ */
.team-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px,4vw,56px); align-items: center; }
.founder {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 34px; box-shadow: var(--shadow-md); text-align: center;
}
.founder .photo { width: 120px; height: 120px; border-radius: 50%; margin: 0 auto 18px; background: var(--grad-brand); display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 2.4rem; color: #fff; box-shadow: var(--shadow-brand); }
.founder .fname { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; }
.founder .frole { color: var(--blue); font-weight: 700; font-size: 0.95rem; margin-top: 2px; }
.founder .fbio { color: var(--muted); font-size: 0.96rem; margin-top: 14px; }
.team-pills { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-top: 26px; }
.team-pill { display: flex; align-items: center; gap: 11px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 15px 16px; font-weight: 700; font-size: 0.96rem; box-shadow: var(--shadow-sm); }
.team-pill .tpi { width: 34px; height: 34px; border-radius: 10px; background: rgba(13,58,138,0.07); color: var(--blue); display: grid; place-items: center; flex: none; }
.team-pill .tpi svg { width: 17px; height: 17px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px,5vw,64px); }
.contact-info { display: flex; flex-direction: column; gap: 16px; margin-top: 26px; }
.ci-row { display: flex; align-items: center; gap: 14px; }
.ci-row .cii { width: 46px; height: 46px; border-radius: 13px; background: rgba(13,58,138,0.07); color: var(--blue); display: grid; place-items: center; flex: none; }
.ci-row .cii svg { width: 21px; height: 21px; }
.ci-row .k { font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); font-weight: 700; }
.ci-row .v { font-weight: 700; font-size: 1rem; }

.form { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(28px,3.5vw,40px); box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.field label { font-weight: 700; font-size: 0.86rem; }
.field input, .field textarea {
  font-family: var(--font-body); font-size: 0.98rem; color: var(--ink);
  padding: 13px 15px; border-radius: var(--r-sm); border: 1px solid var(--line);
  background: var(--surface-2); transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--blue); background: #fff; box-shadow: 0 0 0 4px rgba(13,58,138,0.1); }
.field textarea { resize: vertical; min-height: 120px; }
.form .btn-primary { width: 100%; margin-top: 6px; }
.form-note { text-align: center; color: var(--green-deep); font-weight: 700; font-size: 0.92rem; margin-top: 14px; min-height: 20px; }
.form-alert { border-radius: var(--r-sm); padding: 13px 16px; font-weight: 700; font-size: 0.92rem; margin-bottom: 18px; border: 1px solid; }
.form-alert.success { background: rgba(1,200,162,0.1); color: var(--green-deep); border-color: rgba(1,200,162,0.35); }
.form-alert.error { background: rgba(239,68,68,0.08); color: #dc2626; border-color: rgba(239,68,68,0.3); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--dark); color: #cbd5e1; padding-block: clamp(56px,6vw,80px) 32px; margin-top: clamp(40px,5vw,80px); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(28px,4vw,56px); padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-brand .brand { color: #fff; margin-bottom: 16px; }
.footer-brand p { color: #94a3b8; font-size: 0.95rem; max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,0.07); display: grid; place-items: center; color: #cbd5e1; transition: background 0.2s, color 0.2s, transform 0.2s; }
.footer-social a:hover { background: var(--blue); color: #fff; transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-col h4 { color: #fff; font-size: 0.92rem; font-family: var(--font-display); font-weight: 700; letter-spacing: 0.04em; margin-bottom: 18px; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a { color: #94a3b8; font-size: 0.94rem; transition: color 0.2s; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 14px; padding-top: 26px; color: #64748b; font-size: 0.88rem; }
.footer-bottom .pwr { display: inline-flex; align-items: center; gap: 6px; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
/* Visible by default; only armed (hidden) when JS takes over, so content
   always shows even if scripts don't run (e.g. in a standalone bundle). */
.reveal { opacity: 1; transform: none; transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1); }
html.js-anim .reveal { opacity: 0; transform: translateY(26px); }
html.js-anim .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js-anim .reveal { opacity: 1; transform: none; transition: none; }
  .float { animation: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { max-width: none; margin: 0 auto; }
  .hero-sub { margin-inline: auto; }
  .hero-highlights { margin-inline: auto; justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-visual { margin-top: 20px; }
  .why-grid, .feature, .feature.flip, .qr-split, .gb-inner, .team-grid, .contact-grid { grid-template-columns: 1fr; }
  .feature.flip .feat-visual { order: 0; }
  .grid-3, .steps, .roadmap-grid { grid-template-columns: repeat(2,1fr); }
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .step .line { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; background: rgba(248,250,252,0.97); backdrop-filter: blur(16px); padding: 16px var(--gutter) 24px; gap: 4px; border-bottom: 1px solid var(--line); }
  .nav-links.open a { padding: 13px 14px; }
  .nav-toggle { display: block; }
  .nav-cta .btn:not(.nav-toggle) { display: none; }
  .grid-3, .steps, .roadmap-grid, .benefits-grid, .gb-pills, .team-pills, .form-row { grid-template-columns: 1fr; }
  .hero-highlights { grid-template-columns: 1fr; }
  .chip-scan { left: -10px; top: 40px; }
  .chip-qr { right: -8px; }
  .trust-sep { display: none; }
}
