/* ── Fonts ── */
@font-face {
  font-family: "Fraunces";
  src: url("hasten-assets/Fraunces.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("hasten-assets/PlusJakartaSans.ttf") format("truetype");
  font-display: swap;
}

/* ── Tokens ── */
:root {
  --bg:            #c6cfd9;
  --bg-alt:        #b8c4ce;
  --bg-deep:       #a9b7c3;
  --surface:       #ffffff;
  --surface-muted: #edf1f5;
  --ink:           #354559;
  --ink-soft:      #4a607a;
  --ink-muted:     #6b849c;
  --accent:        #4a607a;
  --accent-strong: #354559;
  --accent-soft:   rgba(74,96,122,0.12);
  --line:          rgba(74,96,122,0.18);
  --line-strong:   rgba(74,96,122,0.32);
  --shadow:        0 8px 32px rgba(53,69,89,0.14);
  --shadow-strong: 0 24px 80px rgba(53,69,89,0.2);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 36px;
  --r-pill: 9999px;
  --container: 1100px;
  --container-narrow: 720px;
  --nav-h: 58px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: var(--accent); }

/* ── Cursor (desktop pointer only) ── */
@media (pointer: fine) {
  body { cursor: none; }
}
.cursor-dot {
  position: fixed; pointer-events: none; z-index: 9999;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, background .2s;
  mix-blend-mode: multiply;
}
.cursor-ring {
  position: fixed; pointer-events: none; z-index: 9998;
  width: 28px; height: 28px;
  border: 1.5px solid rgba(74,96,122,0.5);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  transition: width .15s, height .15s;
}
@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ── Floating pill nav ── */
.nav-pill {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 500;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(74,96,122,0.15);
  border-radius: var(--r-pill);
  padding: 0.45rem 0.55rem 0.45rem 1rem;
  box-shadow: 0 4px 24px rgba(53,69,89,0.12);
  transition: transform .4s cubic-bezier(.4,0,.2,1), opacity .4s;
}
.nav-pill.hidden {
  transform: translateX(-50%) translateY(-110%);
  opacity: 0;
  pointer-events: none;
}
.nav-pill__logo {
  display: flex; align-items: center; gap: 0.5rem;
  text-decoration: none;
  margin-right: 0.5rem;
}
.nav-pill__logo img { width: 24px; height: 24px; border-radius: 6px; }
.nav-pill__logo span {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.nav-pill__links {
  display: flex; align-items: center; gap: 0.1rem;
}
.nav-pill__links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  padding: 0.35rem 0.7rem;
  border-radius: var(--r-pill);
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.nav-pill__links a:hover,
.nav-pill__links a[aria-current="page"] {
  background: var(--accent-soft);
  color: var(--ink);
}
.nav-pill__cta {
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  text-decoration: none;
  padding: 0.4rem 1rem;
  border-radius: var(--r-pill);
  margin-left: 0.25rem;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.nav-pill__cta:hover {
  background: var(--accent-strong);
  transform: scale(1.03);
}
@media (max-width: 640px) {
  .nav-pill__links { display: none; }
  .nav-pill { padding: 0.45rem 0.55rem 0.45rem 0.75rem; }
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}
.container--narrow {
  max-width: var(--container-narrow);
}
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
}

/* ── Scroll reveals ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s cubic-bezier(.4,0,.2,1),
              transform .8s cubic-bezier(.4,0,.2,1);
}
[data-reveal].visible {
  opacity: 1;
  transform: none;
}
[data-delay="1"] { transition-delay: .1s; }
[data-delay="2"] { transition-delay: .2s; }
[data-delay="3"] { transition-delay: .3s; }
[data-delay="4"] { transition-delay: .4s; }
[data-delay="5"] { transition-delay: .5s; }
[data-delay="6"] { transition-delay: .6s; }

/* ── Section base ── */
.section {
  padding: 7rem 0;
}
.section--alt {
  background: var(--bg-alt);
}
.section--surface {
  background: var(--surface);
}
@media (max-width: 768px) {
  .section { padding: 4rem 0; }
}
.section__eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
  display: block;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.18;
  color: var(--ink);
  margin-bottom: 1.25rem;
}
.section__lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 52ch;
  line-height: 1.75;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.75rem 1.6rem;
  border-radius: var(--r-pill);
  border: none;
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, background .2s;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background .2s;
}
.btn:hover::after { background: rgba(255,255,255,0.1); }
.btn:active { transform: scale(0.97); }
.btn--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 18px rgba(74,96,122,0.28);
}
.btn--primary:hover { box-shadow: 0 8px 28px rgba(74,96,122,0.38); transform: translateY(-1px); }
.btn--secondary {
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.btn--secondary:hover { box-shadow: var(--shadow-strong); transform: translateY(-1px); }
.btn--ghost {
  background: transparent;
  color: var(--ink-soft);
  box-shadow: none;
  border: 1.5px solid var(--line-strong);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ── Store buttons ── */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  background: var(--ink);
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: var(--r-md);
  transition: transform .18s, box-shadow .18s;
  box-shadow: var(--shadow);
}
.store-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-strong); }
.store-btn__text { display: flex; flex-direction: column; }
.store-btn__sub {
  font-size: 0.58rem;
  font-weight: 400;
  opacity: 0.7;
  letter-spacing: 0.04em;
  line-height: 1.2;
}
.store-btn__name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.01em;
}
.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  align-items: center;
}

/* ── Phone mockup ── */
.phone-wrap {
  position: relative;
  width: 270px;
  flex-shrink: 0;
  will-change: transform;
}
.phone-frame {
  background: var(--ink);
  border-radius: 40px;
  padding: 12px;
  box-shadow: 0 40px 100px rgba(53,69,89,0.35), 0 0 0 1px rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}
.phone-frame::before {
  content: '';
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 6px;
  background: rgba(255,255,255,0.12);
  border-radius: 99px;
  z-index: 10;
}
.phone-screen {
  border-radius: 30px;
  overflow: hidden;
  aspect-ratio: 9/19.5;
  background: var(--surface);
  position: relative;
}

/* ── Screenshot carousel ── */
.carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 0;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel__slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
}
.carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
}
.carousel-dots__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--line-strong);
  cursor: pointer;
  transition: background .2s, transform .2s;
  border: none;
  padding: 0;
}
.carousel-dots__dot.active {
  background: var(--accent);
  transform: scale(1.3);
}

/* ── Footer ── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 0 2.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer__brand {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.footer__brand img { width: 36px; height: 36px; border-radius: 8px; opacity: 0.85; }
.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.01em;
}
.footer__brand-tagline { font-size: 0.8rem; margin-top: 0.2rem; opacity: 0.6; }
.footer__col-title {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color .2s;
}
.footer__links a:hover { color: #fff; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ── Magnetic button wrapper ── */
.magnetic { display: inline-block; }

/* ── Hero ── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 5rem;
  overflow: hidden;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}
.hero__eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero__eyebrow::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--accent);
  display: block;
  flex-shrink: 0;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
}
.hero__lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 46ch;
  margin-bottom: 2.5rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}
@media (max-width: 768px) {
  .hero__inner { grid-template-columns: 1fr; }
  .phone-wrap { display: none; }
}

/* ── Features page ── */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  padding: 6rem 0;
}
.feature-block + .feature-block {
  border-top: 1px solid var(--line);
}
.feature-block--flip {
  direction: rtl;
}
.feature-block--flip > * {
  direction: ltr;
}
.feature-block__num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
}
.feature-block__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.feature-block__body {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.feature-block__img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  aspect-ratio: 9/18;
  max-width: 260px;
  margin: 0 auto;
}
.feature-block__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .feature-block { grid-template-columns: 1fr; gap: 2.5rem; }
  .feature-block--flip { direction: ltr; }
}

/* ── How It Works timeline ── */
.timeline {
  position: relative;
  padding-left: 3rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 1.5px;
  background: linear-gradient(to bottom, var(--line), transparent);
}
.timeline-step {
  position: relative;
  padding: 0 0 4rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: start;
}
.timeline-step::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--accent);
  box-shadow: 0 0 0 4px var(--bg);
}
.timeline-step.active::before {
  background: var(--accent);
}
.timeline-step__num {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.22em;
  color: var(--ink-muted);
  margin-bottom: 0.5rem;
}
.timeline-step__title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 0.75rem;
}
.timeline-step__body {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.75;
}
.timeline-step__img {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-strong);
  width: 200px;
  flex-shrink: 0;
  aspect-ratio: 9/18;
}
.timeline-step__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  .timeline-step { grid-template-columns: 1fr; }
  .timeline-step__img { width: 160px; }
}

/* ── Download gallery ── */
.screenshot-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 1rem;
}
.screenshot-gallery__item {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 9/18;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
  cursor: pointer;
}
.screenshot-gallery__item:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-strong);
}
.screenshot-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── About page ── */
.about-hero {
  min-height: 60svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 5rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.value-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.value-card__icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.value-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.value-card__body {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; }
}

/* ── CTA band ── */
.cta-band {
  background: var(--accent);
  color: #fff;
  padding: 5rem 0;
  text-align: center;
}
.cta-band__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 300;
  font-style: italic;
  margin-bottom: 1rem;
  color: #fff;
}
.cta-band__lead {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 48ch;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.cta-band .store-btn {
  background: #fff;
  color: var(--accent);
}
.cta-band .store-btn:hover {
  background: rgba(255,255,255,0.92);
}

/* ── Why cards (home) ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform .2s, box-shadow .2s;
}
.why-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}
.why-card__num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent-soft);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.why-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.why-card__body {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.65;
}
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ── Manifesto section ── */
.manifesto {
  max-width: var(--container-narrow);
  margin: 0 auto;
}
.manifesto p {
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.manifesto p:first-child {
  font-size: 1.25rem;
  color: var(--ink);
  font-weight: 500;
}
.manifesto p strong {
  color: var(--ink);
}

/* ── Download hero ── */
.download-hero {
  min-height: 65svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 5rem;
}
.download-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.download-hero__lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 44ch;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}
.platform-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  text-align: center;
}
.platform-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.platform-card__status {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1.25rem;
}
.platform-card__status--live {
  color: #2a7a52;
}
@media (max-width: 480px) {
  .platform-grid { grid-template-columns: 1fr; }
}

/* ── Download cards ── */
.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: start;
}
.download-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  position: relative;
}
.download-card--primary {
  border: 1.5px solid var(--accent);
  box-shadow: var(--shadow-strong);
}
.download-card--muted {
  background: var(--surface-muted);
  box-shadow: none;
  opacity: 0.65;
}
.download-card--muted .download-card__platform svg { opacity: 0.7; }
.download-card--muted .download-card__os { opacity: 0.85; }
.download-card--muted .download-card__title { opacity: 0.9; }
.download-card__badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2a7a52;
  background: rgba(42,122,82,0.1);
  padding: 0.3rem 0.75rem;
  border-radius: var(--r-pill);
  margin-bottom: 1.5rem;
}
.download-card__badge--muted {
  color: var(--ink-muted);
  background: var(--accent-soft);
}
.download-card__platform {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.download-card__os {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.2;
}
.download-card__req {
  font-size: 0.75rem;
  color: var(--ink-muted);
  margin-top: 0.15rem;
}
.download-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 300;
  font-style: italic;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.download-card__body {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.7;
}
@media (max-width: 700px) {
  .download-grid { grid-template-columns: 1fr; }
  .download-card { padding: 2rem; }
}

/* ── Store button ghost variant ── */
.store-btn--ghost {
  background: transparent;
  color: var(--ink-muted);
  box-shadow: none;
  border: 1.5px solid var(--line-strong);
}
.store-btn--ghost:hover {
  transform: none;
  box-shadow: none;
}

/* -- Support page -- */
.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}
.support-card,
.faq-card {
  background: var(--surface);
  border-radius: var(--r-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.support-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.support-card__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.85rem;
}
.support-card__title,
.faq-card__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.support-card__body,
.faq-card__body {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.75;
}
.support-card__link {
  margin-top: auto;
  padding-top: 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.support-card__link:hover {
  color: var(--accent-strong);
}
.faq-list {
  display: grid;
  gap: 1.25rem;
}
.faq-card__body a {
  color: var(--accent);
}
@media (max-width: 768px) {
  .support-grid { grid-template-columns: 1fr; }
  .support-card,
  .faq-card { padding: 1.5rem; }
}
