/* KobiArtı — tanıtım sitesi */

:root {
  --ink: #0a1f2c;
  --ink-soft: #3a5564;
  --brand: #064663;
  --brand-deep: #04344a;
  --brand-mid: #0a6a8a;
  --accent: #1fa8a0;
  --accent-soft: #d8f3f0;
  --sand: #eef3f5;
  --paper: #f7fafb;
  --white: #ffffff;
  --line: rgba(6, 70, 99, 0.12);
  --shadow: 0 24px 60px rgba(4, 40, 58, 0.18);
  --radius: 18px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 2.5rem, 720px);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(247, 250, 251, 0.86);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(247, 250, 251, 0.95);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

.brand img {
  height: 36px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s ease;
}

.nav a:hover {
  color: var(--brand);
}

.nav-cta {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: var(--brand);
  color: var(--white) !important;
}

.nav-cta:hover {
  background: var(--brand-deep);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 7px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--ink);
  margin-inline: auto;
  transition: transform 0.2s ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(100vh, 900px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 4rem 0 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(31, 168, 160, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 10% 80%, rgba(6, 70, 99, 0.18), transparent 50%),
    linear-gradient(160deg, #e6eef2 0%, #f7fafb 45%, #dce9ee 100%);
  z-index: 0;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23064663' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.9;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-mid);
  margin: 0 0 0.75rem;
}

.brand-hero {
  margin: 0 0 0.5rem;
  line-height: 0;
}

.brand-hero-logo {
  width: min(340px, 88%);
  height: auto;
  display: block;
}

.tagline {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: var(--ink);
  margin: 0 0 1.25rem;
}

.lede,
.section-lede,
.feature-text p,
.split-copy > p,
.faq p,
.cta-band p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 36rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.75rem 0 1.25rem;
}

.cta-row.center {
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.35rem;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(6, 70, 99, 0.28);
}

.btn-primary:hover {
  background: var(--brand-deep);
}

.btn-ghost {
  background: transparent;
  color: var(--brand);
  border: 1px solid rgba(6, 70, 99, 0.28);
}

.btn-ghost.light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn-ghost.light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-badges li {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--line);
}

/* Realistic device mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 520px;
}

.device {
  position: relative;
  z-index: 2;
  width: min(290px, 78%);
  filter: drop-shadow(0 32px 48px rgba(4, 40, 58, 0.32));
  animation: phone-in 0.9s ease both;
}

@keyframes phone-in {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.device-frame {
  border-radius: 44px;
  padding: 11px;
  background:
    linear-gradient(145deg, #3a4a55 0%, #1a242c 28%, #0d1419 55%, #2c3842 100%);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.35),
    inset 0 -1px 2px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(0, 0, 0, 0.4);
}

.device-glass {
  position: relative;
  border-radius: 36px;
  overflow: hidden;
  background: #041018;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.06);
}

.device-island {
  position: absolute;
  top: 11px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 26px;
  background: #000;
  border-radius: 20px;
  z-index: 5;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.device-island::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #1a3a55, #061018 70%);
  box-shadow: 0 0 0 1.5px rgba(0, 0, 0, 0.8);
}

.device-screen {
  background: linear-gradient(180deg, #f5f9fa 0%, #e7eef2 100%);
  min-height: 540px;
  padding: 48px 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.device-glare {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(255, 255, 255, 0.04) 28%,
    transparent 48%
  );
  z-index: 6;
}

.device-btn {
  position: absolute;
  background: linear-gradient(90deg, #1c262e, #3a4650);
  border-radius: 3px;
  z-index: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.device-btn-silent {
  left: -3px;
  top: 110px;
  width: 3px;
  height: 28px;
}

.device-btn-vol-up {
  left: -3px;
  top: 160px;
  width: 3px;
  height: 48px;
}

.device-btn-vol-down {
  left: -3px;
  top: 220px;
  width: 3px;
  height: 48px;
}

.device-btn-power {
  right: -3px;
  top: 180px;
  width: 3px;
  height: 72px;
}

.mock-top span {
  display: block;
  font-size: 0.75rem;
  color: var(--ink-soft);
}

.mock-top strong {
  font-family: var(--font-display);
  font-size: 1.65rem;
  color: var(--brand);
}

.mock-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.chip {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.5rem;
  border-radius: 999px;
  background: #fff;
  color: var(--ink-soft);
  border: 1px solid var(--line);
}

.chip-ok {
  background: var(--accent-soft);
  color: #0d6b66;
  border-color: transparent;
}

.mock-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.mock-row {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  background: #fff;
  border-radius: 12px;
  padding: 0.7rem 0.75rem;
  border: 1px solid var(--line);
  box-shadow: 0 4px 12px rgba(4, 40, 58, 0.04);
}

.mock-row strong {
  display: block;
  font-size: 0.82rem;
}

.mock-row small {
  color: var(--ink-soft);
  font-size: 0.7rem;
}

.mock-row em {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--brand);
  white-space: nowrap;
}

.mock-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.4rem;
  padding: 0.35rem 0.25rem 0.15rem;
}

.mock-bar span {
  height: 4px;
  border-radius: 4px;
  background: rgba(6, 70, 99, 0.15);
}

.mock-bar .on {
  background: var(--accent);
}

.float-card {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 0.75rem 1rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  z-index: 3;
  animation: float 5s ease-in-out infinite;
}

.float-card small {
  display: block;
  font-size: 0.7rem;
  color: var(--ink-soft);
}

.float-card strong {
  font-size: 0.95rem;
  color: var(--brand);
}

.float-a {
  top: 12%;
  left: 0;
  animation-delay: 0s;
}

.float-b {
  bottom: 18%;
  right: 0;
  animation-delay: 1.2s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Stats strip */
.stats-strip {
  position: relative;
  z-index: 2;
  margin-top: -2.5rem;
  padding-bottom: 1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(4, 40, 58, 0.08);
}

.stats-grid > div {
  background: #fff;
  padding: 1.35rem 1.25rem;
}

.stats-grid strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--brand);
  margin-bottom: 0.2rem;
}

.stats-grid span {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* Module catalog */
.catalog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.catalog-group {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem 1.2rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.catalog-group:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.catalog-group h3 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.c-green { background: #388e3c; }
.c-orange { background: #ef6c00; }
.c-red { background: #d32f2f; }
.c-teal { background: #00796b; }
.c-blue { background: #1976d2; }
.c-purple { background: #7b1fa2; }
.c-cyan { background: #0097a7; }
.c-navy { background: #064663; }
.c-slate { background: #616161; }

.catalog-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.catalog-group li strong {
  display: block;
  font-size: 0.92rem;
  color: var(--ink);
}

.catalog-group li span {
  display: block;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 0.15rem;
  line-height: 1.4;
}

/* Module pitch cards */
.pitch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.pitch {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.5rem 1.4rem 1.4rem;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.pitch:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(4, 40, 58, 0.12);
  border-color: color-mix(in srgb, var(--tone, var(--brand)) 35%, var(--line));
}

.pitch-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
  color: var(--tone, var(--brand));
  background: color-mix(in srgb, var(--tone, var(--brand)) 14%, #fff);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--tone, var(--brand)) 18%, transparent);
}

.pitch-icon svg {
  width: 22px;
  height: 22px;
}

.pitch h3 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.45rem;
  color: var(--ink);
}

.pitch p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: none;
}

.tone-green { --tone: #2e7d32; }
.tone-amber { --tone: #ef6c00; }
.tone-rose { --tone: #c62828; }
.tone-teal { --tone: #00796b; }
.tone-coral { --tone: #e65100; }
.tone-blue { --tone: #1565c0; }
.tone-violet { --tone: #6a1b9a; }
.tone-cyan { --tone: #00838f; }
.tone-navy { --tone: #064663; }
.tone-gold { --tone: #c47a00; }
.tone-mint { --tone: #00897b; }
.tone-slate { --tone: #546e7a; }

/* Marketplace panel */
.section-market {
  padding-top: 0;
}

.market-panel {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2rem;
  align-items: center;
  background:
    radial-gradient(ellipse 50% 80% at 100% 0%, rgba(31, 168, 160, 0.35), transparent 55%),
    linear-gradient(135deg, #04344a, #0a5c72);
  color: #fff;
  border-radius: calc(var(--radius) + 8px);
  padding: 2.75rem 2.5rem;
  box-shadow: var(--shadow);
}

.market-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 0.85rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.market-panel p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.85);
  max-width: 34rem;
  margin: 0;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.7);
}

.market-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
}

.market-tags span {
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-weight: 600;
  font-size: 0.9rem;
}

/* Sections */
.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: var(--sand);
}

.section-head {
  margin-bottom: 2.75rem;
  max-width: 38rem;
}

.section-head h2,
.split-copy h2,
.feature-text h3,
.cta-band h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.85rem;
  color: var(--ink);
}

.section-head h2,
.split-copy h2,
.cta-band h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
}

.feature-text h3 {
  font-size: 1.45rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.65rem;
}

.checklist li {
  position: relative;
  padding-left: 1.6rem;
  font-weight: 500;
  color: var(--ink);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

/* Scan stage */
.scan-stage {
  background: linear-gradient(160deg, #04344a, #0a6a8a);
  border-radius: calc(var(--radius) + 6px);
  padding: 2rem;
  color: #fff;
  box-shadow: var(--shadow);
}

.scan-frame {
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  height: 180px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.2);
}

.scan-line {
  position: absolute;
  left: 8%;
  right: 8%;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 16px var(--accent);
  animation: scan 2.4s ease-in-out infinite;
}

@keyframes scan {
  0%,
  100% {
    top: 18%;
  }
  50% {
    top: 78%;
  }
}

.scan-code {
  font-family: ui-monospace, monospace;
  letter-spacing: 0.08em;
  opacity: 0.85;
  font-size: 0.95rem;
}

.scan-result {
  margin-top: 1.1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.scan-result span {
  opacity: 0.8;
  font-size: 0.9rem;
}

/* Feature blocks */
.feature-blocks {
  display: grid;
  gap: 1.5rem;
}

.feature-block {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.feature-block:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.feature-block.reverse {
  grid-template-columns: 0.8fr 1.2fr;
}

.feature-block.reverse .feature-text {
  order: 2;
}

.feature-block.reverse .mini-mock {
  order: 1;
}

.mini-mock {
  background: linear-gradient(180deg, #f4f8f9, #e8f1f4);
  border-radius: 14px;
  padding: 1.1rem;
  border: 1px solid var(--line);
}

.mini-title {
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 0.85rem;
  color: var(--brand);
}

.mini-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--line);
  color: var(--ink-soft);
}

.mini-line b {
  color: var(--ink);
  font-weight: 600;
}

.mini-total {
  margin-top: 0.85rem;
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}

.mini-total b {
  color: var(--brand);
  font-family: var(--font-display);
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.pill {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem 1.15rem;
}

.pill strong {
  display: block;
  font-family: var(--font-display);
  margin-bottom: 0.25rem;
}

.pill span {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* Platform */
.platform-badges {
  display: grid;
  gap: 1rem;
}

.os-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem 1.4rem;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(4, 40, 58, 0.06);
}

.os-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--brand);
  color: #fff;
  font-size: 1.35rem;
}

.os-icon.android {
  background: #1fa8a0;
  font-size: 0.95rem;
}

.os-card strong {
  display: block;
  font-family: var(--font-display);
}

.os-card small {
  color: var(--ink-soft);
}

/* FAQ */
.faq {
  display: grid;
  gap: 0.75rem;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.35rem 1.15rem 0.35rem;
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  padding: 0.95rem 0;
  font-family: var(--font-display);
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq details[open] summary {
  color: var(--brand);
}

.faq p {
  margin: 0 0 1rem;
  max-width: none;
}

/* CTA band */
.cta-band {
  background:
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(31, 168, 160, 0.35), transparent 55%),
    linear-gradient(145deg, #04344a, #064663 55%, #0a5c72);
  color: #fff;
}

.cta-band h2,
.cta-band p {
  color: #fff;
}

.cta-band p {
  opacity: 0.9;
  margin-inline: auto;
}

.cta-inner {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.store-badge {
  min-width: 150px;
  padding: 0.75rem 1.1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-weight: 600;
  transition: background 0.2s ease;
  text-align: center;
}

.store-badge:hover {
  background: rgba(255, 255, 255, 0.2);
}

.store-badge.is-soon {
  opacity: 0.72;
  cursor: default;
  font-weight: 500;
  font-size: 0.92rem;
}

.store-badge.is-soon:hover {
  background: rgba(255, 255, 255, 0.12);
}

.fineprint {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  opacity: 0.75;
}

.fineprint a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Footer */
.site-footer {
  padding: 3rem 0 2.5rem;
  background: #041e2a;
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  display: grid;
  gap: 0.75rem;
  justify-items: start;
}

.site-footer .brand img {
  height: 32px;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.footer-links a:hover {
  color: #fff;
}

.copy {
  margin: 1rem 0 0;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* Reveal motion */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.12s;
}

/* Responsive */
@media (max-width: 960px) {
  .pitch-grid,
  .catalog {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid,
  .market-panel {
    grid-template-columns: 1fr 1fr;
  }

  .market-tags {
    justify-content: flex-start;
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .feature-block,
  .feature-block.reverse,
  .pill-grid {
    grid-template-columns: 1fr;
  }

  .feature-block.reverse .feature-text,
  .feature-block.reverse .mini-mock {
    order: initial;
  }

  .hero {
    min-height: auto;
    padding-top: 2.5rem;
  }

  .stats-strip {
    margin-top: 0;
    padding: 0 0 0.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .float-a,
  .float-b {
    display: none;
  }

  .nav {
    position: fixed;
    inset: 72px 1rem auto;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    padding: 1rem;
    border-radius: 16px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: none;
  }

  .nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 1.5rem, var(--max));
  }

  .cta-row .btn {
    width: 100%;
  }

  .catalog,
  .pitch-grid,
  .stats-grid,
  .market-panel {
    grid-template-columns: 1fr;
  }

  .market-panel {
    padding: 1.75rem 1.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .float-card,
  .scan-line,
  .btn {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
