:root {
  color-scheme: dark;
  --bg: #0b0b0d;
  --bg-soft: #111015;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(255, 255, 255, 0.06);
  --panel-solid: #16151b;
  --text: #f4eee0;
  --muted: #b3a992;
  --line: rgba(212, 175, 90, 0.22);
  --line-soft: rgba(212, 175, 90, 0.14);
  --gold: #d9a441;
  --gold-bright: #f0cf7c;
  --gold-deep: #b7822a;
  --teal: #3fbfae;
  --coral: #ec6a5a;
  --blue: #6f8bf0;
  --rose: #e578a0;
  --green: #21b366;
  --gold-gradient: linear-gradient(135deg, #f0cf7c, #d9a441 55%, #b7822a);
  --shadow: 0 26px 64px rgba(0, 0, 0, 0.6);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(1200px 640px at 78% -8%, rgba(217, 164, 65, 0.14), transparent 60%),
    radial-gradient(900px 560px at 6% 4%, rgba(63, 191, 174, 0.07), transparent 58%),
    linear-gradient(180deg, #0d0c10, #0b0b0d 40%, #0a090c),
    var(--bg);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-160%);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  background: var(--panel-solid);
  color: var(--text);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  padding: 14px 0;
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: fit-content;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand img {
  border-radius: 9px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  border-radius: 8px;
  padding: 8px 10px;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: var(--panel-strong);
  color: var(--gold-bright);
  outline: none;
}

.section-band {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
  padding: clamp(32px, 6vw, 56px) 0 30px;
}

.hero-copy {
  max-width: 680px;
}

/* App names like "HowToMovie2" are long single words, so keep the hero title
   from overflowing its column (and sliding under the phone). */
.hero-copy h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  overflow-wrap: break-word;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.05;
  letter-spacing: 0;
  color: var(--text);
}

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(3.3rem, 9vw, 7.4rem);
}

h2 {
  margin-bottom: 14px;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.13rem;
}

.hero-lede {
  max-width: 640px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 900;
}

.button-primary {
  background: var(--gold-gradient);
  color: #1c1304;
  box-shadow: 0 14px 30px rgba(183, 130, 42, 0.32);
}

.button-primary:hover,
.button-primary:focus-visible {
  filter: brightness(1.06);
}

.button-secondary {
  border-color: var(--line);
  background: var(--panel-strong);
  color: var(--gold-bright);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--gold);
  background: rgba(217, 164, 65, 0.1);
}

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

.hero-stats div {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 14px;
  background: var(--panel);
}

.hero-stats dt {
  font-size: 1.25rem;
  font-weight: 950;
  color: var(--gold-bright);
}

.hero-stats dd {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-frame {
  position: relative;
  width: min(100%, 292px);
  aspect-ratio: 9 / 18.6;
  border: 10px solid #050506;
  border-radius: 44px;
  padding: 10px;
  background: #050506;
  box-shadow: var(--shadow), 0 0 0 1px rgba(217, 164, 65, 0.18);
}

.phone-frame::before,
.phone-frame::after {
  content: "";
  position: absolute;
  background: #050506;
}

.phone-frame::before {
  left: -14px;
  top: 116px;
  width: 4px;
  height: 72px;
  border-radius: 4px 0 0 4px;
}

.phone-frame::after {
  right: -14px;
  top: 160px;
  width: 4px;
  height: 84px;
  border-radius: 0 4px 4px 0;
}

.phone-island {
  position: absolute;
  top: 22px;
  left: 50%;
  z-index: 2;
  width: 88px;
  height: 27px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #000;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.phone-island::after {
  content: "";
  position: absolute;
  top: 9px;
  right: 13px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #1c1a12;
}

.phone-screen {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: 32px;
  padding: 54px 16px 16px;
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(217, 164, 65, 0.14), transparent 60%),
    linear-gradient(160deg, #17141a, #0d0b10 60%, #0a090c);
}

.screen-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.screen-top img {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
}

.screen-kicker,
.screen-title {
  margin: 0;
}

.screen-kicker {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
}

.screen-title {
  font-size: 1.18rem;
  font-weight: 950;
  color: var(--text);
}

/* Predicted-rating / hero preview card */
.affirmation-preview {
  min-height: 188px;
  border-radius: 14px;
  padding: 18px;
  background: var(--gold-gradient);
  color: #1c1304;
  box-shadow: 0 20px 38px rgba(183, 130, 42, 0.3);
}

.preview-tag {
  display: inline-flex;
  margin-bottom: 22px;
  border-radius: 8px;
  padding: 6px 9px;
  background: rgba(0, 0, 0, 0.16);
  font-size: 0.78rem;
  font-weight: 900;
}

.preview-quote {
  margin: 0;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: 1.45rem;
  line-height: 1.12;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.mini-grid span,
.composer-preview {
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--panel-strong);
  color: var(--muted);
  font-weight: 850;
}

.mini-grid span {
  padding: 11px 10px;
  font-size: 0.82rem;
}

.composer-preview {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  padding: 14px 12px;
  font-size: 0.88rem;
}

.composer-preview strong {
  color: var(--gold-bright);
}

/* Poster-grid hero (used for Image Builder wallpaper preview) */
.poster-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  min-height: 188px;
  border-radius: 14px;
  padding: 12px;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(236, 106, 90, 0.18), transparent 62%),
    linear-gradient(135deg, #1a1414, #12100f);
  border: 1px solid var(--line-soft);
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.45);
}

.poster-grid span {
  aspect-ratio: 2 / 3;
  border-radius: 6px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.poster-grid span:nth-child(1) { background: linear-gradient(160deg, #e5a24a, #a6631f); }
.poster-grid span:nth-child(2) { background: linear-gradient(160deg, #3f6f8f, #14212c); }
.poster-grid span:nth-child(3) { background: linear-gradient(160deg, #ec6a5a, #7a2417); }
.poster-grid span:nth-child(4) { background: linear-gradient(160deg, #3fbfae, #14403a); }
.poster-grid span:nth-child(5) { background: linear-gradient(160deg, #f0cf7c, #b7822a); }
.poster-grid span:nth-child(6) { background: linear-gradient(160deg, #6f8bf0, #26305e); }
.poster-grid span:nth-child(7) { background: linear-gradient(160deg, #e578a0, #6e2340); }
.poster-grid span:nth-child(8) { background: linear-gradient(160deg, #2c2a33, #15141a); }
.poster-grid span:nth-child(9) { background: linear-gradient(160deg, #c98a3a, #5e3a12); }

/* Big-number hero (used for TV "up next") */
.day-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 188px;
  border-radius: 14px;
  padding: 20px;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(63, 191, 174, 0.22), transparent 62%),
    linear-gradient(135deg, #1c2a29, #12100f);
  color: var(--text);
  text-align: center;
  box-shadow: 0 20px 38px rgba(0, 0, 0, 0.45);
  border: 1px solid var(--line-soft);
}

.day-label {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.28em;
  color: var(--teal);
}

.day-number {
  margin: 2px 0 6px;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1;
  color: var(--gold-bright);
}

.day-caption {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--muted);
}

.launch-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr);
  gap: 24px;
  align-items: center;
  width: min(100% - 32px, var(--max));
  margin: 0 auto 34px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: clamp(22px, 4vw, 32px);
  background: var(--panel);
}

.strip-label {
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.launch-strip h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
}

.launch-strip p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 650;
}

.launch-detail p {
  margin: 0 0 10px;
  color: var(--muted);
  font-weight: 650;
}

.launch-detail p:last-child {
  margin-bottom: 0;
}

.launch-cta {
  margin: 0;
}

.section-content {
  padding: 54px 0 22px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading p:last-child {
  color: var(--muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.feature-card {
  min-height: 220px;
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 22px;
  background: var(--panel);
}

.feature-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.feature-mark {
  display: block;
  width: 44px;
  height: 6px;
  margin-bottom: 28px;
  border-radius: 8px;
}

.mark-gold {
  background: var(--gold-gradient);
}

.mark-teal {
  background: var(--teal);
}

.mark-blue {
  background: var(--blue);
}

.mark-rose {
  background: var(--rose);
}

.mark-coral {
  background: var(--coral);
}

.mark-green {
  background: var(--green);
}

.mark-ink {
  background: linear-gradient(135deg, #6b6252, #362f24);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 32px;
  align-items: start;
  padding: 54px 0;
}

.quote-stack {
  display: grid;
  gap: 12px;
}

.quote-stack figure {
  margin: 0;
  border-left: 6px solid var(--gold);
  border-radius: 12px;
  padding: 20px;
  background: var(--panel);
}

.quote-stack figure:nth-child(2) {
  border-left-color: var(--teal);
}

.quote-stack figure:nth-child(3) {
  border-left-color: var(--coral);
}

.quote-stack blockquote {
  margin: 0 0 12px;
  font-family: ui-serif, Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  line-height: 1.18;
  color: var(--text);
}

.quote-stack figcaption {
  color: var(--muted);
  font-weight: 850;
}

.privacy-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: 24px;
  width: min(100% - 32px, var(--max));
  margin: 0 auto 56px;
  border-radius: 16px;
  padding: clamp(24px, 5vw, 42px);
  background:
    radial-gradient(120% 120% at 100% 0%, rgba(217, 164, 65, 0.12), transparent 55%),
    #100e14;
  border: 1px solid var(--line);
  color: var(--text);
}

.privacy-panel .eyebrow {
  color: var(--gold);
}

.privacy-panel p {
  color: rgba(244, 238, 224, 0.82);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--gold-bright);
  font-weight: 900;
  text-underline-offset: 0.2em;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
  border-top: 1px solid var(--line-soft);
  padding: 26px 0 38px;
  color: var(--muted);
}

.site-footer strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer nav {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-weight: 800;
}

.site-footer a {
  text-underline-offset: 0.2em;
}

.legal-page,
.support-page {
  width: min(100% - 32px, 900px);
  margin: 0 auto;
}

.legal-hero,
.support-hero {
  padding: clamp(44px, 7vw, 76px) 0 28px;
}

.legal-hero h1,
.support-hero h1 {
  font-size: clamp(2.8rem, 8vw, 5.8rem);
}

.legal-hero p,
.support-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.15rem;
}

.legal-content,
.support-layout {
  margin-bottom: 56px;
}

.legal-content {
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: clamp(22px, 5vw, 42px);
  background: var(--panel);
}

.legal-content h2 {
  margin: 34px 0 10px;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.3rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--muted);
}

.support-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.support-card {
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 24px;
  background: var(--panel);
}

.contact-card {
  background:
    linear-gradient(135deg, rgba(217, 164, 65, 0.16), rgba(63, 191, 174, 0.08)),
    var(--panel-solid);
  border-color: var(--line);
}

.support-card p,
.support-card dd,
.plain-list {
  color: var(--muted);
}

.faq-list {
  margin: 0;
}

.faq-list dt {
  margin-top: 18px;
  color: var(--text);
  font-weight: 900;
}

.faq-list dt:first-child {
  margin-top: 0;
}

.faq-list dd {
  margin: 6px 0 0;
}

.plain-list {
  margin: 0;
  padding-left: 1.1rem;
}

.plain-list li + li {
  margin-top: 8px;
}

/* ---- Studio landing ---- */
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: var(--gold-gradient);
  color: #1c1304;
  font-size: 1rem;
  box-shadow: 0 10px 24px rgba(183, 130, 42, 0.3);
}

.studio-hero {
  max-width: 820px;
  padding: clamp(28px, 5vw, 52px) 0 clamp(20px, 3vw, 32px);
}

.studio-hero h1 {
  font-size: clamp(2.3rem, 5.2vw, 4rem);
}

.apps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: clamp(36px, 6vw, 60px);
}

.app-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-top: 5px solid var(--gold);
  border-radius: 14px;
  padding: clamp(22px, 3.5vw, 32px);
  background: var(--panel);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.4);
}

.app-card--tv {
  border-top-color: var(--teal);
}

.app-card--builder {
  border-top-color: var(--coral);
}

.app-card--deals {
  border-top-color: var(--green);
}

.app-card-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.app-card-icon {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
}

.app-card-head h2 {
  margin-bottom: 4px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.app-card-tag {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.92rem;
}

.app-card-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 8px 0 0;
  border-radius: 999px;
  padding: 3px 10px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.app-card-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.app-card-status--live {
  border: 1px solid rgba(33, 179, 102, 0.4);
  background: rgba(33, 179, 102, 0.12);
  color: #7fe8ab;
}

.app-card-status--soon {
  border: 1px solid var(--line-soft);
  background: var(--panel-strong);
  color: var(--muted);
}

.app-card-desc {
  color: var(--muted);
  font-size: 1.02rem;
}

.app-card-points {
  margin: 0 0 24px;
  padding-left: 1.15rem;
  color: var(--muted);
}

.app-card-points li + li {
  margin-top: 7px;
}

.app-card-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 18px;
  margin-top: auto;
}

/* ---- How To TV teal accent variant ---- */
.theme-tv .button-primary {
  background: linear-gradient(135deg, #5fd6c5, #2f9e8f);
  color: #06201c;
  box-shadow: 0 14px 28px rgba(47, 158, 143, 0.28);
}

.theme-tv .button-primary:hover,
.theme-tv .button-primary:focus-visible {
  filter: brightness(1.05);
}

.theme-tv .eyebrow,
.theme-tv .text-link {
  color: var(--teal);
}

.theme-tv .hero-stats dt,
.theme-tv .day-number,
.theme-tv .composer-preview strong {
  color: #7fe0d0;
}

.theme-tv .site-nav a:hover,
.theme-tv .site-nav a:focus-visible,
.theme-tv .site-nav a[aria-current="page"] {
  color: #7fe0d0;
}

/* ---- HTM Image Builder coral accent variant ---- */
.theme-builder .button-primary {
  background: linear-gradient(135deg, #f2887a, #d24e3d);
  color: #2a0d08;
  box-shadow: 0 14px 28px rgba(210, 78, 61, 0.28);
}

.theme-builder .button-primary:hover,
.theme-builder .button-primary:focus-visible {
  filter: brightness(1.05);
}

.theme-builder .eyebrow,
.theme-builder .strip-label,
.theme-builder .text-link {
  color: #f2887a;
}

.theme-builder .hero-stats dt,
.theme-builder .composer-preview strong {
  color: #f7a99b;
}

.theme-builder .site-nav a:hover,
.theme-builder .site-nav a:focus-visible,
.theme-builder .site-nav a[aria-current="page"] {
  color: #f7a99b;
}

/* ---- Deal Hunter green accent variant ---- */
.theme-deals .button-primary {
  background: linear-gradient(135deg, #4fd68f, #1a9455);
  color: #062012;
  box-shadow: 0 14px 28px rgba(26, 148, 85, 0.28);
}

.theme-deals .button-primary:hover,
.theme-deals .button-primary:focus-visible {
  filter: brightness(1.05);
}

.theme-deals .eyebrow,
.theme-deals .strip-label,
.theme-deals .text-link {
  color: var(--green);
}

.theme-deals .hero-stats dt,
.theme-deals .day-number,
.theme-deals .composer-preview strong {
  color: #7fe8ab;
}

.theme-deals .site-nav a:hover,
.theme-deals .site-nav a:focus-visible,
.theme-deals .site-nav a[aria-current="page"] {
  color: #7fe8ab;
}

@media (max-width: 880px) {
  .apps-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero,
  .split-section,
  .privacy-panel,
  .launch-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 28px;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .phone-frame {
    max-width: 292px;
  }

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

@media (max-width: 620px) {
  .section-band,
  .site-header,
  .site-footer,
  .launch-strip,
  .privacy-panel,
  .legal-page,
  .support-page {
    width: min(100% - 24px, var(--max));
  }

  .brand span {
    font-size: 0.96rem;
  }

  .site-nav {
    width: 100%;
    gap: 4px;
    font-size: 0.9rem;
  }

  .site-nav a {
    padding: 8px;
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4.4rem);
  }

  h2 {
    font-size: clamp(1.85rem, 10vw, 2.7rem);
  }

  .feature-grid,
  .support-layout {
    grid-template-columns: 1fr;
  }

  .phone-frame {
    width: min(100%, 258px);
    border-width: 8px;
    border-radius: 40px;
    padding: 8px;
  }

  .phone-frame::before {
    left: -11px;
    top: 96px;
    width: 3px;
    height: 58px;
  }

  .phone-frame::after {
    right: -11px;
    top: 136px;
    width: 3px;
    height: 68px;
  }

  .phone-island {
    top: 18px;
    width: 76px;
    height: 24px;
  }

  .phone-screen {
    border-radius: 30px;
    padding: 46px 13px 13px;
  }

  .screen-top {
    gap: 10px;
    margin-bottom: 12px;
  }

  .screen-top img {
    width: 46px;
    height: 46px;
  }

  .affirmation-preview {
    min-height: 158px;
    padding: 16px;
  }

  .preview-tag {
    margin-bottom: 14px;
  }

  .preview-quote {
    font-size: 1.24rem;
  }

  .mini-grid,
  .composer-preview {
    display: none;
  }

  .hero-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-stats div {
    padding: 10px 8px;
  }

  .hero-stats dt {
    font-size: 1rem;
  }

  .hero-stats dd {
    font-size: 0.73rem;
  }

  .site-footer {
    flex-direction: column;
  }
}
