/* ========== Tokens ========== */
:root {
  --bg: #FDFBF7;
  --bg-warm: #FAF5EC;
  --ink: #1A1613;
  --ink-2: #4F4239;
  --ink-3: #8A7E70;
  --ink-4: #B5AA99;
  --line: #F0E8DC;
  --line-2: #E5DACA;
  --divider: #F7F1E6;
  --surface: #FFFFFF;
  --orange: #FF6A2C;
  --orange-deep: #E54D0E;
  --orange-soft: #FFF1E8;
  --orange-line: #FFD9C2;
  --green: #1F7A2F;
  --green-soft: #E6F4E8;
  --red-soft: #F4E6E6;
  --red: #8F2F2F;
  --like: #E8482D;
  --star: #FFB02E;

  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1180px;
  --pad: clamp(16px, 4vw, 32px);
  --shadow-sm: 0 1px 2px rgba(26, 22, 19, 0.04);
  --shadow-md: 0 8px 24px -8px rgba(26, 22, 19, 0.10), 0 2px 6px rgba(26, 22, 19, 0.04);
  --shadow-lg: 0 24px 60px -20px rgba(26, 22, 19, 0.18), 0 8px 18px -10px rgba(26, 22, 19, 0.08);
}

/* ========== Reset ========== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea { font: inherit; color: inherit; }

/* Grain overlay — soft warmth */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.045;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.08 0 0 0 0 0.07 0 0 0 1 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

/* ========== Layout ========== */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
}

.display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.display em {
  font-style: italic;
  font-weight: 600;
  color: var(--orange);
  background-image: linear-gradient(
    to top,
    transparent 0,
    transparent 0.08em,
    rgba(255, 106, 44, 0.18) 0.08em,
    rgba(255, 106, 44, 0.18) 0.22em,
    transparent 0.22em
  );
  padding: 0 0.04em;
}

.display-sm {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.display-sm em { font-style: italic; font-weight: 600; color: var(--orange); }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-2);
  max-width: 32em;
  line-height: 1.6;
}

.section-header { max-width: 38em; margin-bottom: clamp(32px, 5vw, 56px); }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-header .eyebrow { margin-bottom: 12px; }

/* ========== Ticker ========== */
.ticker {
  position: relative;
  background: var(--ink);
  color: var(--bg);
  overflow: hidden;
  padding: 10px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.04em;
  z-index: 50;
}
.ticker-track {
  display: flex;
  gap: 18px;
  white-space: nowrap;
  width: max-content;
  animation: scrollTicker 50s linear infinite;
}
.ticker-track span { color: var(--bg); opacity: 0.85; }
.ticker-track span:nth-child(even) { color: var(--orange); opacity: 1; }
@keyframes scrollTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ========== Header ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(253, 251, 247, 0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.site-header.scrolled { border-bottom-color: var(--line); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-logo {
  height: 30px;
  width: auto;
  display: block;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.brand:hover .brand-logo { transform: rotate(-3deg) scale(1.04); }
.brand-mark {
  width: 32px; height: 32px;
  border-radius: 9px;
  background: var(--orange);
  color: #fff;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  font-style: italic;
  box-shadow: 0 4px 12px -4px rgba(255, 106, 44, 0.5);
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.nav-links { display: none; gap: 28px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  display: inline-block;
  padding: 9px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  font-size: 13px;
  font-weight: 600;
  transition: transform 0.15s ease, background 0.15s ease;
}
.nav-cta:hover { background: var(--orange); transform: translateY(-1px); }

@media (min-width: 820px) {
  .nav-links { display: flex; }
}

/* ========== Hero ========== */
.hero {
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: clamp(64px, 10vw, 140px);
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  top: 20%;
  right: -20%;
  width: 60%;
  height: 60%;
  background: radial-gradient(circle, rgba(255, 106, 44, 0.10), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 8vw, 72px);
  align-items: center;
}
@media (min-width: 920px) {
  .hero-grid { grid-template-columns: 1.15fr 1fr; }
}

.hero-text { display: flex; flex-direction: column; gap: 24px; }
.hero-text .eyebrow { opacity: 0; transform: translateY(8px); animation: fadeUp 0.6s ease 0.1s forwards; }
.hero-text h1 { opacity: 0; transform: translateY(16px); animation: fadeUp 0.7s ease 0.2s forwards; }
.hero-text .lead { opacity: 0; transform: translateY(12px); animation: fadeUp 0.7s ease 0.35s forwards; }
.hero-text .hero-cta { opacity: 0; transform: translateY(12px); animation: fadeUp 0.7s ease 0.5s forwards; }
.hero-text .hero-meta { opacity: 0; transform: translateY(8px); animation: fadeUp 0.7s ease 0.65s forwards; }

@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

.hero-cta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px 10px 14px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 14px;
  transition: transform 0.18s ease, background 0.18s ease;
}
.badge:hover { transform: translateY(-2px); background: var(--orange); }
.store-glyph { width: 22px; height: 22px; fill: currentColor; flex: 0 0 22px; }
.badge-label { display: flex; flex-direction: column; line-height: 1.1; }
.badge-label small { font-size: 10px; opacity: 0.7; letter-spacing: 0.06em; text-transform: uppercase; }
.badge-label strong { font-size: 15px; font-weight: 600; letter-spacing: -0.005em; }

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-3);
  font-size: 13px;
  font-weight: 500;
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 106, 44, 0.18);
  animation: pulse 2.2s ease infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 106, 44, 0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(255, 106, 44, 0); }
}

/* ========== Hero showcase image ========== */
.hero-mockup {
  display: flex;
  justify-content: center;
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  animation: shotIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s forwards;
}
@keyframes shotIn { to { opacity: 1; transform: translateY(0); } }
.hero-mockup::after {
  content: "";
  position: absolute;
  inset: -12% -8% -18% -8%;
  background: radial-gradient(ellipse at center, rgba(255, 106, 44, 0.16), transparent 60%);
  z-index: -1;
}
.hero-shot {
  width: 100%;
  height: auto;
  max-width: 560px;
  display: block;
  border-radius: 24px;
  filter: drop-shadow(0 24px 48px rgba(26, 22, 19, 0.18))
          drop-shadow(0 8px 16px rgba(26, 22, 19, 0.08));
  transform: rotate(-1deg);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-shot:hover { transform: rotate(0deg) translateY(-4px); }

/* ========== (Legacy) Phone Mockup styles ========== */
.phone {
  width: min(280px, 75vw);
  position: relative;
}
.phone-frame {
  position: relative;
  background: #0E0A07;
  border-radius: 42px;
  padding: 12px;
  box-shadow: var(--shadow-lg), inset 0 0 0 1.5px #2A1F15;
}
.phone-notch {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 84px; height: 20px;
  background: #0E0A07;
  border-radius: 14px;
  z-index: 2;
}
.phone-screen {
  background: var(--bg);
  border-radius: 32px;
  padding: 32px 14px 18px;
  overflow: hidden;
  height: 540px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.phone-statusbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  padding: 0 6px 6px;
}
.phone-statusicons { letter-spacing: -1px; opacity: 0.7; font-size: 9px; }

.phone-locationchip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 7px 10px;
}
.pin-bg {
  width: 28px; height: 28px;
  background: var(--orange-soft);
  border-radius: 8px;
  display: grid;
  place-items: center;
}
.pin { color: var(--orange); font-size: 12px; }
.phone-locationtext { flex: 1; line-height: 1.1; display: flex; flex-direction: column; }
.phone-locationtext small { font-size: 8px; font-weight: 700; color: var(--ink-3); letter-spacing: 0.08em; }
.phone-locationtext strong { font-size: 13px; font-weight: 700; }
.phone-mapbtn { color: var(--ink-3); font-size: 12px; padding: 0 4px; }

.phone-nowcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.phone-nowcard h2 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.phone-ctx { font-size: 10px; color: var(--ink-3); }
.phone-phrase { font-size: 11px; color: var(--ink); line-height: 1.4; margin-top: 2px; }
.phone-chips { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 6px; }
.phone-chips span {
  background: var(--orange-soft);
  color: var(--orange-deep);
  font-size: 9px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 999px;
}
.phone-signal {
  font-size: 10px;
  color: var(--orange);
  font-weight: 600;
  margin-top: 6px;
  padding-top: 8px;
  border-top: 1px dashed var(--line);
}
.phone-signal strong { font-weight: 700; }

.phone-section-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink);
  padding: 0 4px;
  margin-top: 2px;
}
.phone-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.phone-grid-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--orange-soft);
  border-radius: 10px;
  padding: 8px 4px;
  gap: 4px;
}
.phone-grid-cell span { font-size: 15px; }
.phone-grid-cell small { font-size: 8px; font-weight: 700; color: var(--orange-deep); }

/* ========== Features ========== */
.features {
  padding: clamp(72px, 12vw, 130px) 0;
}
.features-alt { background: var(--bg-warm); position: relative; }
.features-alt::before, .features-alt::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--line-2), transparent);
}
.features-alt::before { top: 0; }
.features-alt::after  { bottom: 0; }

.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) { .feature-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange-line);
}
.feature-icon {
  width: 52px; height: 52px;
  background: var(--orange-soft);
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--orange);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.feature-card p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.6;
}

/* ========== Business CTA ========== */
.business-cta {
  margin-top: clamp(40px, 6vw, 64px);
  background: var(--ink);
  color: var(--bg);
  border-radius: 26px;
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.business-cta::after {
  content: "";
  position: absolute;
  right: -8%; top: -40%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255, 106, 44, 0.25), transparent 65%);
  pointer-events: none;
}
.business-cta-text h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.business-cta-text p { color: rgba(253, 251, 247, 0.75); max-width: 30em; line-height: 1.6; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: #fff;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  align-self: flex-start;
  transition: transform 0.18s ease, background 0.18s ease;
}
.link-arrow span { transition: transform 0.18s ease; }
.link-arrow:hover { background: #fff; color: var(--ink); transform: translateY(-1px); }
.link-arrow:hover span { transform: translateX(4px); }

@media (min-width: 720px) {
  .business-cta { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ========== How it works ========== */
.howit { padding: clamp(72px, 12vw, 130px) 0; }
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  counter-reset: stepc;
}
@media (min-width: 760px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.steps li {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 28px 32px;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--orange);
  font-size: clamp(3rem, 5vw, 4rem);
  line-height: 1;
  display: inline-block;
  margin-bottom: 8px;
}
.steps li h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.steps li p { color: var(--ink-2); font-size: 15px; line-height: 1.55; }

/* ========== Gallery ========== */
.gallery {
  padding: clamp(72px, 12vw, 130px) 0;
  background: var(--bg-warm);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 760px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

.screen-card { display: flex; flex-direction: column; gap: 16px; align-items: center; }
.screen-card figcaption {
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 500;
  text-align: center;
}

.screen-mock {
  width: 100%;
  max-width: 240px;
  background: var(--bg);
  border-radius: 28px;
  padding: 16px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  aspect-ratio: 9 / 18.5;
}

.sm-header { display: flex; align-items: center; }
.sm-chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
}

.sm-post {
  background: #fff;
  border-radius: 14px;
  padding: 10px;
  display: flex;
  gap: 8px;
  border: 1px solid var(--line);
}
.sm-post-mini { padding: 8px; }
.sm-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #FFE0CC, #FFB78A);
  color: #7A3A14;
  font-weight: 800;
  font-size: 12px;
  display: grid;
  place-items: center;
}
.sm-avatar-2 { background: linear-gradient(135deg, #DEEAFF, #A6BFEA); color: #1F3A6F; }
.sm-postbody { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.sm-postbody strong { font-size: 11px; font-weight: 700; }
.sm-postbody small { font-size: 9px; color: var(--ink-3); }
.sm-postbody p { font-size: 11px; line-height: 1.4; margin-top: 2px; }
.sm-mediahint {
  height: 70px;
  background: linear-gradient(135deg, #FFE6D4, #FFC9A0);
  border-radius: 8px;
  margin-top: 6px;
}

.sm-hero {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sm-hero h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; }
.sm-hero p { font-size: 10px; color: var(--ink-3); }
.sm-chips { display: flex; gap: 4px; margin-top: 6px; flex-wrap: wrap; }
.sm-chips span {
  background: var(--orange-soft);
  color: var(--orange-deep);
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
}
.sm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
  margin-top: 4px;
}
.sm-grid > div {
  aspect-ratio: 1;
  background: var(--orange-soft);
  border-radius: 8px;
}

.sm-cover {
  height: 70px;
  background: linear-gradient(135deg, #FFC9A0, #FF9B5E);
  border-radius: 12px;
}
.sm-bizhead {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  position: relative;
}
.sm-bizhead strong { font-family: var(--font-display); font-size: 13px; font-weight: 700; }
.sm-bizhead small { font-size: 10px; color: var(--ink-3); }
.sm-pill {
  position: absolute;
  top: 10px; right: 10px;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
}
.sm-pill-open { background: var(--green-soft); color: var(--green); }
.sm-row {
  height: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

/* ========== FAQ ========== */
.faq { padding: clamp(72px, 12vw, 130px) 0; }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--line); }
details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
summary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  letter-spacing: -0.012em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  list-style: none;
  color: var(--ink);
  transition: color 0.15s ease;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 28px;
  color: var(--ink-3);
  transition: transform 0.25s ease, color 0.15s ease;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}
details[open] summary::after { transform: rotate(45deg); color: var(--orange); }
details:hover summary { color: var(--orange); }
details p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.7;
  padding-top: 14px;
  padding-right: 56px;
  max-width: 60ch;
}

/* ========== Footer ========== */
.site-footer {
  background: var(--ink);
  color: rgba(253, 251, 247, 0.85);
  padding: clamp(56px, 8vw, 96px) 0 32px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(253, 251, 247, 0.12);
}
@media (min-width: 760px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; } }

.footer-brand { display: flex; flex-direction: column; gap: 18px; }
.footer-lockup { display: inline-flex; align-items: center; gap: 12px; }
.footer-mark { width: 36px; height: 36px; border-radius: 9px; }
.footer-wordmark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--bg);
}
.footer-brand p { color: rgba(253, 251, 247, 0.65); font-size: 14px; max-width: 26em; line-height: 1.55; }

.footer-col h5 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--bg);
  margin-bottom: 16px;
  opacity: 0.9;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px;
  color: rgba(253, 251, 247, 0.65);
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 32px;
  font-size: 13px;
  color: rgba(253, 251, 247, 0.55);
}
@media (min-width: 600px) { .footer-bottom { flex-direction: row; align-items: center; } }
.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  color: var(--orange);
}

/* ========== Brand on dark sections ========== */
.brand .brand-mark { transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1); }
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.05); }

/* ========== Page utilities for legal pages ========== */
.legal {
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 80px) var(--pad);
}
.legal h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.legal .updated { color: var(--ink-3); font-size: 14px; margin-bottom: 40px; }
.legal h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.5vw, 1.6rem);
  letter-spacing: -0.015em;
  margin-top: 40px;
  margin-bottom: 12px;
}
.legal p, .legal li { color: var(--ink-2); font-size: 16px; line-height: 1.7; }
.legal p { margin-bottom: 12px; }
.legal ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.legal a { color: var(--orange); border-bottom: 1px solid var(--orange-line); }
.legal a:hover { border-bottom-color: var(--orange); }
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--ink-3);
  margin-bottom: 32px;
  transition: color 0.15s ease;
}
.back-link:hover { color: var(--orange); }

/* ========== Yakında (coming soon) ========== */
.soon-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.soon-page .site-header {
  position: relative;
  background: transparent;
  border-bottom: none;
}
.soon-nav {
  justify-content: center;
}
.soon-page .brand-logo {
  height: 38px;
}
.soon-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: clamp(24px, 5vw, 48px) 0 clamp(48px, 8vw, 80px);
  position: relative;
}
.soon-main::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: min(900px, 120%);
  height: 55%;
  background: radial-gradient(ellipse at center, rgba(255, 106, 44, 0.14), transparent 68%);
  pointer-events: none;
}
.soon-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 8vw, 64px);
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
@media (min-width: 920px) {
  .soon-grid { grid-template-columns: 1.05fr 0.95fr; }
}
.soon-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
  text-align: center;
}
@media (min-width: 920px) {
  .soon-copy { text-align: left; }
}
.soon-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--orange-soft);
  border: 1px solid var(--orange-line);
  color: var(--orange-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
@media (min-width: 920px) {
  .soon-badge-pill { align-self: flex-start; }
}
.soon-visual {
  display: flex;
  justify-content: center;
  position: relative;
}
.soon-shot {
  width: 100%;
  max-width: 420px;
  border-radius: 28px;
  filter: drop-shadow(0 28px 56px rgba(26, 22, 19, 0.16));
  transform: rotate(-2deg);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.soon-shot:hover { transform: rotate(0deg) translateY(-6px); }
.soon-waitlist {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 920px) {
  .soon-waitlist { margin-left: 0; margin-right: 0; }
}
.soon-waitlist label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-2);
}
.soon-waitlist-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 520px) {
  .soon-waitlist-row { flex-direction: row; }
}
.soon-waitlist input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--line-2);
  background: var(--surface);
  font-size: 15px;
}
.soon-waitlist input[type="email"]:focus {
  outline: 2px solid rgba(255, 106, 44, 0.35);
  outline-offset: 2px;
  border-color: var(--orange-line);
}
.soon-waitlist button {
  padding: 14px 22px;
  border: none;
  border-radius: 14px;
  background: var(--ink);
  color: var(--bg);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
}
.soon-waitlist button:hover {
  background: var(--orange);
  transform: translateY(-1px);
}
.soon-waitlist-hint {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.5;
}
.soon-waitlist-hint a {
  color: var(--orange);
  border-bottom: 1px solid var(--orange-line);
}
.soon-features-mini {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 8px;
}
@media (min-width: 520px) {
  .soon-features-mini { grid-template-columns: repeat(3, 1fr); }
}
.soon-mini-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  text-align: left;
}
.soon-mini-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 4px;
}
.soon-mini-card span {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.45;
}
.soon-footer {
  padding: 24px 0 32px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.5);
}
.soon-footer-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
  font-size: 13px;
  color: var(--ink-3);
}
@media (min-width: 640px) {
  .soon-footer-inner {
    flex-direction: row;
    justify-content: center;
    text-align: center;
  }
}
.soon-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.soon-footer-links a:hover { color: var(--orange); }
.soon-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--ink);
  color: var(--bg);
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  z-index: 100;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.soon-toast.is-visible {
  transform: translateX(-50%) translateY(0);
}

/* ========== Reduced motion ========== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .ticker-track { animation: none; }
}
