/**
 * Seyfr Landing Pages — Design System
 * Philosophy: well-typeset technical article, not a template landing page.
 * Influences: Apple support, Wormhole, Linear docs, 1Password help.
 */

/* ── Hero section — editorial figure below headline ────────────── */
.lp-hero { margin-bottom: 48px; }
.lp-hero-visual { margin-top: 24px; }
.lp-hero-visual img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  border: 1px solid var(--border);
}


/* ── Tokens ──────────────────────────────────────────────────── */
:root {
  --ink:       #1d1d1f;
  --ink-2:     #515154;
  --ink-3:     #6e6e73;
  --body:      #3d3d40;
  --surface:   #f5f5f7;
  --card:      #ffffff;
  --border:    #e5e5ea;

  --accent:       #1d1d1f;
  --accent-light: #f3f3f5;

  --r:    10px;   /* single radius — not a rounded-corner festival */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Platform accents ─────────────────────────────────────────── */
[data-platform="android"] { --accent: #1a7f3c; --accent-light: #e8f5ed; }
[data-platform="apple"]   { --accent: #004fc4; --accent-light: #e8f0fe; }
[data-platform="alt"]     { --accent: #b94600; --accent-light: #fff0e8; }
[data-platform="general"] { --accent: #5b21b6; --accent-light: #f3f0ff; }

/* ── Responsive type (Proportion) ─────────────────────────────── */
h2 {
  font-size: clamp(20px, 3vw, 26px);
  margin-top: 56px;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
h3 {
  font-size: clamp(16px, 2.2vw, 19px);
  margin-top: 32px;
  margin-bottom: 8px;
}

/* ── Page label (Emphasis — barely there) ─────────────────────── */
/* Not a pill chip. Just a small uppercase label, like a magazine section tag. */
.page-badge {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  opacity: 0.85;
}

/* No background, no pill, no animation. The accent color is enough. */

/* ── Breadcrumb ───────────────────────────────────────────────── */
.breadcrumb {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 28px;
}

/* ── Key facts — removed the 3-col template grid.                ─ */
/* Instead: a single clean inline summary line. */
.lp-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 0 0 36px;
  background: transparent;
  border-radius: 0;  /* no card shape — just two rules */
  border-left: none;
  border-right: none;
}
.lp-fact {
  padding: 11px 20px 11px 0;
  border-right: none;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  background: transparent;
  flex: 0 0 auto;
}
.lp-fact-icon {
  width: 14px;
  height: 14px;
  color: var(--accent);
  flex-shrink: 0;
  opacity: 0.7;
}
.lp-fact-text { display: flex; gap: 5px; align-items: baseline; }
.lp-fact-title {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
}
.lp-fact-desc {
  font-size: 12px;
  color: var(--ink-3);
}
.lp-fact:not(:last-child)::after {
  content: '·';
  color: var(--border);
  margin-left: 20px;
  font-size: 16px;
  line-height: 1;
}
@media (max-width: 540px) {
  .lp-facts { gap: 4px; border: none; border-top: 1px solid var(--border); }
  .lp-fact  { padding: 6px 0; }
  .lp-fact:not(:last-child)::after { display: none; }
}

/* ── Step cards ───────────────────────────────────────────────── */
/* Simple, flat. Shadow is light — just enough to lift off the page. */
.step-card {
  border-radius: var(--r);
  border: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  transition: box-shadow 0.15s var(--ease);
}
.step-card:hover {
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Step number: outlined square, not a filled circle */
.step-num {
  background: transparent !important;
  color: var(--accent) !important;
  border: 1.5px solid var(--accent) !important;
  border-radius: 5px !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  width: 26px !important;
  height: 26px !important;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none !important;
}

.steps-visual { gap: 10px !important; }
.step-connector { display: none; }

/* ── No section alternating wrappers ─────────────────────────── */
/* Alternating card-wrapped sections = template pattern. Removed. */
.lp-section     { background: transparent; border: none; padding: 0; margin: 0; }
.lp-section-alt { background: transparent; border: none; }



/* ── Callout — plain blockquote style, no colored card ────────── */
/* Colored left border + tinted bg + rounded corners = every AI template ever. */
.callout {
  border: none !important;                        /* kill all four sides from inline */
  border-left: 2px solid var(--border) !important; /* only a subtle left rule */
  background: none !important;
  border-radius: 0 !important;
  padding: 10px 0 10px 18px !important;
  margin: 24px 0 !important;
}
.callout-title {
  color: var(--ink-2) !important;
  text-transform: none !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
}

/* ── CTA block — dark bg is enough, no dot pattern ───────────── */
.cta {
  border-radius: var(--r);
  /* No ::before pattern overlay. The solid dark background is the design. */
}
.cta::before { display: none; }
.cta::after  { display: none; }
.cta h2 { font-size: clamp(20px, 3vw, 26px); }

/* ── Tables ───────────────────────────────────────────────────── */
th { font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; }
tbody tr { transition: background 0.1s; }
tbody tr:hover td { background: var(--accent-light); }

/* ── FAQ de-emphasis ──────────────────────────────────────────── */
.lp-faq h3 {
  font-size: clamp(14px, 1.8vw, 16px);
  color: var(--ink-2);
  font-weight: 600;
  border-left: 2px solid var(--border);
  padding-left: 12px;
  margin-top: 24px;
  margin-bottom: 6px;
}
.lp-faq p { font-size: 14.5px; color: var(--ink-3); padding-left: 14px; }

/* ── Buttons ──────────────────────────────────────────────────── */
.btn, .btn-outline { border-radius: 999px; transition: opacity 0.15s; }
.btn:hover         { opacity: 0.88; }
.btn-outline:hover { opacity: 0.72; }

/* ── Balanced hero — very subtle, not an orb ─────────────────── */
/* No radial gradient blob. That is the most 2024 AI-gen cliché. */
.wrap::before { display: none; }

/* ── Links ────────────────────────────────────────────────────── */
.wrap a:not(.btn):not(.btn-outline) {
  color: var(--accent);
}

/* ── Reduced motion ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Store badges ─────────────────────────────────────────────── */
/* Side by side, flush, no borders — same treatment as any inline link */
.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 8px;
}
.store-badge-link {
  display: inline-flex;
  flex-shrink: 0;
  transition: opacity 0.15s;
  /* Apple guidelines: min clear space = ¼ badge height (44px ÷ 4 = 11px) */
  padding: 11px;
  margin: -11px; /* compensate layout so spacing doesn't shift surrounding elements */
}
.store-badge-link:hover { opacity: 0.80; }

.store-badge {
  height: 44px;
  width: auto;
  display: block;
}
.store-badge-mac {
  /* Mac badge SVG renders slightly taller — align optically */
  height: 44px;
  border-radius: 10px; /* matches Apple's official badge border radius */
}
/* Landing pages use the white badge variant from Apple's CDN — no filter needed */


/* ── App screenshot figure ────────────────────────────────────── */
/* Editorial: full-bleed image with a small caption, like a docs article */
.lp-screenshot {
  margin: 48px 0 0;
  padding: 0;
  border: 0;
}
.lp-screenshot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r);
  border: 1px solid var(--border);
}
.lp-screenshot figcaption {
  font-size: 12px;
  color: var(--ink-3);
  text-align: center;
  margin-top: 8px;
  letter-spacing: 0.01em;
}
