/* ─── RESET & BASE ──────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg: #FAFAFA;
  --color-bg-alt: #FFFFFF;
  --color-bg-subtle: #F2F2F7;
  --color-text: #1D1D1F;
  --color-text-secondary: #6E6E73;
  --color-text-tertiary: #AEAEB2;
  --color-accent: #007AFF;
  --color-accent-hover: #0066DD;
  --color-success: #34C759;
  --color-warn: #FF9500;
  --color-border: rgba(0, 0, 0, 0.08);
  --color-border-strong: rgba(0, 0, 0, 0.12);

  /* Apple Intelligence gradient */
  --ai-grad-start: #BF5AF2;
  --ai-grad-mid: #5E5CE6;
  --ai-grad-end: #32ADE6;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.06), 0 0 1px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-window: 0 20px 60px rgba(0, 0, 0, 0.18), 0 8px 24px rgba(0, 0, 0, 0.10);

  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --font-mono: "SF Mono", "Fira Code", monospace;

  --nav-height: 60px;
  --max-width: 1100px;
  --section-pad: 100px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ─── SCROLL ANIMATIONS ─────────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in--delay  { transition-delay: 0.15s; }
.fade-in--delay-2 { transition-delay: 0.30s; }
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── BADGES ─────────────────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.badge--coming-soon {
  background: var(--color-bg-subtle);
  color: var(--color-text-secondary);
  border: 1px solid var(--color-border-strong);
}
.badge--platform {
  background: rgba(0, 122, 255, 0.08);
  color: var(--color-accent);
  border: 1px solid rgba(0, 122, 255, 0.15);
}
.badge--ai {
  background: linear-gradient(135deg, rgba(191, 90, 242, 0.10), rgba(50, 173, 230, 0.10));
  color: #7D3CF8;
  border: 1px solid rgba(191, 90, 242, 0.25);
}

/* ─── BUTTONS ────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.12s ease, opacity 0.18s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--color-accent);
  color: #fff;
}
.btn--primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
}
.btn--primary:active {
  transform: translateY(0);
}

/* ─── NAVIGATION ─────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 100;
  background: rgba(250, 250, 250, 0.82);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.2s ease;
}
.nav.is-scrolled {
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}
.nav__name {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-text);
}

/* ─── SECTIONS — SHARED ──────────────────────────────────────────────────── */
.section {
  padding: var(--section-pad) 24px;
}
.section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section__header {
  text-align: center;
  margin-bottom: 64px;
}
.section__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}
.section__title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: 16px;
}
.section__title--light { color: #fff; }
.section__sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}
.section__sub--light { color: rgba(255, 255, 255, 0.72); }

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 80px;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: var(--max-width);
  margin: 0 auto;
  flex-wrap: wrap;
}

.hero__content {
  flex: 1;
  min-width: 300px;
  max-width: 520px;
}
.hero__eyebrow {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero__headline {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--color-text);
  margin-bottom: 20px;
}
.hero__sub {
  font-size: 19px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-bottom: 32px;
}
.hero__form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.hero__input {
  flex: 1;
  min-width: 200px;
  font-family: var(--font);
  font-size: 15px;
  padding: 10px 14px;
  border: 1.5px solid var(--color-border-strong);
  border-radius: var(--radius-md);
  background: var(--color-bg-alt);
  color: var(--color-text);
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.hero__input:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.12);
}
.hero__input::placeholder { color: var(--color-text-tertiary); }
.hero__form-success {
  display: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-success);
  margin-bottom: 12px;
}
.hero__form-success.is-visible { display: block; }
.hero__disclaimer {
  font-size: 13px;
  color: var(--color-text-tertiary);
}

/* Hero macOS window */
.hero__mockup {
  flex: 1;
  min-width: 320px;
  max-width: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ─── macOS WINDOW ───────────────────────────────────────────────────────── */
.macos-window {
  background: var(--color-bg-alt);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-window);
  overflow: hidden;
  border: 1px solid var(--color-border);
  width: 100%;
}
.macos-window--hero {
  max-width: 520px;
}
.macos-window--screenshot {
  max-width: 100%;
}
.macos-window__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 12px 14px;
  background: #F2F2F7;
  border-bottom: 1px solid var(--color-border);
  position: relative;
}
.macos-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.macos-dot--red    { background: #FF5F57; }
.macos-dot--yellow { background: #FEBC2E; }
.macos-dot--green  { background: #28C840; }
.macos-window__title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text-secondary);
  pointer-events: none;
}
.macos-window__body {
  padding: 16px;
}

/* Hero Preview */
.hero-preview {
  display: flex;
  gap: 0;
  padding: 0;
  min-height: 300px;
}
.hero-preview__sidebar {
  width: 148px;
  flex-shrink: 0;
  border-right: 1px solid var(--color-border);
  padding: 12px 8px;
  background: #F8F8FA;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 500;
  color: var(--color-text-secondary);
  cursor: default;
  transition: background 0.15s ease;
}
.sidebar-item--active {
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
}
.sidebar-icon { font-size: 13px; }

.hero-preview__main {
  flex: 1;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}
.preview-card {
  background: var(--color-bg-subtle);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  border: 1px solid var(--color-border);
}
.preview-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
  margin-bottom: 6px;
}
.preview-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
}
.preview-value--muted {
  font-weight: 400;
  color: var(--color-text-secondary);
  font-size: 12px;
  line-height: 1.5;
}
.preview-value--sm { font-size: 12px; font-weight: 500; }
.preview-card--ai {
  background: linear-gradient(135deg, rgba(191, 90, 242, 0.07), rgba(50, 173, 230, 0.07));
  border-color: rgba(191, 90, 242, 0.20);
}
.preview-ai-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--ai-grad-start), var(--ai-grad-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

/* ─── FEATURES ───────────────────────────────────────────────────────────── */
.features {
  background: var(--color-bg-alt);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.feature-card__icon {
  font-size: 36px;
  margin-bottom: 20px;
}
.feature-card__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--color-text);
}
.feature-card__body {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-secondary);
}

/* ─── APPLE INTELLIGENCE ─────────────────────────────────────────────────── */
.ai-section {
  background: linear-gradient(160deg, #1A1A2E 0%, #16213E 50%, #0F3460 100%);
  position: relative;
  overflow: hidden;
}
.ai-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 40%, rgba(191, 90, 242, 0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 60%, rgba(50, 173, 230, 0.15) 0%, transparent 60%);
  pointer-events: none;
}
.ai-section__header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
}
.ai-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(90deg, var(--ai-grad-start), var(--ai-grad-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}
.ai-sparkle {
  width: 16px;
  height: 16px;
  background: linear-gradient(90deg, var(--ai-grad-start), var(--ai-grad-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: var(--ai-grad-start);
  flex-shrink: 0;
}
.ai-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  position: relative;
}
.ai-card {
  background: rgba(255, 255, 255, 0.05);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.ai-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}
.ai-card__number {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, var(--ai-grad-start), var(--ai-grad-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 14px;
}
.ai-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.ai-card__body {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
}
.ai-card__pill {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.10);
}

/* ─── SPLIT LAYOUTS ──────────────────────────────────────────────────────── */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-layout--reverse {
  direction: rtl;
}
.split-layout--reverse > * {
  direction: ltr;
}
.split-layout__text .section__eyebrow {
  margin-bottom: 12px;
}
.split-layout__text .section__title {
  margin-bottom: 16px;
}
.split-layout__text .section__sub {
  margin: 0 0 28px 0;
  text-align: left;
  max-width: none;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text-secondary);
}
.feature-list__check {
  color: var(--color-success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── ATS SECTION ────────────────────────────────────────────────────────── */
.ats-section {
  background: var(--color-bg);
}

/* ATS Preview */
.ats-preview {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ats-score {
  display: flex;
  align-items: center;
  gap: 16px;
}
.ats-score__ring {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}
.ats-score__svg {
  width: 80px;
  height: 80px;
  transform: rotate(-90deg);
}
.ats-score__track {
  fill: none;
  stroke: var(--color-bg-subtle);
  stroke-width: 7;
}
.ats-score__fill {
  fill: none;
  stroke: url(#atsGrad);
  stroke-width: 7;
  stroke-linecap: round;
  stroke: var(--color-accent);
  transition: stroke-dashoffset 1s ease;
}
.ats-score__label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ats-score__num {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--color-text);
}
.ats-score__pct {
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-secondary);
  align-self: flex-end;
  margin-bottom: 4px;
}
.ats-score__title {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 3px;
}
.ats-score__sub {
  font-size: 12px;
  color: var(--color-text-secondary);
}
.ats-suggestions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ats-suggestion {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  line-height: 1.5;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  background: var(--color-bg-subtle);
}
.ats-suggestion--warn {
  background: rgba(255, 149, 0, 0.08);
  color: #8B4900;
}
.ats-suggestion--ok {
  background: rgba(52, 199, 89, 0.08);
  color: #1A6B30;
}
.ats-suggestion__icon {
  flex-shrink: 0;
  font-weight: 700;
}

/* ─── TAILOR SECTION ─────────────────────────────────────────────────────── */
.tailor-section {
  background: var(--color-bg-alt);
}

/* Tailor Preview */
.tailor-preview {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.tailor-input__label,
.tailor-output__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
  margin-bottom: 8px;
}
.tailor-input__box {
  background: var(--color-bg-subtle);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: 12px 14px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--color-text-secondary);
  position: relative;
  overflow: hidden;
  max-height: 70px;
}
.tailor-input__fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 28px;
  background: linear-gradient(transparent, var(--color-bg-subtle));
}
.tailor-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
}
.tailor-arrow__line {
  width: 2px;
  height: 28px;
  background: linear-gradient(180deg, var(--ai-grad-start), var(--ai-grad-end));
  border-radius: 1px;
}
.tailor-arrow__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: linear-gradient(90deg, var(--ai-grad-start), var(--ai-grad-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.tailor-arrow__shimmer {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(191,90,242,0.4), rgba(50,173,230,0.4), transparent);
  background-size: 200% 100%;
  animation: shimmerSlide 2s linear infinite;
  border-radius: 1px;
}
.tailor-output__rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tailor-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
}
.tailor-row--included {
  background: rgba(52, 199, 89, 0.07);
  color: var(--color-text);
}
.tailor-row--excluded {
  background: var(--color-bg-subtle);
  color: var(--color-text-tertiary);
}
.tailor-row__check {
  font-weight: 700;
  flex-shrink: 0;
  color: var(--color-success);
}
.tailor-row--excluded .tailor-row__check { color: var(--color-text-tertiary); }
.tailor-row__badge {
  margin-left: auto;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  background: rgba(52, 199, 89, 0.12);
  color: #1A6B30;
}
.tailor-row__badge--dim {
  background: var(--color-border);
  color: var(--color-text-tertiary);
}

/* ─── SCREENSHOTS ─────────────────────────────────────────────────────────── */
.screenshots-section {
  background: var(--color-bg);
}
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.screenshot-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.screenshot-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.16), 0 4px 12px rgba(0, 0, 0, 0.1);
}
.screenshot-img {
  display: block;
  width: 100%;
  height: auto;
}

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.footer {
  background: var(--color-text);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--section-pad) 24px;
}
.footer__inner {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.footer__icon {
  width: 44px;
  height: 44px;
  border-radius: 11px;
}
.footer__name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}
.footer__tagline {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 32px;
}
.footer__cta {
  width: 100%;
}
.footer__cta-label {
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 14px;
}
.footer__form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
}
.footer__form .hero__input {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.footer__form .hero__input:focus {
  border-color: var(--color-accent);
}
.footer__form .hero__input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.footer__form-success {
  display: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-success);
  padding: 8px 0;
}
.footer__form-success.is-visible { display: block; }
.footer__meta {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer__platform {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
}
.footer__apple-logo {
  width: 14px;
  height: 14px;
  fill: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}
.footer__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
}

/* ─── ANIMATIONS ─────────────────────────────────────────────────────────── */
@keyframes shimmerSlide {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@keyframes shimmerPulse {
  0%, 100% { opacity: 0.6; }
  50%       { opacity: 1.0; }
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .split-layout--reverse {
    direction: ltr;
  }
}

@media (max-width: 700px) {
  :root { --section-pad: 72px; }

  .hero {
    flex-direction: column;
    gap: 48px;
    padding-top: calc(var(--nav-height) + 48px);
    text-align: center;
  }
  .hero__content {
    max-width: 100%;
  }
  .hero__eyebrow {
    justify-content: center;
  }
  .hero__form {
    justify-content: center;
  }
  .hero-preview__sidebar {
    display: none;
  }

  .features__grid,
  .ai-cards,
  .screenshots-grid {
    grid-template-columns: 1fr;
  }

  .split-layout__text .section__title,
  .split-layout__text .section__sub {
    text-align: center;
  }
  .feature-list { align-items: flex-start; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 36px; }
  .hero__form { flex-direction: column; }
  .hero__form .btn { width: 100%; }
  .footer__form { flex-direction: column; align-items: stretch; }
  .footer__form .btn { width: 100%; }
}
