:root {
  --bg: #020308;
  --bg-alt: #060814;
  --card: #10121a;
  --accent-orange: #f59e0b;
  --accent-blue: #38bdf8;
  --text: #f9fafb;
  --muted: #9ca3af;
  --border-soft: rgba(148, 163, 184, 0.35);
}

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BASE */
body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont,
               "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(circle at 0% 100%, rgba(245, 158, 11, 0.32), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(56, 189, 248, 0.32), transparent 55%),
    var(--bg);
  color: var(--text);
  line-height: 1.5;
}

/* CONTAINER & SECTIONS */
.container {
  width: min(1120px, 100% - 32px);
  margin: 0 auto;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background:
    radial-gradient(circle at 0% 100%, rgba(245, 158, 11, 0.3), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(56, 189, 248, 0.3), transparent 55%),
    #050814;
}

.section-header {
  max-width: 650px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-header h2 {
  font-size: clamp(1.9rem, 2.5vw, 2.4rem);
  margin-bottom: 8px;
}

.section-header p { color: var(--muted); font-size: 0.95rem; }

/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  backdrop-filter: blur(12px);
  background: rgba(3, 4, 7, 0.92);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  height: 72px;
  display: flex;
  align-items: center;
  padding: 0 20px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 1.25rem;
}

.logo-icon-inline {
  height: 40px;   /* single consistent size; change if your asset is larger/smaller */
  width: auto;
  transform: translateY(1px);
}

.logo-upi {
  margin-left: 6px;
  opacity: 0.9;
  font-size: 0.82rem;
  padding: 4px 8px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.88rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.nav-links a:hover {
  color: var(--text);
  background: rgba(15, 23, 42, 0.85);
}

.nav-cta,
.nav-links .nav-cta {
  border-color: rgba(245, 158, 11, 0.9);
  color: var(--text) !important;
  background: linear-gradient(135deg, var(--accent-orange), #facc15);
  padding: 8px 12px;
  border-radius: 999px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
}

.btn.primary {
  background: linear-gradient(135deg, #f97316, #facc15);
  color: #020617;
  font-weight: 600;
}

.btn.ghost {
  border-color: rgba(148, 163, 184, 0.7);
  color: var(--text);
  background: transparent;
}

.btn.full { width: 100%; }

/* HERO */




/* ===== HERO BACKGROUND CURRENCY CANVAS ===== */

.hero {
  position: relative;
  overflow: hidden; /* so canvas doesn't spill out */
}

/* canvas sits behind the hero content */
.hero-currency-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.40;          /* dim, not loud */
  mix-blend-mode: screen;     /* soft neon blend with bg */
}

/* make sure real content stays ABOVE canvas */
.hero-inner {
  position: relative;
  z-index: 1;
}



.hero { padding: 64px 0 48px; }
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: 32px;
  align-items: center;
}

.pill-row { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:12px; }

.pill {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.85);
  color: var(--muted);
}

.pill-soft {
  border-color: rgba(245, 158, 11, 0.9);
  background: rgba(245, 158, 11, 0.08);
}

.hero-left h1 {
  font-size: clamp(1.6rem, 2.6vw, 2.4rem);
  margin-bottom: 12px;
  text-shadow: 0 6px 18px rgba(0,0,0,0.9);
}

.hero-sub { color: var(--muted); font-size: 0.98rem; margin-bottom: 18px; }

.hero-actions { display:flex; flex-wrap:wrap; gap:12px; margin-bottom:14px; }

.hero-meta { display:flex; gap:10px; align-items:center; color:var(--muted); margin-bottom:16px; }

.flag-row { display:flex; gap:8px; align-items:center; font-size:1.1rem; }

/* ===== HERO + FX BACKGROUND (USD / INR) ===== */



/* ===== PHONE MOCKUP – iPhone-style with Dynamic Island ===== */

.hero-right {
  display:flex;
  flex-direction:column;
  gap:16px;
  align-items:flex-end;
}

/* Outer hardware shell */
.phone-frame {
  position: relative;
  z-index: 4;
  width: 340px;
  padding: 8px;                  /* bezel thickness */
  border-radius: 34px;            /* rounded iPhone corners */
  background: radial-gradient(circle at 0 0,
              rgba(255,255,255,0.06),
              rgba(15,23,42,1));
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 1),
    0 0 0 1px rgba(15,23,42,0.9);
  animation: floatY 6.5s ease-in-out infinite;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  will-change: transform, box-shadow;
}

/* thin aluminium edge highlight */
.phone-frame::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 34px;
  border: 1px solid rgba(148,163,184,0.85);
  opacity: 0.9;
  mix-blend-mode: screen;
  pointer-events: none;
}

/* subtle right-side buttons */
.phone-frame::after {
  content: "";
  position: absolute;
  right: -3px;
  top: 80px;
  width: 4px;
  height: 80px;
  border-radius: 999px;
  background: linear-gradient(180deg,#020617,#1f2937);
  box-shadow: 0 0 6px rgba(0,0,0,0.8);
}

/* hover lift */
.phone-frame:hover {
  transform: translateY(-12px) scale(1.01);
  box-shadow:
    0 36px 90px rgba(0,0,0,1),
    0 0 0 1px rgba(56,189,248,0.35);
}

/* gentle float animation */
@keyframes floatY {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* Dynamic Island container (absolutely at top) */
/* hide old notch container + span */
.phone-top {
  display: none;
}
.notch-dot {
  display: none;
}

/* camera + sensor dots inside island */
.notch-dot::before,
.notch-dot::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.notch-dot::before {
  right: 12px;
  width: 10px;
  height: 10px;
  background: radial-gradient(circle at 30% 30%, #4ade80, #020617);
  box-shadow: 0 0 8px rgba(34,197,94,0.8);
}

.notch-dot::after {
  right: 26px;
  width: 6px;
  height: 6px;
  background: #111827;
}

/* Inner screen */
.phone-body {
  position: relative;
  background:
    radial-gradient(circle at 0% 100%, rgba(245, 158, 11, 0.22), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(56, 189, 248, 0.20), transparent 55%),
    #020617;
  border-radius: 26px;
  padding: 12px 12px 14px;
  border: 1px solid rgba(15, 23, 42, 1);
  overflow: hidden;               /* screen clipped to glass */
}

/* inner glass rim */
.phone-body::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  border: 1px solid rgba(148,163,184,0.30);
  opacity: 0.7;
  pointer-events: none;
}

/* keep the rest (header, balance, actions, etc.) as you already have */


.phone-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:12px; }

.app-name { font-weight: 600; font-size: 0.95rem; }

.tag-online {
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(56, 189, 248, 0.12);
  color: var(--accent-blue);
  border: 1px solid rgba(56, 189, 248, 0.7);
}

/* BALANCE & ACTIONS */
.balance-card {
  background: linear-gradient(to bottom right, rgba(15,23,42,0.9), rgba(15,23,42,0.96));
  border-radius: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,0.18);
  margin-bottom: 10px;
}

.balance-label { font-size: 0.7rem; text-transform: uppercase; color: var(--muted); }
.balance-value { font-size: 0.95rem; font-weight: 600; margin-top: 4px; }
.balance-sub { font-size: 0.75rem; color: var(--muted); }

.quick-actions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin: 12px 0;
}

.qa-item {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 12px;
  border: 1px solid rgba(31, 41, 55, 0.9);
  padding: 6px 4px;
  text-align: center;
  font-size: 0.7rem;
}

.fx-card {
  border-radius: 12px;
  padding: 8px 10px;
  border: 1px dashed rgba(148, 163, 184, 0.9);
  margin-bottom: 10px;
  background: rgba(15, 23, 42, 0.96);
}

.fx-label { font-size: 0.7rem; color: var(--muted); margin-bottom: 2px; }
.fx-meta { font-size: 0.78rem; color: var(--muted); }

/* TRANSACTIONS */
.txn-list { margin-top: 6px; width: 100%; }
.txn-title { font-size: 0.75rem; color: var(--muted); margin-bottom: 4px; }

.txn-row {
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding: 8px 6px;
  border-radius: 8px;
  margin-bottom: 8px;
  border: 1px solid rgba(255,255,255,0.02);
}

.txn-name { font-size: 0.8rem; font-weight:600; }
.txn-meta { font-size: 0.72rem; color: var(--muted); }
.txn-amt { font-size: 0.8rem; font-weight:700; }
.txn-amt.minus { color: #f97373; }
.txn-amt.plus { color: var(--accent-orange); }

/* HERO BADGES */
.hero-badges { display:flex; gap:10px; flex-wrap:wrap; }
.mini-card {
  background: rgba(15, 23, 42, 0.95);
  border-radius: 12px;
  padding: 8px 10px;
  border: 1px solid rgba(55, 65, 81, 0.9);
  font-size: 0.8rem;
}

/* GLASS */
.glass {
  background: radial-gradient(circle at 0 0, rgba(255,255,255,0.06), rgba(15,23,42,0.94));
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 26px 60px rgba(0,0,0,0.9);
  border-radius: 22px;
  backdrop-filter: blur(18px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.glass:hover { transform: translateY(-6px); box-shadow: 0 34px 80px rgba(0,0,0,1); }

/* FEATURES LAYOUT */
.features-section { padding: 72px 0 84px; position: relative; overflow: hidden; }

.feature-bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.feature-bg .radial { position: absolute; width: 780px; height: 420px; filter: blur(36px); opacity: 0.95; border-radius: 22px; }
.feature-bg .radial-left { left: -160px; top: 40px; background: radial-gradient(circle at 30% 40%, rgba(245,158,11,0.95), rgba(245,158,11,0.12) 35%, transparent 60%); }
.feature-bg .radial-right { right: -160px; top: 40px; width: 640px; height: 380px; background: radial-gradient(circle at 70% 30%, rgba(56,189,248,0.95), rgba(56,189,248,0.12) 35%, transparent 60%); }

.feature-content { position: relative; z-index: 2; }

.feature-layout {
  position: relative;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;   /* center pill + card */
}

.feature-gradient {
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.08),
      rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  border-radius: 26px;
  padding: 34px;
  margin-top: 48px;
  overflow: visible;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

/* Increase space between section header paragraph and the big gradient pill */
.feature-content .feature-gradient {
  /* increase top margin to create breathing room (adjust px as needed) */
  margin-top: 48px; /* changed from smaller value — increase/decrease to taste */
  position: relative; /* for absolutely-positioned doodle */
  overflow: hidden;   /* clip doodle edges softly */
}

/* Decorative doodle inside the pill */





.feature-card {
  max-width: 920px;
  width: 100%;
  margin: 28px auto 0;           /* 🔸 pushes it DOWN, no overlap */
  padding: 22px 24px 20px;
  border-radius: 22px;
  background: radial-gradient(circle at 0 0, rgba(255,255,255,0.05), rgba(15,23,42,0.98));
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.85),
    0 0 0 1px rgba(15,23,42,0.9);
  position: relative;
  z-index: 4;                    /* sits under doodle pill but above background */
  transform: translateY(0) scale(1);
  transition:
    transform .28s ease,
    box-shadow .28s ease;
}

/* ================== CORRIDORS SECTION – PLAYFUL GLASS CARDS ================== */

.corridors-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.2fr);
  gap: 28px;
  align-items: stretch;
}

/* left card: text + bullet list */
.corridors-card {
  position: relative;
  padding: 22px 24px 20px;
  border-radius: 22px;
  background: radial-gradient(circle at 0 0, rgba(255,255,255,0.05), rgba(15,23,42,0.98));
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.85),
    0 0 0 1px rgba(15,23,42,0.9);
  overflow: hidden;
  transform: translateY(0) scale(1);
  transition:
    transform .28s ease,
    box-shadow .28s ease,
    border-color .28s ease;
}

/* subtle gradient ribbon on left edge */
.corridors-card::before {
  content: "";
  position: absolute;
  left: -2px;
  top: 12px;
  bottom: 12px;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f97316, #38bdf8);
  box-shadow: 0 0 22px rgba(56,189,248,0.55);
  opacity: 0.9;
}

/* hover = 3D lift + zoom */
.corridors-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.95),
    0 0 0 1px rgba(15,23,42,1);
  border-color: rgba(255,255,255,0.16);
}

/* heading & text tweaks */
.corridors-text h2 {
  margin-bottom: 8px;
}

.corridors-text p {
  color: var(--muted);
  margin-bottom: 8px;
  font-size: 0.94rem;
}

/* bullet list – custom glowing dots, nicer spacing */
.corridors-list {
  list-style: none;
  margin: 14px 0 10px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}

.corridors-list li {
  position: relative;
  padding-left: 28px;
}

.corridors-list li::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f97316, #38bdf8);
  box-shadow: 0 0 12px rgba(56,189,248,0.65);
}

/* small caption under list */
.corridors-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 6px;
}

/* right card: example flow – reuse same 3D feel */
.map-card {
  padding: 22px 24px 18px;
  border-radius: 22px;
  background: radial-gradient(circle at 100% 0, rgba(56,189,248,0.12), rgba(15,23,42,0.98));
  border: 1px solid rgba(148,163,184,0.35);
  box-shadow:
    0 22px 55px rgba(0,0,0,0.85),
    0 0 0 1px rgba(15,23,42,0.8);
  transform: translateY(0) scale(1);
  transition:
    transform .26s ease,
    box-shadow .26s ease,
    border-color .26s ease;
  position: relative;
  overflow: hidden;
}

/* tiny glow circle in top-right of map card */
.map-card::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(56,189,248,0.45), transparent 70%);
  opacity: 0.6;
  pointer-events: none;
}

/* hover on example flow card */
.map-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.95),
    0 0 0 1px rgba(15,23,42,1);
  border-color: rgba(255,255,255,0.15);
}

.map-title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.map-steps {
  padding-left: 18px;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.map-steps li {
  margin-bottom: 4px;
}

.map-meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 6px;
}

.map-link {
  font-size: 0.82rem;
  color: var(--accent-blue);
  text-decoration: none;
}

.map-link:hover {
  text-decoration: underline;
}

/* responsive layout for this section */
@media (max-width: 980px) {
  .corridors-inner {
    grid-template-columns: 1fr;
  }
}


/* subtle inner border for extra depth */
.feature-card::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.05);
  pointer-events: none;
}

/* Hover: light zoom + lift (3D feel) */
.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 32px 80px rgba(0,0,0,0.95),
    0 0 0 1px rgba(15,23,42,1);
}

.corridors { margin-top: 14px; }
.corridors-title {
  font-weight:700;
  margin-bottom:10px;
  color:var(--muted);
  font-size:0.95rem;
}

/* changed to GRID for clean alignment */
.corridor-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

/* each pill card */
.corridor-item {
  display:flex;
  align-items:center;
  gap:10px;
  background: rgba(10,16,22,0.55);
  padding:10px 14px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,0.03);
  box-shadow: 0 12px 30px rgba(0,0,0,0.6);
}

/* round badge */
.currency-badge {
  width:34px;
  height:34px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:0.85rem;
  flex-shrink:0;
  border:1px solid rgba(255,255,255,0.06);
}

/* currency color samples */
.currency-IN { background: linear-gradient(135deg,#f97316,#facc15); color:#020617; }
.currency-US { background: linear-gradient(135deg,#0ea5e9,#0284c7); }
.currency-GB { background: linear-gradient(135deg,#7c3aed,#4f46e5); }
.currency-EU { background: linear-gradient(135deg,#06b6d4,#3b82f6); }
.currency-AE { background: linear-gradient(135deg,#f97316,#f43f5e); }
.currency-AU { background: linear-gradient(135deg,#06b6d4,#10b981); }
.currency-CA { background: linear-gradient(135deg,#ef4444,#fb923c); }

.corridor-text {
  display:flex;
  flex-direction:column;
  gap:2px;
}
.corridor-line {
  font-weight:700;
  font-size:0.95rem;
  letter-spacing:0.02em;
}
.corridor-sub {
  color:var(--muted);
  font-size:0.86rem;
}

.corridor-item:hover {
  transform: translateY(-6px);
  transition: transform .25s ease;
  box-shadow: 0 30px 70px rgba(0,0,0,0.75);
}

/* GRID & REVIEWS */
.grid { display:grid; gap:18px; }
.reviews-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.review-card { padding: 16px 18px; }

/* FX SECTION */

/* ================= FX SECTION – ticket style, different from above cards ================= */

.fx-section {
  padding: 90px 0 96px;
  background:
    radial-gradient(circle at 15% 0%,   rgba(56,189,248,0.28), transparent 55%),
    radial-gradient(circle at 85% 100%, rgba(245,158,11,0.28), transparent 55%),
    #020617;
}

/* center the content as one big ticket */
.fx-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: stretch;
}

/* small intro block – no glass, just text */
.fx-text {
  background: transparent;
  box-shadow: none;
  border: none;
  padding: 0;
  text-align: left;
}

.fx-text h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  margin-bottom: 4px;
}

.fx-text p {
  color: var(--muted);
  margin-bottom: 8px;
}

.fx-list {
  list-style: disc;
  padding-left: 18px;
  font-size: 0.9rem;
  color: var(--muted);
  margin-top: 4px;
}

/* main FX ticket card */
.fx-example-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 0%,   rgba(56,189,248,0.24), transparent 55%),
    radial-gradient(circle at 100% 100%, rgba(245,158,11,0.22), transparent 55%),
    linear-gradient(135deg, #020617, #020617 45%, #020617 100%);
  border-radius: 26px;
  padding: 22px 26px;
  border: 1px solid rgba(148,163,184,0.55);
  box-shadow:
    0 26px 80px rgba(0,0,0,0.96),
    0 0 0 1px rgba(15,23,42,0.9);
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
  gap: 22px;
  align-items: flex-start;
  transform: translateY(-4px);
  transition:
    transform 260ms cubic-bezier(.18,.88,.32,1.08),
    box-shadow 260ms ease,
    border-color 200ms ease;
}

/* soft light wash inside the ticket */
.fx-example-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,0.08), transparent 60%);
  opacity: .6;
  mix-blend-mode: screen;
  pointer-events: none;
}

.fx-example-card:hover {
  transform: translateY(-14px) scale(1.01);
  box-shadow:
    0 40px 110px rgba(0,0,0,1),
    0 0 0 1px rgba(248,250,252,0.16);
  border-color: rgba(248,250,252,0.42);
}

/* left column: main line + breakdown list */
.fx-example-card .fx-main-line {
  font-size: 0.95rem;
  margin: 4px 0 10px;
}

.fx-example-card .fx-breakdown {
  list-style: none;
  padding-left: 0;
  border-left: 1px solid rgba(148,163,184,0.35);
  margin: 0;
  padding: 4px 0 4px 14px;
  font-size: 0.86rem;
  color: var(--muted);
}

.fx-example-card .fx-breakdown li + li {
  margin-top: 4px;
}

/* right column: tag + key numbers naturally fall here */
.fx-example-card .tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(56,189,248,0.1);
  color: var(--accent-blue);
  border: 1px solid rgba(56,189,248,0.7);
  margin-bottom: 6px;
}

/* disclaimer runs across the bottom of the whole ticket */
.fx-example-card p:last-child {
  grid-column: 1 / -1;
  margin-top: 10px;
  font-size: 0.78rem;
  color: var(--muted);
  opacity: 0.9;
}

/* stack layout on mobile */
@media (max-width: 840px) {
  .fx-example-card {
    grid-template-columns: 1fr;
    padding: 18px 16px;
  }
}


/* FAQ */
.faq-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap:18px; }
.faq-item { padding: 16px 18px; }

/* FORM/CONTACT */
/* ===== EARLY ACCESS / CONTACT STRIP (NEW) ===== */

.contact-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0 110px;   /* more hero height */
  background: #020308;
}

/* 3D tape */
.contact-section::after {
  content: "";
  position: absolute;
  left: -25%;
  right: -25%;
  top: 16%;
  height: 260px;
  background: linear-gradient(
    100deg,
    rgba(15,23,42,0.98),
    rgba(30,64,175,0.96),
    rgba(124,45,18,0.98)
  );
  transform: skewY(-5deg);
  filter: drop-shadow(0 28px 80px rgba(0,0,0,0.9));
  opacity: 0.9;
  pointer-events: none;
  z-index: 0;
}


/* subtle moving glow behind the tape */
.contact-section::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    radial-gradient(circle at 0% 0%, rgba(56,189,248,0.14), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(245,158,11,0.18), transparent 65%);
  mix-blend-mode: screen;
  opacity: 0.55;
  z-index: 0;
  animation: contactGlow 16s ease-in-out infinite alternate;
}

@keyframes contactGlow {
  0%   { transform: translate3d(-4%, -2%, 0) scale(1); }
  50%  { transform: translate3d(3%, 4%, 0) scale(1.05); }
  100% { transform: translate3d(-2%, 1%, 0) scale(1.02); }
}

/* tape itself gently drifting left/right */
@keyframes tapeDrift {
  0%   { transform: translateX(0) skewY(-6deg); }
  50%  { transform: translateX(-3%) skewY(-6deg); }
  100% { transform: translateX(0) skewY(-6deg); }
}
.contact-section::after {
  animation: tapeDrift 18s ease-in-out infinite;
}


.download-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(0, 3fr);
  gap: 36px;
  align-items: center;   /* center vertically */
}


/* LEFT SIDE COPY */
.download-left h2 {
  font-size: clamp(1.7rem, 2.4vw, 2.1rem);
  margin-bottom: 10px;
}

.download-tagline {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 460px;
  margin-bottom: 16px;
}

.download-pill {
  margin-bottom: 10px;
  font-size: 0.7rem;
}

.download-points {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  font-size: 0.9rem;
  color: var(--muted);
}
.download-points li {
  margin-bottom: 6px;
}

/* avatar / people hint */
.download-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--muted);
}

.avatar-stack {
  position: relative;
  width: 70px;
  height: 28px;
}
.avatar-stack .bubble {
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 2px solid #020617;
  box-shadow: 0 10px 25px rgba(0,0,0,0.75);
}
.bubble-1 {
  left: 0;
  top: 1px;
  background: linear-gradient(135deg,#0ea5e9,#22d3ee);
}
.bubble-2 {
  left: 20px;
  top: -1px;
  background: linear-gradient(135deg,#f97316,#facc15);
}
.bubble-3 {
  left: 40px;
  top: 2px;
  background: linear-gradient(135deg,#22c55e,#a3e635);
}

/* RIGHT SIDE: form card with 3D effect */
.download-right {
  display: flex;
  justify-content: flex-end;
}

.download-form {
  position: relative;
  width: 100%;
  max-width: 460px;
  padding: 18px 18px 20px;
  border-radius: 20px;
  background: radial-gradient(circle at 0 0, rgba(255,255,255,0.06), rgba(15,23,42,0.98));
  border: 1px solid rgba(148,163,184,0.25);
  box-shadow:
    0 26px 70px rgba(0,0,0,0.95),
    0 0 0 1px rgba(15,23,42,0.9);
  transform: translateY(-6px) scale(1.01);
  transition: transform .3s cubic-bezier(.19,1,.22,1),
              box-shadow .3s cubic-bezier(.19,1,.22,1);
}

/* glowing border ring */
.download-form::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg,#f97316,#facc15,#38bdf8);
  opacity: 0.12;
  z-index: -1;
}

.download-form:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow:
    0 40px 110px rgba(0,0,0,1),
    0 0 0 1px rgba(15,23,42,1);
}

/* form header text */
.download-form-header {
  margin-bottom: 14px;
}
.form-tag {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(15,23,42,0.95);
  border: 1px solid rgba(148,163,184,0.6);
  color: var(--muted);
  margin-bottom: 6px;
}
.download-form-header p {
  font-size: 0.8rem;
  color: var(--muted);
}


.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-field {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.form-field label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.form-field input,
.form-field textarea {
  font-family: inherit;
  font-size: 0.9rem;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(148,163,184,0.5);
  background: radial-gradient(circle at 0 0,
              rgba(255,255,255,0.03),
              rgba(15,23,42,1));
  color: var(--text);
  outline: none;
  transition:
    border-color .18s ease,
    box-shadow .18s ease,
    background .18s ease,
    transform .12s ease;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(148,163,184,0.8);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(248, 250, 252, 0.9);
  box-shadow:
    0 0 0 1px rgba(248,250,252,0.2),
    0 16px 40px rgba(15,23,42,0.9);
  background: radial-gradient(circle at 0 0,
              rgba(56,189,248,0.18),
              rgba(15,23,42,1));
  transform: translateY(-1px);
}

.form-field textarea {
  resize: vertical;
  min-height: 80px;
  max-height: 200px;
}

@media (max-width: 640px) {
  .form-row {
    flex-direction: column;
  }
}


/* ===== Laptop frame around the form — v2 🔥 ===== */

.laptop-shell {
  position: relative;
  width: 100%;
  max-width: 520px;
  perspective: 1400px;
}

/* soft shadow under the laptop */
.laptop-shadow {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: -14px;
  height: 32px;
  background: radial-gradient(ellipse at center, rgba(0,0,0,0.9), transparent 70%);
  filter: blur(6px);
  opacity: 0.95;
  z-index: 0;
}

.laptop-body {
  position: relative;
  transform-style: preserve-3d;
  transform: rotateX(20deg) rotateY(-14deg) translateY(-10px);
  transition:
    transform .6s cubic-bezier(.19,1,.22,1),
    box-shadow .6s cubic-bezier(.19,1,.22,1);
}

/* hover tilt = feels like real device */
.laptop-shell:hover .laptop-body {
  transform: rotateX(14deg) rotateY(-4deg) translateY(-4px);
}

/* glowing bezels + screen */
.laptop-screen {
  position: relative;
  background:
    radial-gradient(circle at 0 0, rgba(56,189,248,0.18), rgba(15,23,42,1));
  border-radius: 18px 18px 12px 12px;
  padding: 12px;
  box-shadow:
    0 26px 70px rgba(0,0,0,1),
    0 0 0 1px rgba(15,23,42,0.9);
  transform: translateZ(52px);
}

/* small top camera + status bar */
.laptop-screen::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 54px;
  height: 6px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(15,23,42,0.9);
  box-shadow: 0 0 10px rgba(15,23,42,0.9);
}

/* inside the screen we reuse your form but flatter */
.laptop-screen .download-form {
  background: radial-gradient(circle at 0 0, rgba(255,255,255,0.05), rgba(15,23,42,0.98));
  border-radius: 14px;
  border: 1px solid rgba(148,163,184,0.4);
  padding: 14px 16px 16px;
  box-shadow:
    0 18px 46px rgba(15,23,42,0.95),
    0 0 0 1px rgba(15,23,42,1);
  transform: none;
}

/* remove outer glow helper from base class */
.laptop-screen .download-form::before {
  display: none;
}

/* laptop hinge */
.laptop-hinge {
  height: 8px;
  margin: 0 auto;
  width: 78%;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg,#020617,#1f2937,#020617);
  box-shadow: 0 6px 16px rgba(0,0,0,0.9);
  transform: translateZ(24px) translateY(4px);
}

/* laptop base / keyboard slab */
.laptop-base {
  position: relative;
  height: 22px;
  width: 100%;
  margin: 0 auto;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg,#020617,#020617,#000);
  box-shadow:
    0 18px 40px rgba(0,0,0,1),
    0 0 0 1px rgba(15,23,42,0.95);
  transform: translateZ(10px) translateY(6px);
}

/* subtle highlight strip on the base front edge */
.laptop-base::before {
  content: "";
  position: absolute;
  inset: 0 14%;
  border-radius: inherit;
  border-top: 1px solid rgba(148,163,184,0.55);
  opacity: 0.7;
}

/* mobile tweaks: reduce tilt + width */
@media (max-width: 980px) {
  .laptop-shell {
    max-width: 100%;
    margin-top: 10px;
  }
  .laptop-body {
    transform: rotateX(16deg) rotateY(0deg) translateY(-6px);
  }
}

@media (max-width: 640px) {
  .laptop-body {
    transform: rotateX(14deg) rotateY(0deg) translateY(-4px);
  }
}







/* FOOTER */


/* ========== COMING SOON HERO (big cinematic bottom section) ========== */

.coming-soon-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 120px;
  background:
    radial-gradient(circle at 0% 0%,   rgba(56,189,248,0.26), transparent 60%),
    radial-gradient(circle at 100% 100%, rgba(245,158,11,0.26), transparent 60%),
    #020308;
}

/* tall dark “panels” like a stage, animated very slowly */
.coming-soon-hero::before,
.coming-soon-hero::after {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    linear-gradient(120deg, rgba(15,23,42,0.96) 20%, transparent 50%) 0 0 / 22% 100% repeat-x,
    linear-gradient(240deg, rgba(15,23,42,0.96) 25%, transparent 55%) 0 0 / 28% 100% repeat-x;
  opacity: 0.85;
  mix-blend-mode: multiply;
  pointer-events: none;
  animation: comingPanels 32s linear infinite;
}

@keyframes comingPanels {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(-4%); }
  100% { transform: translateX(0); }
}

.coming-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr); /* more centered */
  gap: 40px;
  align-items: center;
}

/* LEFT SIDE COPY */
.coming-copy h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  margin-bottom: 12px;
}

.coming-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  margin-bottom: 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border: 1px solid rgba(148,163,184,0.65);
  color: var(--muted);
  background: rgba(15,23,42,0.95);
}

.coming-tagline {
  color: var(--muted);
  font-size: 0.94rem;
  max-width: 520px;
  margin-bottom: 14px;
}

.coming-points {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  font-size: 0.9rem;
  color: var(--muted);
}
.coming-points li + li { margin-top: 4px; }

.coming-cta-pill {
  border: none;
  outline: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: radial-gradient(circle at 0 0, rgba(56,189,248,0.5), rgba(15,23,42,1));
  border: 1px solid rgba(148,163,184,0.5);
  color: #e5e7eb;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: default;
  box-shadow: 0 14px 40px rgba(0,0,0,0.9);
  position: relative;
}

.dot-live {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34,197,94,0.9);
  animation: pulseLive 1.6s ease-in-out infinite;
}

@keyframes pulseLive {
  0%   { transform: scale(1);   opacity: 1;   }
  50%  { transform: scale(1.4); opacity: 0.45;}
  100% { transform: scale(1);   opacity: 1;   }
}

/* RIGHT SIDE ORBIT VISUAL */
.coming-visual {
  display: flex;
  justify-content: center;
}

.coming-orbit {
  position: relative;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, #020617, #020617 55%, #000 100%);
  box-shadow:
    0 26px 80px rgba(0,0,0,1),
    0 0 0 1px rgba(15,23,42,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* concentric rings */
.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(148,163,184,0.35);
}
.ring-1 { width: 65%; height: 65%; }
.ring-2 { width: 82%; height: 82%; }
.ring-3 { width: 100%; height: 100%; border-style: solid; border-color: rgba(15,23,42,0.9); }

/* currency chips */
.orbit-chip {
  position: absolute;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  color: #0b1120;
  box-shadow: 0 10px 26px rgba(0,0,0,0.9);
  background: #e5e7eb;
  animation: spinOrbit 16s linear infinite;
  transform-origin: 50% 110px; /* matches radius approx */
}

@keyframes spinOrbit {
  0%   { transform: rotate(0deg) translateY(-110px) rotate(0deg); }
  100% { transform: rotate(360deg) translateY(-110px) rotate(-360deg); }
}

/* give each chip its start angle + color */
.chip-inr {
  background: linear-gradient(135deg,#f97316,#facc15);
  animation-delay: 0s;
}
.chip-usd {
  background: linear-gradient(135deg,#0ea5e9,#22d3ee);
  animation-delay: -4s;
}
.chip-eur {
  background: linear-gradient(135deg,#6366f1,#a855f7);
  animation-delay: -8s;
}
.chip-gbp {
  background: linear-gradient(135deg,#22c55e,#a3e635);
  animation-delay: -12s;
}

/* ====== RESPONSIVE COMING SOON ====== */

@media (min-width: 1024px) {
  .coming-soon-hero {
    min-height: 100vh;       /* fill screen */
    display: flex;
    align-items: center;
    padding-top: 96px;
    padding-bottom: 110px;
  }

  .coming-inner {
    max-width: 1100px;
    margin-inline: auto;     /* center the two columns */
  }
}

@media (max-width: 900px) {
  .coming-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .coming-visual {
    justify-content: flex-start;
  }
}

@media (max-width: 600px) {
  .coming-soon-hero {
    padding: 72px 0 80px;
  }
}

/* so nav scroll to #comingSoon doesn’t hide behind navbar */
#comingSoon {
  scroll-margin-top: 80px;
}








.footer {
  border-top: 1px solid rgba(55, 65, 81, 0.9); padding: 16px 0 22px; background: #020617;
}
.footer-inner { display:flex; align-items:center; justify-content:space-between; gap:12px; font-size:0.8rem; color:var(--muted); }
.footer-links { display:flex; gap:12px; }

/* SCROLL & VISIBILITY HOOKS */
body.scrolled .navbar { box-shadow: 0 14px 40px rgba(0, 0, 0, 0.75); }
.nav-links a.active { color: var(--text); background: rgba(15,23,42,0.95); border-color: rgba(245, 158, 11, 0.9); }

/* REVEAL – sections that fade/slide in on scroll */
.hero-left,
.hero-right,
.section-header,
.glass,
.coming-copy,
.coming-visual {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease-out, transform .55s ease-out;
}

/* class added by JS */
.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* small stagger so coming-soon feels nicer */
.coming-copy {
  transition-delay: 0.05s;
}
.coming-visual {
  transition-delay: 0.18s;
}


/* MISC ANIMATIONS */
.fx-pulse { transform: scale(1.03); text-shadow: 0 0 14px rgba(245,158,11,0.6); transition: transform .15s ease; }
.txn-row.new { animation: txnFlash 1s ease; }
@keyframes txnFlash { 0%{background:rgba(255,255,255,0.03);transform:translateY(-4px);}70%{background:transparent;transform:translateY(0);}100%{background:transparent;transform:translateY(0);} }

/* CURRENCY DOODLES (floating) */
.feature-doodle {
  pointer-events: none;
}

.currency-doodles { position:absolute; inset:0; pointer-events:none; display:flex; justify-content:space-around; align-items:center; z-index:0; }
.currency-doodles .cur { width:60px; opacity:0.22; filter:drop-shadow(0 6px 12px rgba(0,0,0,0.4)); animation: floatCurrency 6s ease-in-out infinite; }
@keyframes floatCurrency { 0%{transform:translateY(0);opacity:0.18}50%{transform:translateY(-14px);opacity:0.30}100%{transform:translateY(0);opacity:0.18} }

/* RESPONSIVE */
@media (max-width: 980px) {
  .hero-inner, .corridors-inner, .fx-inner, .download-inner { grid-template-columns: 1fr; }
  .phone-frame { width: 320px; animation: none; transform: none; }
  .feature-gradient { height: 180px; }
  .corridor-item { min-width: 170px; }
}

@media (max-width: 780px) {
  .nav-links { display: none; } /* simple mobile: hide nav — replace with hamburger later */
  .section { padding: 48px 0; }
  .phone-frame { width: 260px; }
}

@media (max-width: 480px) {
  .phone-frame { width: 240px; }
  .hero { padding-top: 40px; }
}

@media (max-width: 980px) {
  .phone-frame { width: 310px; }
}

@media (max-width: 780px) {
  .phone-frame { width: 260px; }
}

@media (max-width: 480px) {
  .phone-frame { width: 240px; }
}


/* make gradient pill sit above everything below it */

.feature-layout {
  position: relative;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* doodle pill */
.feature-gradient {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  border-radius: 26px;
  padding: 40px 30px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  box-shadow: 0 26px 70px rgba(0,0,0,0.95);
  margin-top: 40px;
}

/* card below – push it down a bit more, stronger depth */
.feature-card {
  max-width: 920px;
  width: 100%;
  margin: 32px auto 0;
  padding: 22px 24px 20px;
  border-radius: 22px;
  background: radial-gradient(circle at 0 0, rgba(255,255,255,0.06), rgba(15,23,42,0.98));
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.95),
    0 0 0 1px rgba(15,23,42,0.9);
  position: relative;
  z-index: 2;
  transform: translateY(0) scale(1);
  transition:
    transform .28s ease,
    box-shadow .28s ease;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.04);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 40px 110px rgba(0,0,0,1),
    0 0 0 1px rgba(15,23,42,1);
}


.feature-gradient {
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
  border-radius: 26px;
  padding: 40px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;          /* spacing between icons */
  height: auto;
  overflow: visible;
}

.feature-doodle {
  position: relative !important;
  width: 120px;
  height: auto;
  opacity: 0.35;
  transition: 
      transform .35s ease,
      opacity .35s ease,
      filter .35s ease;
  
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.45));
  border-radius: 16px;
}

.feature-doodle:hover {
  transform: translateY(-10px) scale(1.08) rotate(-3deg);
  opacity: 0.9;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,0.65));
}

@keyframes floatDoodle2 {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

.feature-doodle {
  animation: floatDoodle2 6s ease-in-out infinite;
}

.feature-doodle:nth-child(odd) {
  animation-duration: 7s;
  animation-delay: .5s;
}



/* === OTTO FEATURE DOODLES – FINAL LOOK === */
.feature-gradient {
  /* keep your glass look, just ensure layout */
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  border-radius: 26px;
  padding: 40px 30px;
  background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(18px);
  overflow: visible;
}

/* base doodle style – bright & interactive */
.feature-doodle {
  position: relative !important;
  width: 130px;
  height: auto;
  opacity: 0.9 !important;           /* 🔥 almost fully visible by default */
  pointer-events: auto !important;   /* enable hover/click on ALL cards */
  border-radius: 16px;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.55));
  transition:
    transform .35s ease,
    opacity .35s ease,
    filter .35s ease;
  animation: floatDoodle2 6s ease-in-out infinite;
}

/* hover highlight */
.feature-doodle:hover {
  transform: translateY(-10px) scale(1.08) rotate(-3deg);
  opacity: 1 !important;             /* fully bright on hover */
  filter: drop-shadow(0 16px 26px rgba(0,0,0,0.8));
}

/* gentle float */
@keyframes floatDoodle2 {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

/* tiny variation so they don't move in perfect sync */
.feature-doodle:nth-child(odd) {
  animation-duration: 7s;
  animation-delay: .4s;
}

/* ===== MAKE COMING SOON FULL-SCREEN ON DESKTOP ===== */

@media (min-width: 1024px) {
  .coming-soon-hero {
    min-height: 100vh;          /* take full screen height */
    display: flex;              /* center the grid vertically */
    align-items: center;
    padding-top: 96px;          /* adjust if it feels too tight */
    padding-bottom: 110px;
  }

  .coming-inner {
    width: 100%;
  }
}

/* so when you scroll via nav, it doesn't hide under navbar */
#comingSoon {
  scroll-margin-top: 80px;
}

/* === HERO PHONE – iPhone 15-style shell (override) === */

.phone-frame {
  position: relative;
  z-index: 4;
  width: 360px;
  padding: 18px;
  border-radius: 46px; /* rounder = iPhone look */
  background: radial-gradient(circle at 0 0, #111827, #020617 65%);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 1),
    0 0 0 1px rgba(15, 23, 42, 0.9);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: floatY 7s ease-in-out infinite;
}

/* metallic rim around the device */
.phone-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 46px;
  background: linear-gradient(135deg, #9ca3af, #020617, #4b5563);
  mix-blend-mode: screen;
  opacity: 0.35;
  pointer-events: none;
}

/* side button (volume) */
.phone-frame::after {
  content: "";
  position: absolute;
  left: -3px;
  top: 120px;
  width: 4px;
  height: 62px;
  border-radius: 999px;
  background: #020617;
  box-shadow: 0 0 0 1px rgba(31, 41, 55, 0.9);
}

/* dynamic-island notch bar */
.phone-top {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 32px;
  border-radius: 999px;
  background: #020617;
  box-shadow:
    0 0 0 1px rgba(15,23,42,0.9),
    0 10px 24px rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 18px;
}

/* camera dot inside the island */
.notch-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #111827, #020617 65%, #000);
  box-shadow:
    0 0 0 2px #020617,
    0 0 10px rgba(15,23,42,0.9);
}

/* inner screen with thicker bezel, content stays same */
.phone-body {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  padding: 52px 14px 14px; /* extra top space below island */
  background:
    radial-gradient(circle at 0% 100%, rgba(245,158,11,0.25), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(56,189,248,0.25), transparent 55%),
    #020617;
  border: 1px solid #000;
  box-shadow:
    inset 0 0 0 2px #020617,
    inset 0 0 0 1px rgba(15,23,42,0.9);
}

.phone-body::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 30px;
  border: 1px solid rgba(148,163,184,0.35);
  opacity: 0.45;
  pointer-events: none;
}

/* responsive sizes for the shell */
@media (max-width: 980px) {
  .phone-frame {
    width: 320px;
    animation: none;
    transform: none;
  }
}

@media (max-width: 480px) {
  .phone-frame {
    width: 260px;
  }
}


/* ===== iPhone-style hero phone — overrides ===== */

.hero-right .phone-frame {
  width: 360px;
  padding: 6px 6px 10px;
  border-radius: 40px;
  background: radial-gradient(circle at 0 0, rgba(255,255,255,0.10), rgba(15,23,42,1));
  box-shadow:
    0 36px 90px rgba(0,0,0,1),
    0 0 0 1px rgba(15,23,42,0.95);
}

.hero-right .phone-frame::before {
  inset: 1px;
  border-radius: 40px;
}

/* thinner inner bezel */
.hero-right .phone-body {
  border-radius: 32px;
  padding: 14px 14px 18px;
}

/* space for the Dynamic Island */
.hero-right .phone-top {
  height: 34px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 10px;
}

/* Dynamic Island */
.hero-right .notch-dot {
  margin-top: 6px;
  width: 120px;
  height: 30px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 15%, #111827, #020617 70%);
  box-shadow:
    0 0 0 1px rgba(15,23,42,1),
    0 10px 24px rgba(0,0,0,0.9);
  position: relative;
}

/* camera + sensor inside island */
.hero-right .notch-dot::before,
.hero-right .notch-dot::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.hero-right .notch-dot::before {
  /* camera */
  width: 10px;
  height: 10px;
  left: 18px;
  top: 10px;
  background: radial-gradient(circle, #22c55e, #052e16);
}

.hero-right .notch-dot::after {
  /* sensor shine */
  width: 34px;
  height: 14px;
  right: 18px;
  top: 8px;
  background: radial-gradient(circle at 0 50%, rgba(248,250,252,0.22), transparent 70%);
  opacity: 0.7;
}


/* === Fix phone proportions (narrow, tall, iPhone-like) === */
.hero-right .phone-frame {
  width: 280px !important;      /* 🔥 MUCH slimmer */
  height: 560px !important;     /* taller like iPhone */
  padding: 6px 6px 14px !important;
}

/* inside screen fits the new narrow dimensions */
.hero-right .phone-body {
  border-radius: 30px !important;
  padding: 10px !important;
  height: 100%;
  overflow: hidden;
}

/* fix dynamic island position after resizing */
.hero-right .phone-top {
  height: 42px !important;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 8px;
}

/* ensure UI inside scales better */
.hero-right .balance-card,
.hero-right .quick-actions,
.hero-right .fx-card,
.hero-right .txn-list {
  transform: scale(0.92);           /* slightly shrink content */
  transform-origin: top center;
}


/* === iPhone-style dynamic island (fixed) === */

/* the top spacer should not create that big grey forehead */
.hero-right .phone-top {
  height: 0;              /* no visible bar */
  margin-bottom: 0;
}

/* make the notch sit inside the phone, floating over the screen */
.hero-right .notch-dot {
  position: absolute;
  top: 18px;              /* distance from top of outer frame */
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 22px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 25% 30%, #020617, #000 70%);
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.95),
    0 12px 26px rgba(0, 0, 0, 0.95);
  z-index: 15;
}

/* === iPhone-style Dynamic Island drawn on the screen === */

.phone-body {
  position: relative; /* already there but safe */
}

.phone-body::before {
  content: "";
  position: absolute;
  top: 15px;                 /* tiny bit lower so it floats nicely */
  left: 50%;
  transform: translateX(-50%);
  
  width: 68px;               /* smaller width */
  height: 16px;              /* smaller height */
  border-radius: 999px;

  background:
    radial-gradient(circle at 40% 40%, #020617, #000 85%);
  
  box-shadow:
    0 0 0 1px rgba(15, 23, 42, 0.75),
    0 8px 16px rgba(0, 0, 0, 0.75);

  z-index: 20;
}