/* ============================================================
   노느다 (Noneuda) — 랜딩 페이지 공통 스타일
   정적 HTML/CSS 기반, 브랜드 컬러: Deep Forest + Warm Orange
   ============================================================ */

:root {
  color-scheme: light;

  /* Surfaces */
  --bg: #f8f7ee;
  --surface: #ffffff;
  --surface-alt: #f4f3ea;
  --surface-tint: #eef7f0;
  --surface-mint: #e6f5e9;

  /* Ink */
  --ink: #1a1c1c;
  --ink-80: rgba(26, 28, 28, 0.82);
  --ink-60: rgba(26, 28, 28, 0.6);
  --ink-50: rgba(26, 28, 28, 0.5);
  --ink-30: rgba(26, 28, 28, 0.3);
  --ink-10: rgba(26, 28, 28, 0.1);
  --muted: #5e635d;

  /* Brand */
  --brand: #1a4d2e;
  --brand-dark: #00361a;
  --brand-ink: #00280f;
  --brand-pale: #b8f0c5;
  --brand-soft: #d4f3db;
  --accent: #fe893c;
  --accent-soft: #ffdbc9;

  /* Semantic chips */
  --social-bg: #e8f0ff;
  --social-fg: #2d5eff;
  --level-bg: #ffeeea;
  --level-fg: #c25e00;
  --soon-bg: #fff4d6;
  --soon-fg: #946200;
  --beginner-bg: #e0f7f0;
  --beginner-fg: #1a4d2e;

  /* Lines */
  --line: #e9e7db;
  --line-strong: #d8d6ca;

  /* Effects */
  --shadow-sm: 0 4px 14px rgba(26, 77, 46, 0.06);
  --shadow-md: 0 12px 36px rgba(26, 77, 46, 0.08);
  --shadow-lg: 0 28px 80px rgba(26, 77, 46, 0.14);

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;

  /* Layout */
  --container: 1180px;
  --pad: 24px;

  --font-heading: "Plus Jakarta Sans", "Noto Sans KR", -apple-system,
    BlinkMacSystemFont, sans-serif;
  --font-body: "Inter", "Noto Sans KR", -apple-system, BlinkMacSystemFont,
    sans-serif;

  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-feature-settings: "ss02";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1,
h2,
h3,
h4,
p,
ul,
dl,
ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

/* ============================================================
   Skip link
   ============================================================ */
.skip-link {
  position: fixed;
  top: 0;
  left: 50%;
  z-index: 200;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  transform: translateX(-50%);
  padding: 12px 20px;
  border-radius: 0 0 12px 12px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: clip-path 0.18s ease, width 0.18s ease, height 0.18s ease;
}

.skip-link:focus,
.skip-link:focus-visible {
  width: auto;
  height: auto;
  overflow: visible;
  clip-path: none;
  outline: none;
}

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(26, 28, 28, 0.06);
  background: rgba(248, 247, 238, 0.86);
  backdrop-filter: saturate(140%) blur(18px);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
}

.nav,
.section-inner,
.footer-inner,
.footer-business,
.footer-bottom,
.legal-page {
  width: min(var(--container), calc(100% - var(--pad) * 2));
  margin: 0 auto;
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--brand);
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  animation: dango-bounce 3s ease-in-out infinite;
}

.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  color: var(--ink-60);
  font-size: 14.5px;
  font-weight: 600;
}

.nav-links a {
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}

.nav-links a:hover {
  color: var(--brand);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.nav-cta:hover {
  background: var(--brand);
  transform: translateY(-1px);
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  width: min(var(--container), calc(100% - var(--pad) * 2));
  margin: 0 auto;
  padding: 64px 0 96px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 56px;
  overflow: visible;
}

.hero-bg {
  position: absolute;
  inset: -40px -8vw 0 -8vw;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(26, 77, 46, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(26, 77, 46, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 30%, transparent 75%);
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.hero-blob--1 {
  width: 420px;
  height: 420px;
  background: var(--brand-pale);
  top: -120px;
  right: -120px;
}

.hero-blob--2 {
  width: 320px;
  height: 320px;
  background: var(--accent-soft);
  bottom: 10%;
  left: -80px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink-80);
  box-shadow: var(--shadow-sm);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px var(--brand-pale);
}

.hero-text h1 {
  margin: 18px 0 18px;
  font-family: var(--font-heading);
  font-size: clamp(40px, 6.4vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.text-gradient {
  background: linear-gradient(120deg, var(--brand) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  max-width: 520px;
  margin-bottom: 32px;
  color: var(--ink-60);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 500;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background var(--transition-fast);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.button.primary {
  border-color: transparent;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 28px rgba(26, 77, 46, 0.22);
}

.button.primary:hover {
  background: var(--brand-dark);
}

.button.ghost {
  background: transparent;
  border-color: var(--ink-10);
}

.arrow {
  display: inline-block;
  transition: transform var(--transition-fast);
}

.button.primary:hover .arrow {
  transform: translate(2px, -2px);
}

.kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 600px;
}

.kpis > div {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.kpis dt {
  font-size: 13px;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 4px;
}

.kpis dd {
  margin: 0;
  font-size: 13px;
  color: var(--ink-60);
  font-weight: 600;
}

/* Hero stage */
.hero-stage {
  position: relative;
  min-height: 640px;
  display: grid;
  place-items: center;
}

.stage-photo {
  position: absolute;
  top: 18px;
  right: -10px;
  width: min(64%, 320px);
  aspect-ratio: 1 / 1.1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(5deg);
}

.stage-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-chip {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 6px 10px;
  background: rgba(26, 28, 28, 0.78);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

/* Phone */
.phone {
  position: relative;
  z-index: 2;
  width: min(330px, 80vw);
  padding: 8px;
  border-radius: 44px;
  background: linear-gradient(180deg, #1b1d22, #0b0c10);
  box-shadow:
    var(--shadow-lg),
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.06);
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 28px;
  background: #0b0c10;
  border-radius: 999px;
  z-index: 3;
}

.phone-screen {
  position: relative;
  border-radius: 36px;
  background: var(--bg);
  min-height: 580px;
  overflow: hidden;
}

.app-top {
  padding: 44px 18px 16px;
  background:
    radial-gradient(120% 60% at 0% 0%, var(--brand-pale), transparent 60%),
    var(--surface);
}

.app-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.app-title-text {
  display: grid;
  gap: 2px;
}

.app-greet {
  font-size: 11.5px;
  color: var(--ink-60);
  font-weight: 600;
}

.app-title-text strong {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.app-title img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.search-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink-60);
  font-size: 13px;
  font-weight: 600;
}

.search-ico {
  color: var(--brand);
  font-weight: 900;
}

.chip-row {
  display: flex;
  gap: 6px;
  margin-top: 12px;
  overflow: hidden;
}

.chip {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--surface-alt);
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-80);
  white-space: nowrap;
}

.chip-brand {
  background: var(--brand-pale);
  color: var(--brand-ink);
}

.match-list {
  display: grid;
  gap: 12px;
  padding: 14px;
  background: var(--bg);
}

.match-card {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.match-card img {
  width: 100%;
  height: 96px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.match-meta {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.meta-pill {
  font-size: 11px;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 999px;
}

.meta-social {
  background: var(--social-bg);
  color: var(--social-fg);
}

.meta-level {
  background: var(--level-bg);
  color: var(--level-fg);
}

.meta-soon {
  background: var(--soon-bg);
  color: var(--soon-fg);
}

.meta-beginner {
  background: var(--beginner-bg);
  color: var(--beginner-fg);
}

.match-card h3 {
  font-size: 14.5px;
  margin-bottom: 4px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.match-card p {
  color: var(--ink-60);
  font-size: 12.5px;
  margin-bottom: 10px;
}

.host-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-top: 8px;
  border-top: 1px dashed var(--line);
  font-size: 12px;
  color: var(--ink-60);
  font-weight: 600;
}

.host-row .host-name {
  flex: 1;
  color: var(--ink);
}

.host-row .score {
  color: var(--brand-dark);
  font-weight: 800;
}

.avatar {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--brand-pale);
  color: var(--brand-dark);
  font-size: 11px;
  font-weight: 800;
}

.avatar.sm {
  width: 22px;
  height: 22px;
  font-size: 10.5px;
}

.avatar.lg {
  width: 44px;
  height: 44px;
  font-size: 16px;
}

.avatar.xl {
  width: 56px;
  height: 56px;
  font-size: 18px;
}

.floating-card {
  position: absolute;
  left: -10px;
  bottom: 40px;
  width: 220px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  z-index: 4;
  animation: float 5s ease-in-out infinite;
}

.float-label {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 800;
  color: var(--brand);
}

.floating-card p {
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}

.float-time {
  font-size: 11px;
  color: var(--ink-50);
}

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

@keyframes dango-bounce {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.06) rotate(-2deg);
  }
}

/* ============================================================
   Generic Section
   ============================================================ */
.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--brand-pale);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.eyebrow.light {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.section {
  padding: 110px 0;
  border-top: 1px solid var(--line);
}

.section h2 {
  font-family: var(--font-heading);
  font-size: clamp(34px, 4.4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin-bottom: 14px;
  max-width: 760px;
}

.section-copy {
  max-width: 660px;
  color: var(--ink-60);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 500;
}

/* ============================================================
   Value Section
   ============================================================ */
.value-section {
  background: var(--surface);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.value-card {
  position: relative;
  padding: 28px 26px 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  transition: transform var(--transition-base), box-shadow var(--transition-base),
    border-color var(--transition-base);
  isolation: isolate;
  overflow: hidden;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-soft);
}

.value-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--brand-soft), transparent 40%);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: -1;
}

.value-card:hover::before {
  opacity: 0.45;
}

.value-num {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: 0.06em;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--ink-60);
  font-size: 15px;
  line-height: 1.7;
}

/* ============================================================
   Feature List
   ============================================================ */
.feature-list {
  margin-top: 56px;
  display: grid;
  gap: 80px;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse > * {
  direction: ltr;
}

.feature-tag {
  display: inline-block;
  margin-bottom: 16px;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.feature-copy h3 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.02em;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.18;
}

.feature-copy p {
  color: var(--ink-60);
  font-size: 16.5px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.check-list {
  display: grid;
  gap: 10px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink-80);
}

.check {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-pale);
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}

.feature-visual {
  display: grid;
  place-items: center;
  min-height: 360px;
}

.mock {
  width: min(360px, 100%);
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 12px;
}

.mock-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.mock-head strong {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.filter-row {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.range-block {
  padding: 14px;
  border-radius: 12px;
  background: var(--surface-tint);
  display: grid;
  gap: 6px;
}

.range-block span {
  font-size: 12px;
  color: var(--ink-60);
  font-weight: 700;
}

.range-block strong {
  font-size: 16px;
  font-weight: 800;
}

.range-track {
  position: relative;
  height: 6px;
  background: var(--line);
  border-radius: 999px;
  margin-top: 4px;
}

.range-fill {
  position: absolute;
  left: 20%;
  right: 18%;
  top: 0;
  bottom: 0;
  background: var(--brand);
  border-radius: 999px;
}

.range-fill::before,
.range-fill::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--brand);
  top: 50%;
  transform: translateY(-50%);
}

.range-fill::before {
  left: -8px;
}

.range-fill::after {
  right: -8px;
}

.fav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
}

.fav-item .heart {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 14px;
}

.fav-item strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
}

.fav-item span {
  display: block;
  font-size: 12px;
  color: var(--ink-60);
  font-weight: 600;
}

.chat-line {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.chat-line.me {
  justify-content: flex-end;
}

.bubble {
  max-width: 75%;
  padding: 10px 14px;
  border-radius: 16px;
  background: var(--surface-alt);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.5;
}

.bubble.brand {
  background: var(--brand);
  color: #fff;
}

.my-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.my-top strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
}

.my-top span {
  font-size: 12.5px;
  color: var(--ink-60);
  font-weight: 600;
}

.my-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.my-stats > div {
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  background: var(--surface-tint);
}

.my-stats strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.my-stats span {
  display: block;
  font-size: 11.5px;
  color: var(--ink-60);
  font-weight: 700;
  margin-top: 2px;
}

.my-list {
  display: grid;
  gap: 4px;
  padding-top: 4px;
}

.my-list > span {
  font-size: 12px;
  color: var(--ink-60);
  font-weight: 800;
}

.my-list p {
  font-size: 13px;
  color: var(--ink-80);
}

.mock-home .home-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
}

.mock-home .home-card strong {
  display: block;
  font-size: 14.5px;
  font-weight: 800;
}

.mock-home .home-card span {
  display: block;
  font-size: 12px;
  color: var(--ink-60);
  margin-top: 2px;
  font-weight: 600;
}

/* ============================================================
   How it works
   ============================================================ */
.how-section {
  background: var(--surface);
}

.step-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 44px;
}

.step-card {
  position: relative;
  z-index: 1;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.step-no {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 12px;
  background: var(--ink);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.step-card:nth-child(2) .step-no {
  background: var(--brand);
}

.step-card:nth-child(3) .step-no {
  background: var(--accent);
  color: var(--ink);
}

.step-card:nth-child(4) .step-no {
  background: var(--brand-dark);
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.step-card p {
  color: var(--ink-60);
  font-size: 15px;
  line-height: 1.7;
}

.step-line {
  position: absolute;
  z-index: 0;
  top: 46px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--line-strong) 0 6px,
    transparent 6px 12px
  );
}

/* ============================================================
   Trust
   ============================================================ */
.trust-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.trust-list {
  margin-top: 26px;
  display: grid;
  gap: 12px;
}

.trust-list li {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
}

.trust-list strong {
  font-size: 14.5px;
  font-weight: 800;
}

.trust-list span {
  color: var(--ink-60);
  font-size: 14px;
}

.trust-card {
  position: sticky;
  top: 90px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-lg);
}

.trust-card-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.trust-card-top strong {
  display: block;
  font-size: 16px;
  font-weight: 800;
}

.trust-card-top span {
  font-size: 12.5px;
  color: var(--ink-60);
  font-weight: 600;
}

.trust-badge {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--soon-fg);
  font-size: 12px;
  font-weight: 800;
}

.score-bars {
  display: grid;
  gap: 14px;
  padding: 18px 0;
}

.score-bar-head {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-80);
  margin-bottom: 6px;
}

.score-bar-head strong {
  color: var(--brand-dark);
  font-weight: 800;
}

.score-bar-track {
  height: 8px;
  background: var(--surface-alt);
  border-radius: 999px;
  overflow: hidden;
}

.score-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand) 0%, #4caf50 100%);
  border-radius: 999px;
}

.recent-reviews {
  display: grid;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.review-eyebrow {
  font-size: 12px;
  font-weight: 800;
  color: var(--ink-60);
}

.recent-reviews blockquote {
  margin: 0;
  padding: 12px 14px;
  background: var(--surface-tint);
  border-radius: 12px;
  font-size: 13.5px;
  color: var(--ink-80);
  line-height: 1.5;
  font-weight: 600;
}

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

.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: start;
}

.faq-layout a {
  color: var(--brand-dark);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 4px 20px;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item[open] {
  border-color: var(--ink-10);
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-size: 16px;
  font-weight: 800;
  list-style: none;
  cursor: pointer;
  letter-spacing: -0.01em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-arrow {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface-alt);
  font-size: 16px;
  font-weight: 800;
  color: var(--ink-80);
  transition: transform 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
}

.faq-item[open] .faq-arrow {
  transform: rotate(45deg);
  background: var(--brand-pale);
  color: var(--brand-dark);
}

.faq-item p {
  padding: 0 0 20px;
  color: var(--ink-60);
  font-size: 15px;
  line-height: 1.75;
}

/* ============================================================
   Download CTA
   ============================================================ */
.cta-section {
  border-top: none;
  background: linear-gradient(
    135deg,
    #0f1115 0%,
    #1b3b1f 80%,
    var(--brand-dark) 100%
  );
  color: #fff;
}

.cta-section .eyebrow.light {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.cta-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 56px;
  align-items: center;
}

.cta-text h2 {
  color: #fff;
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.6vw, 56px);
  letter-spacing: -0.025em;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.75;
  margin: 14px 0 28px;
  max-width: 540px;
}

.store-button {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  height: 60px;
  padding: 0 22px;
  border-radius: 14px;
  background: #fff;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 700;
  min-width: 200px;
  transition: transform var(--transition-fast);
}

.store-button:hover {
  transform: translateY(-2px);
}

.store-small {
  font-size: 11.5px;
  color: var(--ink-60);
  font-weight: 700;
}

.store-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.cta-visual {
  display: grid;
  place-items: center;
}

.cta-visual img {
  width: 180px;
  height: 180px;
  border-radius: 44px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  transform: rotate(-6deg);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  padding: 64px 0 28px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 40px;
}

.footer-brand p {
  color: var(--ink-60);
  font-size: 14px;
  margin-top: 12px;
  max-width: 260px;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.footer-col a {
  display: block;
  color: var(--ink-60);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--brand);
}

.footer-business {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-50);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.7;
}

.footer-business span {
  min-width: 0;
  overflow-wrap: anywhere;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--ink-50);
  font-size: 13px;
  font-weight: 600;
}

/* ============================================================
   Legal pages
   ============================================================ */
.legal-page {
  max-width: 880px;
  padding: 72px 0 96px;
}

.legal-page h1 {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.025em;
  font-weight: 800;
}

.legal-header {
  padding: 48px 0 32px;
  text-align: center;
  border-bottom: 1px solid var(--line);
  margin-bottom: 48px;
}

.legal-dates {
  margin-top: 10px;
  font-size: 14px;
  color: var(--ink-60);
}

.legal-page h2 {
  margin-top: 40px;
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--brand);
}

.legal-page h3 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 700;
}

.legal-page p,
.legal-page li {
  color: var(--ink-80);
  font-size: 15.5px;
  line-height: 1.8;
}

.legal-page p {
  margin-bottom: 12px;
}

.legal-page ul,
.legal-page ol {
  padding-left: 20px;
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}

.legal-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0 20px;
  font-size: 14px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  background: var(--surface);
}

.legal-page th,
.legal-page td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.legal-page th {
  background: var(--brand-pale);
  color: var(--brand-dark);
  font-weight: 700;
}

.legal-page .highlight {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--brand-ink);
  font-weight: 600;
}

.notice {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--brand-pale);
  color: var(--brand-ink);
  font-weight: 600;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .feature-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .feature-row.reverse {
    direction: ltr;
  }

  .trust-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .trust-card {
    position: relative;
    top: 0;
  }

  .cta-inner {
    grid-template-columns: 1fr;
  }

  .cta-visual {
    order: -1;
  }

  .cta-visual img {
    width: 140px;
    height: 140px;
    border-radius: 32px;
  }

  .step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-line {
    display: none;
  }
}

@media (max-width: 880px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 40px 0 72px;
    gap: 36px;
  }

  .hero-stage {
    min-height: 0;
    padding-top: 12px;
  }

  .stage-photo {
    position: relative;
    width: min(80%, 320px);
    margin: 0 auto -120px;
    transform: rotate(3deg);
    z-index: 0;
  }

  .phone-main {
    margin: 0 auto;
  }

  .floating-card {
    position: relative;
    left: 0;
    bottom: 0;
    width: min(92%, 320px);
    margin: -28px auto 0;
    animation: none;
  }

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

  .section {
    padding: 80px 0;
  }

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

@media (max-width: 640px) {
  .nav {
    display: grid;
    grid-template-columns: 1fr;
    padding: 12px 0;
    min-height: auto;
    gap: 12px;
  }

  .nav-links {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    column-gap: clamp(18px, 7vw, 34px);
    row-gap: 6px;
    font-size: 13px;
  }

  .nav-cta {
    display: none;
  }

  .hero-text h1 {
    font-size: 40px !important;
  }

  .lead {
    font-size: 16.5px;
  }

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

  .trust-list li {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

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

  .footer-business {
    display: grid;
    gap: 4px;
  }

  .button {
    height: 48px;
    padding: 0 18px;
  }

  .store-button {
    width: 100%;
  }
}

/* ============================================================
   Accessibility — Focus ring
   ============================================================ */
:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 6px;
}

.button:focus-visible,
.nav-cta:focus-visible,
.store-button:focus-visible {
  outline-offset: 4px;
}

.faq-item summary:focus-visible {
  outline-offset: 4px;
  border-radius: 10px;
}

/* ============================================================
   FAQ content animation
   ============================================================ */
.faq-item p {
  animation: faq-fade 0.22s ease-out both;
}

@keyframes faq-fade {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   Scroll-reveal — CSS-only progressive enhancement
   ============================================================ */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .reveal {
      animation: reveal-in linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 22%;
    }

    @keyframes reveal-in {
      from {
        opacity: 0;
        transform: translateY(28px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
  }
}

/* ============================================================
   Reduced motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
