/* ═══════════════════════════════════════════════
   EFAZONE / EBC  —  Design System
   Google Material You × Editorial Large Type
   ═══════════════════════════════════════════════ */

:root {
  /* Palette */
  --ink:       #0a1628;
  --ink-2:     #1e3352;
  --ink-sub:   #4a6080;
  --ink-faint: #8fa6c0;
  --blue:      #1a6ef5;
  --blue-dark: #0d4ccc;
  --blue-glow: rgba(26,110,245,0.22);
  --teal:      #00cdb8;
  --surface:   #ffffff;
  --surface-2: #f1f7ff;
  --surface-3: #e6f0ff;
  --border:    rgba(26,110,245,0.13);
  --shadow-sm: 0 2px 8px rgba(10,22,40,0.07);
  --shadow-md: 0 8px 28px rgba(10,22,40,0.12);
  --shadow-lg: 0 20px 60px rgba(10,22,40,0.16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── RESET ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img, video { display: block; max-width: 100%; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: none; }
a { color: inherit; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface-2);
  overflow-x: hidden;
}

/* ─── SKIP LINK ──────────────────────────────── */
.skip-link {
  position: absolute; top: -10rem; left: 1rem; z-index: 9999;
  background: #ffd166; color: #111; font-weight: 800;
  padding: .6rem 1.1rem; border-radius: 8px; text-decoration: none;
}
.skip-link:focus { top: 1rem; }

/* ─── CONTAINER ──────────────────────────────── */
.container { width: min(1180px, 92vw); margin-inline: auto; }

:focus-visible {
  outline: 3px solid #ffd166;
  outline-offset: 3px;
}

/* ─── TYPOGRAPHY ─────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 1.1rem;
}

.section-body {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--ink-sub);
  max-width: 60ch;
  margin-bottom: 2rem;
}

/* ─── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  border-radius: 999px; font-weight: 800; font-size: 1rem;
  padding: .82rem 1.6rem; text-decoration: none; border: 2px solid transparent;
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out), background 200ms ease;
  white-space: nowrap;
}
.btn:hover   { transform: translateY(-2px); }
.btn:active  { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid #ffd166; outline-offset: 3px; }

.btn-filled  { background: var(--blue); color: #fff; box-shadow: 0 8px 24px var(--blue-glow); }
.btn-filled:hover { background: var(--blue-dark); box-shadow: 0 14px 32px var(--blue-glow); }
.btn-ghost   { color: var(--ink); border-color: var(--border); background: rgba(255,255,255,.7); }
.btn-ghost:hover { background: #fff; border-color: rgba(26,110,245,.28); }
.btn-lg      { padding: 1rem 2rem; font-size: 1.08rem; }
.btn-nav     { padding: .64rem 1.2rem; font-size: .93rem; }

.register-fab {
  position: fixed;
  right: max(.85rem, env(safe-area-inset-right));
  bottom: max(.85rem, env(safe-area-inset-bottom));
  z-index: 260;
  display: none;
  padding: .78rem 1.08rem;
  font-size: .9rem;
  line-height: 1;
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(10,22,40,.24);
  animation: fabFloat 1.8s ease-in-out infinite;
}

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

/* ─── HEADER ─────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(248,251,255,.86);
  backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid rgba(26,110,245,.1);
  transition: box-shadow 240ms;
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 84px; gap: 1.1rem;
  padding: .6rem 0;
}

.brand {
  display: inline-flex; align-items: center;
  text-decoration: none; color: var(--ink);
  min-width: fit-content;
}

.site-header .brand img {
  width: 92px;
  height: 92px;
  padding: 0;
  border-radius: 18px;
  object-fit: contain;
  background: transparent;
  border: none;
  box-shadow: none;
}

.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid rgba(26,110,245,.12);
  background: rgba(255,255,255,.86);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}

.mobile-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: calc(100% + .5rem);
  right: 0;
  z-index: 240;
  min-width: 180px;
  padding: .4rem;
  border-radius: 14px;
  border: 1px solid rgba(26,110,245,.14);
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 30px rgba(10,22,40,.18);
}

.mobile-menu.open {
  display: grid;
  gap: .2rem;
}

.mobile-menu-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 .7rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: .88rem;
  font-weight: 700;
  color: var(--ink-2);
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
  color: var(--blue);
  background: rgba(26,110,245,.11);
}

.site-header nav ul {
  display: flex; gap: .35rem;
  padding: .35rem;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(26,110,245,.1);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}

.site-header nav ul a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 1rem;
  font-size: .93rem; font-weight: 700; color: var(--ink-sub);
  text-decoration: none;
  border-radius: 999px;
  transition: color 160ms, background 160ms, box-shadow 160ms;
}

.site-header nav ul a:hover,
.site-header nav ul a.active {
  color: var(--blue);
  background: rgba(26,110,245,.1);
  box-shadow: inset 0 0 0 1px rgba(26,110,245,.08);
}

/* ─── HERO ───────────────────────────────────── */
.hero-section {
  position: relative; overflow: clip;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 6vh, 6rem) 0 clamp(2.5rem, 4vh, 4rem);
  background: linear-gradient(165deg, #e8f0fe 0%, #f4f8ff 44%, #ddeeff 100%);
}

.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.blob {
  position: absolute; border-radius: 50%; filter: blur(1px);
  will-change: transform;
}
.blob-a {
  width: 580px; height: 580px;
  right: -160px; top: -140px;
  background: radial-gradient(circle at 35% 35%,
    rgba(26,110,245,.35) 0%, rgba(0,205,184,.16) 55%, transparent 75%);
  animation: blobFloat 11s ease-in-out infinite;
}
.blob-b {
  width: 380px; height: 380px;
  left: -100px; bottom: -100px;
  background: radial-gradient(circle at 40% 40%,
    rgba(0,205,184,.3) 0%, rgba(26,110,245,.12) 60%, transparent 80%);
  animation: blobFloat 9s ease-in-out infinite reverse;
}
.blob-c {
  width: 260px; height: 260px;
  left: 44%; top: 10%;
  background: radial-gradient(circle, rgba(26,110,245,.18) 0%, transparent 72%);
  animation: blobFloat 13s ease-in-out infinite;
}

@keyframes blobFloat {
  0%,100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-18px) scale(1.03); }
}

.grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(26,110,245,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,110,245,.05) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.1fr .9fr;
  align-items: center; gap: clamp(2rem, 5vw, 4rem);
}

.hero-text { display: flex; flex-direction: column; gap: .5rem; }

.label-chip {
  display: inline-flex; align-items: center;
  background: rgba(26,110,245,.1); color: var(--blue);
  font-size: .8rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; padding: .4rem .9rem;
  border-radius: 999px; border: 1px solid rgba(26,110,245,.2);
  width: fit-content;
}

h1 {
  font-size: clamp(2.4rem, min(5.5vw, 8.5vh), 5rem);
  font-weight: 800; line-height: 1.02;
  letter-spacing: -.04em; color: var(--ink);
  margin-top: .4rem;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.9vw, 1.22rem);
  color: var(--ink-sub); max-width: 58ch; margin-top: .4rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .8rem; }

.hero-chips {
  display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .6rem;
}
.hero-chips span {
  background: rgba(255,255,255,.8);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: .35rem .85rem;
  font-size: .84rem; font-weight: 700; color: var(--ink-2);
}

/* Hero card visual */
.hero-card-wrap {
  position: relative; will-change: transform;
  display: flex; flex-direction: column;
  justify-self: end;
  max-width: 540px;
}
.hero-card-glow {
  position: absolute; inset: -30px;
  background: radial-gradient(circle at 55% 50%,
    rgba(26,110,245,.22) 0%, transparent 68%);
  filter: blur(4px); z-index: 0; border-radius: 50%;
  animation: blobFloat 8s ease-in-out infinite;
}
.hero-card-img {
  position: relative; z-index: 1; width: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 28px 60px rgba(10,22,40,.22), 0 0 0 1px rgba(255,255,255,.4);
  object-fit: cover;
}
/* Scroll cue */
.scroll-cue {
  position: absolute; bottom: 1.8rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .4rem;
  z-index: 2;
}
.scroll-cue span {
  display: block; width: 1.4rem; height: 2.4rem;
  border: 2px solid rgba(26,110,245,.4); border-radius: 999px;
  position: relative;
}
.scroll-cue span::after {
  content: '';
  position: absolute; top: 5px; left: 50%; transform: translateX(-50%);
  width: 5px; height: 5px; background: var(--blue); border-radius: 50%;
  animation: scrollBob 1.6s ease-in-out infinite;
}
@keyframes scrollBob {
  0%,100% { top: 5px; opacity: 1; }
  70%      { top: 14px; opacity: .3; }
}

/* ─── MARQUEE ────────────────────────────────── */
.marquee-wrap {
  background: var(--ink);
  overflow: hidden; padding: .9rem 0;
  border-block: 1px solid rgba(255,255,255,.06);
}
.marquee-track {
  display: flex; gap: 1.8rem; width: max-content;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-size: .88rem; font-weight: 700;
  color: rgba(255,255,255,.65); letter-spacing: .06em; text-transform: uppercase;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SECTIONS BASE ──────────────────────────── */
.section { padding: clamp(4rem, 9vw, 7rem) 0; }

/* ─── ABOUT / WIN CARDS ──────────────────────── */
.wins-section { background: var(--surface); }

.wins-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1.75rem; margin-top: 2.75rem;
}

.win-card {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(155deg, #f4f9ff 0%, #eaf2ff 100%);
  border: 1px solid rgba(26,110,245,.11);
  border-radius: 32px;
  padding: 2.2rem;
  /* depth stacking shadow — layers mimic cards underneath */
  box-shadow:
    0 0 0 6px rgba(26,110,245,.04),
    0 0 0 12px rgba(26,110,245,.02),
    0 20px 50px rgba(26,110,245,.1);
  transition: transform 300ms var(--ease-out), box-shadow 300ms var(--ease-out), border-color 300ms;
  transform-style: preserve-3d;
  will-change: transform;
  cursor: default;
}

.win-card::before {
  content: '';
  position: absolute;
  inset: auto -20% -35% auto;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,110,245,.18) 0%, rgba(26,110,245,0) 72%);
  transition: transform 320ms var(--ease-out), opacity 220ms ease;
  opacity: .7;
}

.win-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.25), rgba(255,255,255,0));
  opacity: 0;
  transition: opacity 220ms ease;
}

.win-card:hover {
  box-shadow:
    0 0 0 6px rgba(26,110,245,.07),
    0 0 0 12px rgba(26,110,245,.04),
    0 30px 70px rgba(26,110,245,.2);
  border-color: rgba(26,110,245,.24);
}

.win-card:hover::before { transform: translate(-12px, -10px) scale(1.08); }
.win-card:hover::after { opacity: 1; }

.win-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: 1rem;
}

.win-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 .8rem;
  border-radius: 999px;
  background: rgba(26,110,245,.1);
  color: var(--blue);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.win-index {
  font-size: 1rem;
  font-weight: 800;
  color: rgba(26,110,245,.45);
}

.win-icon {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: .95rem;
  border-radius: 16px;
  font-size: 1.35rem;
  background: rgba(26,110,245,.12);
  border: 1px solid rgba(26,110,245,.18);
}

.win-card h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(1.5rem, 2vw, 1.95rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: .7rem;
  color: var(--ink);
}

.win-card p {
  position: relative;
  z-index: 1;
  color: var(--ink-sub);
  line-height: 1.7;
  max-width: 40ch;
}

.win-points {
  position: relative;
  z-index: 1;
  display: grid;
  gap: .42rem;
  margin-top: 1rem;
}

.win-points li {
  color: var(--ink-2);
  font-size: .93rem;
  font-weight: 600;
  line-height: 1.45;
}

.win-points li::before {
  content: '•';
  margin-right: .45rem;
  color: var(--blue);
}

/* ─── PILLARS ────────────────────────────────── */
.pillars-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #edf5ff 0%, #f7fbff 100%);
}

.pillars-section::before {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  right: -180px;
  top: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,110,245,.12) 0%, rgba(26,110,245,0) 72%);
  pointer-events: none;
}

.pillars-list {
  position: relative;
  z-index: 1;
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.pillar-row {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 1.25rem;
  padding: 1.35rem 1.4rem;
  border-radius: 26px;
  cursor: default;
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out), border-color 220ms, background 220ms;
  border: 1px solid rgba(26,110,245,.09);
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 30px rgba(26,110,245,.05);
  backdrop-filter: blur(14px);
}
.pillar-row:hover {
  background: rgba(255,255,255,.95);
  transform: translateY(-3px);
  border-color: rgba(26,110,245,.24);
  box-shadow: 0 20px 40px rgba(26,110,245,.1);
}
.pillar-num {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -.02em;
  background: linear-gradient(180deg, rgba(26,110,245,.14), rgba(26,110,245,.05));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}

.pillar-eyebrow {
  display: inline-block;
  margin-bottom: .35rem;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(26,110,245,.78);
}

.pillar-body h3 { font-size: 1.32rem; font-weight: 800; margin-bottom: .25rem; color: var(--ink); }
.pillar-body p  { color: var(--ink-sub); margin: 0; max-width: 62ch; }

.pillar-meta {
  display: flex;
  align-items: center;
  gap: .8rem;
  justify-self: end;
}

.pillar-tag {
  font-size: .78rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--blue); background: rgba(26,110,245,.1);
  padding: .45rem .85rem; border-radius: 999px;
  white-space: nowrap;
}

/* ─── IMPACT ─────────────────────────────────── */
.impact-section { background: var(--ink); color: #fff; }
.impact-section .section-label { color: var(--teal); }
.impact-section .section-title  { color: #fff; }
.impact-section .section-body   { color: rgba(255,255,255,.7); }

.impact-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.stat-row { display: flex; gap: 2.5rem; margin-top: 2rem; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-size: clamp(2.8rem, 5vw, 4rem); font-weight: 800; line-height: 1; color: #fff; letter-spacing: -.04em; }
.stat span   { font-size: .9rem; color: rgba(255,255,255,.6); margin-top: .3rem; font-weight: 600; }

.impact-img-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
  will-change: transform;
}
.impact-img-wrap img { width: 100%; height: 480px; object-fit: cover; display: block; }

/* ─── GALLERY / ECOSYSTEM ───────────────────── */
.gallery-section { background: var(--surface); }

.gallery-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.ecosystem-body { max-width: 74ch; }

/* Base card */
.g-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(180deg, #f6faff 0%, #eef5ff 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
}
.g-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

/* ── Full-width hero card: image left | text right */
.g-hero-card {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  min-height: 500px;
}

.g-hero-img { overflow: hidden; }

.g-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 600ms var(--ease-out);
}

.g-hero-card:hover .g-hero-img img { transform: scale(1.04); }

.g-hero-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.8rem;
  background: linear-gradient(155deg, #f4f9ff, #eaf3ff);
}

.g-hero-body h3 {
  font-size: clamp(1.7rem, 2.4vw, 2.3rem);
  font-weight: 800;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: .9rem;
}

.g-hero-body > p {
  color: var(--ink-sub);
  font-size: 1rem;
  line-height: 1.75;
}

/* ── Two sub-cards row */
.g-sub-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.g-card-img { overflow: hidden; }

.g-card-img img {
  width: 100%; height: 260px;
  object-fit: cover; display: block;
  transition: transform 500ms var(--ease-out);
}

.g-sub-row .g-card:hover .g-card-img img { transform: scale(1.05); }

.g-card-body { padding: 1.5rem 1.6rem 1.7rem; }

.g-tag {
  display: inline-block;
  font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); background: rgba(26,110,245,.1);
  padding: .25rem .7rem; border-radius: 999px; margin-bottom: .7rem;
}

.g-card-body h3 { font-size: 1.3rem; font-weight: 800; margin-bottom: .4rem; color: var(--ink); }
.g-card-body p  { color: var(--ink-sub); font-size: .97rem; line-height: 1.65; }

.g-points {
  display: grid;
  gap: .7rem;
  margin-top: 1.25rem;
}

.g-points li {
  position: relative;
  padding-left: 1.2rem;
  color: var(--ink-2);
  font-weight: 600;
}

.g-points li::before {
  content: '';
  position: absolute;
  left: 0; top: .72em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(26,110,245,.12);
}

/* ─── APPS ───────────────────────────────────── */
.apps-section {
  background: linear-gradient(170deg, var(--surface-3) 0%, var(--surface) 100%);
}

.apps-grid {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}

.app-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  box-shadow: var(--shadow-md);
  transition: transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
.app-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.app-header { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.2rem; }

.app-logo-frame,
.app-icon-mark {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  flex-shrink: 0;
}

.app-logo-frame {
  display: grid;
  place-items: center;
  padding: .35rem;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(235,243,255,.98));
  border: 1px solid rgba(26,110,245,.14);
  box-shadow: 0 12px 24px rgba(26,110,245,.12);
}

.app-logo-frame img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: contain;
}

.app-header h3  { font-size: 1.4rem; font-weight: 800; margin-bottom: .2rem; color: var(--ink); }
.app-sub  { font-size: .9rem; color: var(--ink-sub); font-weight: 600; }
.app-desc { color: var(--ink-sub); margin-bottom: 1.6rem; font-size: 1.02rem; }

.app-icon-mark {
  background: linear-gradient(135deg, var(--blue) 0%, var(--teal) 100%);
  color: #fff; font-size: 1.1rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 26px rgba(26,110,245,.18);
}

.app-stores { display: flex; gap: .85rem; flex-wrap: wrap; }

.store-pill {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--ink); color: #fff;
  border-radius: var(--radius-sm);
  padding: .7rem 1.1rem;
  text-decoration: none; font-weight: 700;
  box-shadow: 0 6px 18px rgba(10,22,40,.25);
  transition: transform 180ms var(--ease-out), box-shadow 180ms var(--ease-out);
}
.store-pill:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(10,22,40,.3); }
.store-pill:focus-visible { outline: 3px solid #ffd166; outline-offset: 3px; }
.store-pill svg { width: 1.15rem; height: 1.15rem; flex-shrink: 0; }
.store-pill span { display: flex; flex-direction: column; line-height: 1.2; }
.store-pill span small { font-size: .67rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; opacity: .7; }
.store-pill--sm { padding: .55rem .85rem; font-size: .88rem; }
.store-pill--sm svg { width: .95rem; height: .95rem; }

/* ─── MISSION / VISION ───────────────────────── */
.mv-section { background: var(--surface); }

.mv-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.mv-card {
  border-radius: var(--radius-lg);
  padding: 3rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  background: linear-gradient(160deg, var(--surface-2) 0%, #fff 100%);
  transition: transform 220ms var(--ease-out);
}
.mv-card:hover { transform: translateY(-4px); }
.mv-card--accent {
  background: linear-gradient(145deg, var(--blue) 0%, var(--blue-dark) 100%);
  border-color: transparent;
  color: #fff;
}
.mv-card--accent .section-label { color: rgba(255,255,255,.78); }
.mv-card--accent h2 { color: #fff; }

.mv-card--accent .mv-copy,
.mv-card--accent p  { color: rgba(255,255,255,.92); }

.mv-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 1.15rem;
  border-radius: 16px;
  background: rgba(26,110,245,.1);
  color: var(--blue);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.mv-card--accent .mv-icon {
  background: rgba(255,255,255,.14);
  color: #fff;
}

.mv-card h2 {
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 800; line-height: 1.18;
  letter-spacing: -.02em;
  margin: .6rem 0 1rem;
}

.mv-card p { color: var(--ink-sub); font-size: 1.04rem; line-height: 1.7; }

.mv-copy {
  max-width: 36ch;
  font-weight: 500;
}

.mv-card.mv-card--accent p,
.mv-card.mv-card--accent .mv-copy {
  color: rgba(255,255,255,.92);
}

/* ─── FAQ ────────────────────────────────────── */
.faq-section { background: var(--surface-2); }

.faq-inner {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.faq-head { position: sticky; top: 100px; }

.faq-list { display: flex; flex-direction: column; gap: .6rem; }

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: box-shadow 180ms;
}
.faq-item:has([aria-expanded="true"]) {
  box-shadow: var(--shadow-md);
  border-color: rgba(26,110,245,.3);
}

.faq-btn {
  width: 100%; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.35rem 1.5rem;
  font-size: 1.08rem; font-weight: 700; color: var(--ink);
  transition: color 160ms;
}
.faq-btn:hover { color: var(--blue); }
.faq-btn:focus-visible { outline: 3px solid #ffd166; outline-offset: -3px; }
.faq-btn::after {
  content: '+';
  font-size: 1.5rem; font-weight: 300;
  color: var(--blue); flex-shrink: 0;
  transition: transform 240ms var(--ease-out);
}
.faq-btn[aria-expanded="true"]::after { transform: rotate(45deg); }

.faq-answer {
  padding: 0 1.5rem 1.35rem;
  color: var(--ink-sub); font-size: 1.02rem; line-height: 1.7;
}
.faq-answer.open { display: block; animation: fadeDown 260ms var(--ease-out); }
@keyframes fadeDown { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:none; } }

/* ─── FOOTER ─────────────────────────────────── */
.site-footer { background: var(--ink); color: rgba(255,255,255,.75); }

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
  gap: 2.5rem;
  padding: 4rem 0 3rem;
}

.footer-brand-col .brand span { color: #fff; }
.footer-brand-col .brand img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: contain;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.15);
  padding: 4px;
}
.footer-brand-col p { font-size: .97rem; margin: 1rem 0 1.3rem; max-width: 32ch; line-height: 1.65; }

.footer-socials { display: flex; gap: .8rem; }
.footer-socials a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  transition: background 180ms, color 180ms, border-color 180ms;
}
.footer-socials a:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.footer-socials a:focus-visible { outline: 3px solid #ffd166; }

.footer-nav-col h3,
.footer-apps-col h3,
.footer-contact-col h3 {
  font-size: .8rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}

.footer-nav-col ul,
.footer-contact-col ul {
  display: flex; flex-direction: column; gap: .55rem;
}
.footer-nav-col a,
.footer-contact-col a {
  font-size: .97rem; font-weight: 600;
  color: rgba(255,255,255,.65); text-decoration: none;
  transition: color 160ms;
}
.footer-nav-col a:hover,
.footer-contact-col a:hover { color: #fff; }
.footer-nav-col a:focus-visible,
.footer-contact-col a:focus-visible { outline: 3px solid #ffd166; }

.footer-store-stack { display: flex; flex-direction: column; gap: .6rem; }
.footer-store-stack .store-pill { background: rgba(255,255,255,.08); box-shadow: none; }
.footer-store-stack .store-pill:hover { background: rgba(255,255,255,.16); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.3rem 0 2rem;
}
.footer-bottom .container {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.footer-bottom p   { font-size: .9rem; color: rgba(255,255,255,.4); }
.footer-bottom a   { font-size: .9rem; font-weight: 700; color: rgba(255,255,255,.5); text-decoration: none; transition: color 160ms; }
.footer-bottom a:hover { color: #fff; }

/* ─── ACCOUNT DELETION PAGE ─────────────────── */
.account-delete-page {
  background: linear-gradient(180deg, #edf4ff 0%, #f8fbff 38%, #eef5ff 100%);
}

.delete-hero {
  padding-top: clamp(4.5rem, 9vw, 6rem);
  padding-bottom: 2.2rem;
}

.delete-hero .section-body {
  max-width: 70ch;
}

.delete-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.delete-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  margin-top: 1.2rem;
}

.delete-grid-scope {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.delete-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.delete-card h3 {
  font-size: 1.15rem;
  line-height: 1.25;
  margin-bottom: .55rem;
  color: var(--ink);
}

.delete-card p {
  color: var(--ink-sub);
  margin-bottom: 0;
}

.delete-card-about,
.delete-card-note,
.delete-legal {
  background: linear-gradient(150deg, #ffffff 0%, #f3f8ff 100%);
}

.delete-card-note,
.delete-legal {
  margin-top: 1.1rem;
}

.delete-list {
  list-style: disc;
  margin: .35rem 0 0 1.1rem;
  color: var(--ink-sub);
  display: grid;
  gap: .35rem;
}

.delete-list li {
  padding-left: .1rem;
}

/* ─── SCROLL REVEAL ──────────────────────────── */
[data-scroll-reveal] {
  opacity: 0; transform: translateY(22px);
  transition: opacity 650ms var(--ease-out), transform 650ms var(--ease-out);
}

[data-scroll-reveal][data-reveal="left"] { transform: translate(-28px, 20px); }
[data-scroll-reveal][data-reveal="right"] { transform: translate(28px, 20px); }
[data-scroll-reveal][data-reveal="up"] { transform: translateY(34px); }

[data-scroll-reveal].sr-visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1060px) {
  .g-hero-card { grid-template-columns: 1fr; }
  .g-hero-img img { height: 340px; }
  .impact-inner,
  .apps-grid,
  .mv-grid { grid-template-columns: 1fr; }
  .delete-grid-scope { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .faq-inner { grid-template-columns: 1fr; }
  .faq-head { position: static; }
}

@media (max-width: 768px) {
  .nav-inner { position: relative; min-height: 74px; }
  .site-header .desktop-nav,
  .site-header .btn-nav { display: none; }
  .site-header .brand img { width: 76px; height: 76px; border-radius: 16px; }
  .footer-brand-col .brand img { width: 48px; height: 48px; }
  .mobile-menu-toggle { display: inline-flex; }
  .register-fab { display: inline-flex; }
  .scroll-cue { display: none; }
  h1 { font-size: clamp(2.5rem, 10vw, 3.8rem); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card-wrap { order: -1; max-width: 480px; margin-inline: auto; }
  .wins-grid,
  .g-sub-row { grid-template-columns: 1fr; }
  .delete-grid,
  .delete-grid-scope { grid-template-columns: 1fr; }
  .g-hero-card { min-height: auto; }
  .g-hero-img img { height: 260px; }
  .pillar-row {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .pillar-meta {
    justify-self: start;
  }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom .container { flex-direction: column; align-items: flex-start; }
  .stat-row { flex-direction: column; gap: 1.2rem; }
  .impact-img-wrap img { height: 300px; }
  .g-card-img img { height: 200px; }
}

/* ─── REDUCED MOTION ─────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-scroll-reveal] { opacity: 1; transform: none; }
  .blob, .hero-card-glow { animation: none; }
}
