/* ============================================================
   LyricBloom — Brand portal
   Aesthetic: poetic · dark luxe · warm "bloom" gradients
   Display: Fraunces + Noto Serif SC  ·  Body: Manrope + Noto Sans SC
   ============================================================ */

:root {
  --bg: #120d14;
  --bg-2: #1a121d;
  --ink: #f5ece6;
  --ink-dim: #c8b7ad;
  --ink-faint: #8c7d77;
  --line: rgba(245, 236, 230, 0.1);
  --line-strong: rgba(245, 236, 230, 0.18);

  --rose: #ff5d8f;
  --coral: #ff7a59;
  --amber: #ffc24b;
  --violet: #b07cff;
  --teal: #57e0c2;

  --grad-warm: linear-gradient(100deg, #ff9d5c 0%, #ff5d8f 48%, #b07cff 100%);
  --grad-warm-soft: linear-gradient(100deg, #ffb37a, #ff7aa6);

  --font-display: "Fraunces", "Noto Serif SC", Georgia, serif;
  --font-body: "Manrope", "Noto Sans SC", -apple-system, BlinkMacSystemFont,
    "PingFang SC", "Microsoft YaHei", sans-serif;

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

html { overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::selection { background: var(--rose); color: #fff; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--rose);
  color: #fff;
  padding: 10px 16px;
  border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* Film grain overlay */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ───────────────── Bloom orbs ───────────────── */
.bloom {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
  animation: drift 18s var(--ease) infinite alternate;
}
.bloom--rose { width: 520px; height: 520px; background: radial-gradient(circle, var(--rose), transparent 65%); top: -120px; right: -80px; }
.bloom--amber { width: 460px; height: 460px; background: radial-gradient(circle, var(--amber), transparent 65%); bottom: -160px; left: -120px; animation-delay: -6s; opacity: 0.4; }
.bloom--violet { width: 420px; height: 420px; background: radial-gradient(circle, var(--violet), transparent 65%); top: 30%; left: 38%; animation-delay: -11s; opacity: 0.35; }

@keyframes drift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.12); }
}

/* ───────────────── Buttons ───────────────── */
.btn {
  --pad-y: 0.7rem;
  --pad-x: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: var(--pad-y) var(--pad-x);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
    background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn--solid {
  background: var(--grad-warm);
  color: #1a0f14;
  box-shadow: 0 8px 30px -8px rgba(255, 93, 143, 0.6);
}
.btn--solid:hover { transform: translateY(-2px); box-shadow: 0 14px 40px -8px rgba(255, 93, 143, 0.75); }
.btn--solid:hover svg { transform: translateX(3px); transition: transform 0.3s var(--ease); }
.btn--ghost { background: rgba(245, 236, 230, 0.04); color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { background: rgba(245, 236, 230, 0.1); transform: translateY(-2px); }
.btn--text { background: none; color: var(--ink-dim); padding-left: 0.5rem; padding-right: 0.5rem; }
.btn--text:hover { color: var(--ink); }
.btn--lg { --pad-y: 0.95rem; --pad-x: 1.7rem; font-size: 1.02rem; }
.btn--block { width: 100%; justify-content: center; }

/* ───────────────── Nav ───────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.1rem clamp(1rem, 4vw, 2.5rem);
  transition: background 0.4s var(--ease), backdrop-filter 0.4s var(--ease),
    border-color 0.4s var(--ease), padding 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(18, 13, 20, 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line);
  padding-top: 0.8rem;
  padding-bottom: 0.8rem;
}
.nav__brand { display: flex; align-items: center; gap: 0.6rem; }
.nav__mark { width: 30px; height: 30px; color: var(--rose); display: grid; place-items: center; }
.nav__mark svg { width: 100%; height: 100%; filter: drop-shadow(0 0 10px rgba(255, 93, 143, 0.5)); }
.nav__word { font-family: var(--font-display); font-weight: 600; font-size: 1.35rem; letter-spacing: -0.01em; }
.nav__word em { font-style: italic; background: var(--grad-warm-soft); -webkit-background-clip: text; background-clip: text; color: transparent; }

.nav__links { display: flex; gap: 0.4rem; margin-left: auto; }
.nav__links a {
  position: relative;
  padding: 0.4rem 0.85rem;
  font-size: 0.95rem;
  color: var(--ink-dim);
  border-radius: 999px;
  transition: color 0.25s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.15rem;
  height: 1.5px;
  background: var(--grad-warm);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__actions { display: flex; gap: 0.6rem; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  margin-left: auto;
  padding: 8px;
}
.nav__burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s; }
.nav__burger.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav__burger.is-open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 64px 0 auto 0;
  z-index: 99;
  background: rgba(18, 13, 20, 0.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1rem clamp(1rem, 4vw, 2.5rem) 1.6rem;
  animation: slideDown 0.35s var(--ease);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a { padding: 0.7rem 0.5rem; color: var(--ink-dim); font-size: 1.05rem; }
.mobile-menu .btn { margin-top: 0.4rem; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-12px); } to { opacity: 1; transform: translateY(0); } }

/* ───────────────── Shared section bits ───────────────── */
.section {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(5rem, 11vw, 9rem) clamp(1.1rem, 4vw, 2rem);
}
.section__head { max-width: 720px; margin-bottom: 3.2rem; }
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
}
.section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.section__lead { margin-top: 1.1rem; color: var(--ink-dim); font-size: 1.1rem; max-width: 560px; }

.serif-it { font-family: var(--font-display); font-style: italic; font-weight: 400; }
.grad { background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ───────────────── Hero ───────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem clamp(1.1rem, 4vw, 2rem) 4rem;
  overflow: hidden;
}
.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.8rem, 7.5vw, 5.4rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0.4rem 0 1.6rem;
}
.hero__title span { display: inline-block; }
.hero__title .serif-it { font-weight: 300; }
.hero__sub { color: var(--ink-dim); font-size: clamp(1rem, 1.6vw, 1.2rem); max-width: 520px; overflow-wrap: anywhere; }
.hero__cta { display: flex; align-items: center; gap: 0.9rem; margin-top: 2.2rem; flex-wrap: wrap; }

.hero__meta { display: flex; align-items: center; gap: 0.9rem; margin-top: 2.4rem; color: var(--ink-faint); font-size: 0.9rem; }
.hero__meta strong { color: var(--ink); }
.avatars { display: flex; }
.avatars span {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--bg);
  margin-left: -10px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
}
.avatars span:first-child { margin-left: 0; }

/* Hero lyric-card cluster */
.hero__stage { position: relative; height: clamp(360px, 42vw, 480px); }
.lyric-card {
  position: absolute;
  width: min(78%, 320px);
  padding: 1.6rem 1.5rem 1.3rem;
  border-radius: 22px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(160deg, rgba(40, 28, 42, 0.9), rgba(24, 16, 26, 0.92));
  backdrop-filter: blur(6px);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.7);
  transition: transform 0.5s var(--ease);
}
.lyric-card__tag { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--coral); }
.lyric-card__line { font-family: var(--font-display); font-weight: 400; font-style: italic; font-size: 1.85rem; line-height: 1.25; margin: 0.7rem 0 0.45rem; letter-spacing: -0.01em; }
.lyric-card__cn { color: var(--ink-dim); font-size: 0.98rem; margin-bottom: 1.1rem; }
.lyric-card footer { display: flex; align-items: center; gap: 0.6rem; font-size: 0.78rem; color: var(--ink-faint); }
.lyric-card .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-faint); }

.lyric-card--a { top: 0; right: 4%; z-index: 3; transform: rotate(4deg); border-color: rgba(255, 93, 143, 0.4); animation: float1 7s var(--ease) infinite alternate; }
.lyric-card--b { top: 32%; left: 0; z-index: 2; transform: rotate(-5deg); background: linear-gradient(160deg, rgba(48, 30, 26, 0.92), rgba(26, 16, 18, 0.94)); border-color: rgba(255, 194, 75, 0.35); animation: float2 8s var(--ease) infinite alternate; }
.lyric-card--c { bottom: 0; right: 12%; z-index: 1; transform: rotate(7deg) scale(0.92); opacity: 0.92; background: linear-gradient(160deg, rgba(36, 26, 50, 0.92), rgba(20, 14, 30, 0.94)); border-color: rgba(176, 124, 255, 0.35); animation: float3 9s var(--ease) infinite alternate; }
.hero__stage:hover .lyric-card--a { transform: rotate(2deg) translateY(-6px); }
.hero__stage:hover .lyric-card--b { transform: rotate(-3deg) translateY(-4px); }
.hero__stage:hover .lyric-card--c { transform: rotate(5deg) scale(0.94) translateY(-5px); }

@keyframes float1 { to { transform: rotate(4deg) translateY(-14px); } }
@keyframes float2 { to { transform: rotate(-5deg) translateY(12px); } }
@keyframes float3 { to { transform: rotate(7deg) scale(0.92) translateY(-10px); } }

.scroll-hint {
  position: absolute;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 26px;
  height: 42px;
  border: 1.5px solid var(--line-strong);
  border-radius: 14px;
  display: grid;
  place-items: start center;
  padding-top: 8px;
}
.scroll-hint span { width: 3px; height: 8px; border-radius: 2px; background: var(--coral); animation: scrollDot 1.6s var(--ease) infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(-2px); } 40% { opacity: 1; } 100% { opacity: 0; transform: translateY(12px); } }

/* ───────────────── Marquee ───────────────── */
.marquee {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
  background: rgba(255, 255, 255, 0.015);
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 2.4rem;
  white-space: nowrap;
  animation: scrollX 32s linear infinite;
}
.marquee__track span { font-family: var(--font-display); font-style: italic; font-size: 1.6rem; color: var(--ink-faint); }
.marquee__track i { color: var(--rose); font-style: normal; font-size: 0.8rem; }
@keyframes scrollX { to { transform: translateX(-50%); } }

/* ───────────────── Features ───────────────── */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.feature {
  padding: 1.8rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01));
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.feature:hover { transform: translateY(-6px); border-color: var(--line-strong); background: linear-gradient(170deg, rgba(255, 93, 143, 0.08), rgba(255, 255, 255, 0.01)); }
.feature__icon {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  border-radius: 14px;
  margin-bottom: 1.2rem;
  color: var(--coral);
  background: rgba(255, 122, 89, 0.12);
  border: 1px solid rgba(255, 122, 89, 0.2);
}
.feature__icon svg { width: 24px; height: 24px; }
.feature h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.3rem; margin-bottom: 0.5rem; }
.feature p { color: var(--ink-dim); font-size: 0.95rem; }

/* ───────────────── Showcase gallery ───────────────── */
.gallery { columns: 3; column-gap: 1.2rem; }
.g-card {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  border-radius: 20px;
  padding: 2rem 1.7rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.g-card::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 80% at 0% 0%, rgba(255, 255, 255, 0.16), transparent 60%); pointer-events: none; }
.g-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 24px 50px -18px rgba(0, 0, 0, 0.6); }
.g-card__line { font-family: var(--font-display); font-weight: 400; font-style: italic; font-size: 1.9rem; line-height: 1.3; color: #fff; position: relative; z-index: 1; letter-spacing: -0.01em; }
.g-card__cn { margin-top: 0.6rem; font-size: 1rem; color: rgba(255, 255, 255, 0.86); position: relative; z-index: 1; }
.g-card figcaption { margin-top: 1rem; font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.72); position: relative; z-index: 1; }

.g-card--sunset { background: linear-gradient(150deg, #ff7a59, #ff3d77); min-height: 230px; }
.g-card--night { background: linear-gradient(150deg, #2b2150, #4a2f7a); min-height: 200px; }
.g-card--bloom { background: linear-gradient(150deg, #ff9bb3, #ff5d8f); min-height: 250px; }
.g-card--ink { background: linear-gradient(150deg, #1f2a3a, #2f4760); min-height: 220px; }
.g-card--ocean { background: linear-gradient(150deg, #1d6e7e, #36b3a0); min-height: 210px; }
.g-card--gold { background: linear-gradient(150deg, #caa24a, #ff9f43); min-height: 240px; }

/* ───────────────── How it works ───────────────── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; counter-reset: s; }
.step { padding: 2rem 1.6rem; border-top: 2px solid var(--line-strong); position: relative; }
.step__no { font-family: var(--font-display); font-style: italic; font-size: 2.6rem; background: var(--grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent; }
.step h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.4rem; margin: 0.6rem 0 0.5rem; }
.step p { color: var(--ink-dim); }

/* ───────────────── Pricing ───────────────── */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; align-items: stretch; }
.plan {
  display: flex;
  flex-direction: column;
  padding: 2.2rem 1.9rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.008));
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.plan:hover { transform: translateY(-6px); border-color: var(--line-strong); }
.plan--featured {
  border-color: rgba(255, 93, 143, 0.55);
  background: linear-gradient(180deg, rgba(255, 93, 143, 0.12), rgba(176, 124, 255, 0.06));
  box-shadow: 0 30px 70px -28px rgba(255, 93, 143, 0.5);
  position: relative;
}
.plan__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--grad-warm); color: #1a0f14;
  font-size: 0.74rem; font-weight: 800; letter-spacing: 0.08em;
  padding: 0.3rem 0.9rem; border-radius: 999px;
  box-shadow: 0 8px 20px -6px rgba(255, 93, 143, 0.6);
}
.plan__name { font-family: var(--font-display); font-weight: 500; font-size: 1.35rem; margin-bottom: 0.7rem; }
.plan__price { font-family: var(--font-display); font-weight: 600; font-size: 3rem; line-height: 1; letter-spacing: -0.02em; }
.plan__price .cur { font-size: 1.3rem; vertical-align: super; margin-right: 0.1rem; color: var(--ink-dim); }
.plan__price .per { font-family: var(--font-body); font-size: 0.95rem; font-weight: 500; color: var(--ink-faint); margin-left: 0.3rem; }
.plan__save { color: var(--teal); font-size: 0.85rem; margin-top: 0.5rem; font-weight: 600; }
.plan__list { margin: 1.5rem 0 1.8rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.plan__list li { position: relative; padding-left: 1.6rem; color: var(--ink-dim); font-size: 0.95rem; }
.plan__list li::before {
  content: ""; position: absolute; left: 0; top: 0.5em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--grad-warm);
}
.pricing__note { text-align: center; color: var(--ink-faint); font-size: 0.88rem; margin-top: 1.8rem; }

/* ───────────────── CTA band ───────────────── */
.cta-band { position: relative; z-index: 2; overflow: hidden; border-top: 1px solid var(--line); }
.cta-bloom { position: absolute; width: 600px; height: 600px; top: -300px; left: 50%; transform: translateX(-50%); opacity: 0.45; }
.cta-band__inner {
  position: relative; z-index: 2;
  max-width: 820px; margin: 0 auto;
  text-align: center;
  padding: clamp(5rem, 10vw, 8rem) 1.5rem;
}
.cta-band__inner h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.1rem, 6vw, 3.8rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-bottom: 2.2rem;
}

/* ───────────────── Footer ───────────────── */
.foot { position: relative; z-index: 2; border-top: 1px solid var(--line); padding: 4rem clamp(1.1rem, 4vw, 2.5rem) 2rem; }
.foot__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.4fr 2fr; gap: 2.5rem; }
.foot__brand p { color: var(--ink-faint); margin-top: 0.6rem; }
.foot__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.foot__cols h4 { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 1rem; }
.foot__cols a { display: block; color: var(--ink-dim); padding: 0.3rem 0; transition: color 0.25s; }
.foot__cols a:hover { color: var(--ink); }
.foot__bar {
  max-width: var(--maxw); margin: 3rem auto 0;
  padding-top: 1.5rem; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  color: var(--ink-faint); font-size: 0.85rem;
}

/* ───────────────── Reveal animation ───────────────── */
/* Reveal is a progressive enhancement: only hide content when JS is active. */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); transition-delay: calc(var(--d, 0) * 80ms); }
html.js .reveal.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ───────────────── Responsive ───────────────── */
@media (max-width: 900px) {
  .nav__links, .nav__actions { display: none; }
  .nav__burger { display: flex; }
  .hero { padding-top: 6rem; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__copy { max-width: 100%; }
  .hero__title { font-size: clamp(2.2rem, 9.2vw, 4.4rem); }
  .hero__sub br { display: none; }
  .hero__stage { order: -1; height: 360px; margin: 0 auto; max-width: 420px; width: 100%; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { columns: 2; }
  .steps, .plans { grid-template-columns: 1fr; }
  .plan--featured { order: -1; }
  .foot__inner { grid-template-columns: 1fr; }
}

@media (max-width: 540px) {
  .hero__title { font-size: clamp(2rem, 8.6vw, 3.4rem); }
  .feature-grid { grid-template-columns: 1fr; }
  .gallery { columns: 1; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { justify-content: center; }
  .foot__cols { grid-template-columns: repeat(2, 1fr); }
  .foot__bar { flex-direction: column; }
}
