/* ─── Design Tokens ─────────────────────────────────────────────────── */
:root {
  --bg:        #fff8f2;
  --bg-soft:   #fff3ea;
  --bg-card:   rgba(255, 255, 255, 0.92);
  --text:      #1a0a00;
  --muted:     #6b4f3a;
  --border:    rgba(180, 100, 40, 0.12);
  --shadow-sm: 0 4px 16px rgba(180, 80, 20, 0.08);
  --shadow:    0 20px 60px rgba(180, 80, 20, 0.12);
  --shadow-lg: 0 32px 80px rgba(180, 80, 20, 0.18);

  --coral:   #ff6b6b;
  --orange:  #ff9500;
  --peach:   #ffb347;
  --rose:    #ff4d6d;

  --grad: linear-gradient(135deg, #ff6b6b 0%, #ff9500 55%, #ffb347 100%);
  --grad-soft: linear-gradient(135deg, rgba(255,107,107,0.15) 0%, rgba(255,149,0,0.12) 100%);

  --radius-sm:  10px;
  --radius-md:  18px;
  --radius-lg:  26px;
  --radius-xl:  36px;

  --font: Inter, ui-sans-serif, system-ui, -apple-system, sans-serif;
}

/* ─── Reset & Base ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ─── Utility ───────────────────────────────────────────────────────── */
.container {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ─── Header ────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 242, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.04em;
  color: var(--text);
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--grad);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.38);
  flex-shrink: 0;
}

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--muted);
  transition: color 140ms, background 140ms;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 107, 107, 0.09);
}

.nav-cta {
  padding: 10px 22px !important;
  background: var(--grad) !important;
  color: #fff !important;
  font-weight: 700 !important;
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.32);
  transition: transform 150ms, box-shadow 150ms !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 107, 107, 0.4) !important;
  background: var(--grad) !important;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transition: transform 200ms, opacity 200ms;
}

/* ─── Hero ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 100px 24px 120px;
  overflow: hidden;
  text-align: center;
}

/* Decorative blobs */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(255,107,107,0.18), transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(255,149,0,0.15), transparent 60%),
    radial-gradient(ellipse 40% 50% at 50% 80%, rgba(255,180,80,0.10), transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 999px;
  background: rgba(255, 107, 107, 0.09);
  border: 1px solid rgba(255, 107, 107, 0.22);
  font-size: 0.88rem;
  font-weight: 700;
  color: #c94000;
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--coral);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.7); }
}

.hero h1 {
  margin: 0 0 24px;
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  font-weight: 900;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--muted);
  margin: 0 auto 44px;
  max-width: 520px;
  font-weight: 500;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* CTA Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform 160ms, box-shadow 160ms;
}

.btn:hover { transform: translateY(-3px); }

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 16px 40px rgba(255, 107, 107, 0.36);
}

.btn-primary:hover {
  box-shadow: 0 22px 50px rgba(255, 107, 107, 0.46);
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  border-color: rgba(255, 107, 107, 0.4);
  box-shadow: 0 8px 24px rgba(255, 107, 107, 0.12);
}

/* Hero stats strip */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.hero-stat-num {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
}

/* ─── Section Shell ─────────────────────────────────────────────────── */
.section {
  padding: 96px 24px;
}

.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #c94000;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  margin: 0 0 16px;
  line-height: 1.1;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 500;
  max-width: 540px;
  margin: 0;
}

.section-header {
  margin-bottom: 60px;
}

.section-header.centered {
  text-align: center;
}

.section-header.centered .section-subtitle {
  margin: 0 auto;
}

/* ─── Apps Grid ─────────────────────────────────────────────────────── */
.apps-section {
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.app-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 36px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  transition: transform 200ms, box-shadow 200ms;
}

.app-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.app-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.app-icon {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(180, 80, 20, 0.18);
  flex-shrink: 0;
}

.app-header-text {
  flex: 1;
  min-width: 0;
}

.app-platform {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c94000;
  margin-bottom: 4px;
}

.app-name {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  margin: 0;
  line-height: 1.1;
}

.app-desc {
  color: var(--muted);
  margin: 0 0 20px;
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.tag {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--muted);
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 107, 107, 0.07);
  border: 1px solid rgba(255, 107, 107, 0.15);
}

.app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.93rem;
  width: 100%;
  transition: transform 160ms, box-shadow 160ms;
  margin-top: auto;
}

.app-btn:hover { transform: translateY(-2px); }

.app-btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 28px rgba(255, 107, 107, 0.3);
}

.app-btn-primary:hover {
  box-shadow: 0 16px 36px rgba(255, 107, 107, 0.42);
}

.app-btn-secondary {
  background: #fff;
  color: var(--text);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.app-btn-secondary:hover {
  border-color: rgba(255, 107, 107, 0.35);
}

/* ─── Values Section ────────────────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms, box-shadow 200ms;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.value-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--grad-soft);
  border: 1px solid rgba(255, 107, 107, 0.15);
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.value-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.03em;
}

.value-desc {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ─── Coming Soon ───────────────────────────────────────────────────── */
.coming-section {
  background: var(--bg-soft);
}

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

.coming-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-sm);
}

.coming-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
}

.coming-icon-1 { background: linear-gradient(135deg, rgba(255,107,107,0.15), rgba(255,149,0,0.10)); }
.coming-icon-2 { background: linear-gradient(135deg, rgba(255,149,0,0.15), rgba(255,180,80,0.10)); }
.coming-icon-3 { background: linear-gradient(135deg, rgba(255,77,109,0.12), rgba(255,107,107,0.08)); }

.coming-name {
  font-weight: 800;
  font-size: 1rem;
  margin: 0 0 4px;
}

.coming-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.coming-badge {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c94000;
  background: rgba(255, 107, 107, 0.08);
  border: 1px solid rgba(255, 107, 107, 0.18);
  padding: 3px 10px;
  border-radius: 999px;
}

/* ─── CTA Banner ────────────────────────────────────────────────────── */
.cta-section {
  padding: 80px 24px;
}

.cta-inner {
  background: var(--grad);
  border-radius: var(--radius-xl);
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 10% 40%, rgba(255,255,255,0.18), transparent),
    radial-gradient(ellipse 40% 50% at 90% 60%, rgba(255,255,255,0.12), transparent);
}

.cta-inner > * { position: relative; z-index: 1; }

.cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.05em;
  margin: 0 0 16px;
}

.cta-inner p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0 auto 36px;
  font-weight: 500;
}

.btn-white {
  background: #fff;
  color: #c94000;
  font-weight: 800;
  box-shadow: 0 12px 36px rgba(0,0,0,0.14);
}

.btn-white:hover {
  box-shadow: 0 20px 48px rgba(0,0,0,0.2);
}

/* ─── Footer ────────────────────────────────────────────────────────── */
.site-footer {
  background: #1a0a00;
  color: rgba(255,255,255,0.85);
  padding: 64px 24px 36px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .brand {
  color: #fff;
  margin-bottom: 16px;
}

.footer-brand .brand-mark {
  box-shadow: 0 6px 18px rgba(255,107,107,0.4);
}

.footer-tagline {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin: 0;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin: 0 0 16px;
}

.footer-col a {
  display: block;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  margin-bottom: 10px;
  transition: color 140ms;
}

.footer-col a:hover { color: #fff; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.35);
  transition: color 140ms;
}

.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ─── Inner Page Layout ─────────────────────────────────────────────── */
.page-hero {
  padding: 80px 24px 60px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 15% 40%, rgba(255,107,107,0.12), transparent),
    radial-gradient(ellipse 40% 50% at 85% 50%, rgba(255,149,0,0.10), transparent);
  pointer-events: none;
}

.page-hero-inner { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.05em;
  margin: 0 0 16px;
}

.page-hero p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
  font-weight: 500;
}

.page-body {
  padding: 72px 24px 96px;
}

.page-content {
  max-width: 760px;
  margin: 0 auto;
}

/* Prose styles for legal/about pages */
.prose h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 48px 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.prose h2:first-child { margin-top: 0; }

.prose h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 28px 0 10px;
}

.prose p {
  color: var(--muted);
  margin: 0 0 16px;
  font-size: 0.98rem;
}

.prose ul, .prose ol {
  color: var(--muted);
  padding-left: 20px;
  margin: 0 0 16px;
}

.prose li {
  margin-bottom: 8px;
  font-size: 0.98rem;
  line-height: 1.65;
}

.prose a {
  color: var(--coral);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose a:hover { color: var(--orange); }

.prose strong { color: var(--text); }

.last-updated {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: #c94000;
  background: rgba(255, 107, 107, 0.08);
  border: 1px solid rgba(255, 107, 107, 0.18);
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 36px;
}

/* About page specific */
.about-mission {
  background: var(--grad);
  border-radius: var(--radius-xl);
  padding: 60px 52px;
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.about-mission::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 30% 30%, rgba(255,255,255,0.15), transparent);
}

.about-mission > * { position: relative; }

.about-mission h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.05em;
  margin: 0 0 16px;
}

.about-mission p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 72px;
  align-items: start;
}

.story-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin: 0 0 20px;
}

.story-text p {
  color: var(--muted);
  margin-bottom: 16px;
}

.story-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

.story-stat {
  text-align: center;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}

.story-stat:last-child { border-bottom: none; padding-bottom: 0; }
.story-stat:first-child { padding-top: 0; }

.story-stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.story-stat-label {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
}

.team-section {
  margin-bottom: 72px;
}

.team-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin: 0 0 40px;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  gap: 28px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: var(--grad);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 900;
  flex-shrink: 0;
}

.team-name {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 4px;
  letter-spacing: -0.03em;
}

.team-role {
  font-size: 0.84rem;
  font-weight: 700;
  color: #c94000;
  margin-bottom: 12px;
}

.team-bio {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.65;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  margin: 0 0 16px;
}

.contact-info > p {
  color: var(--muted);
  margin-bottom: 36px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}

.contact-method-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--grad-soft);
  border: 1px solid rgba(255, 107, 107, 0.15);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-method-label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #c94000;
  margin-bottom: 4px;
}

.contact-method-value {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
}

.contact-method-value a {
  color: var(--text);
  transition: color 140ms;
}

.contact-method-value a:hover { color: #c94000; }

/* Contact form */
.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form-wrap h3 {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  outline: none;
  transition: border-color 150ms, box-shadow 150ms;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: rgba(255, 107, 107, 0.5);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 130px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--grad);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  box-shadow: 0 12px 32px rgba(255, 107, 107, 0.32);
  transition: transform 160ms, box-shadow 160ms;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(255, 107, 107, 0.42);
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}

.form-success-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}

.form-success h4 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 8px;
}

.form-success p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

/* ─── Mobile Nav Overlay ────────────────────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(26, 10, 0, 0.6);
  backdrop-filter: blur(4px);
}

.mobile-nav-drawer {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 80vw);
  background: var(--bg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: -20px 0 60px rgba(0,0,0,0.12);
}

.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1;
}

.mobile-nav a {
  display: block;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  transition: background 140ms;
}

.mobile-nav a:hover { background: rgba(255, 107, 107, 0.08); }

.mobile-nav .nav-cta {
  margin-top: 8px;
  background: var(--grad) !important;
  color: #fff !important;
  text-align: center;
}

/* ─── Responsive ────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .menu-toggle { display: flex; }
  .mobile-nav.open { display: block; }

  .hero { padding: 72px 20px 88px; }

  .hero-stats { gap: 28px; }

  .apps-grid {
    grid-template-columns: 1fr;
  }

  .app-card {
    padding: 28px;
  }

  .app-icon { width: 64px; height: 64px; }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .coming-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-inner {
    padding: 48px 28px;
  }

  .about-mission {
    padding: 40px 28px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }
}

@media (max-width: 480px) {
  .hero h1 { letter-spacing: -0.05em; }

  .apps-grid {
    grid-template-columns: 1fr;
  }

  .app-icon { width: 60px; height: 60px; }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}
