:root {
  --blue: #006aa7;
  --red: #c4262e;
  --yellow: #fecc02;
  --green: #1b5e43;
  --cream: #f6f1e7;
  --paper: #fffdf8;
  --ink: #1c1a19;
  --muted: #675f58;
  --line: 3px solid var(--ink);
  --display: "Barlow Condensed", Impact, "Arial Narrow", sans-serif;
  --body: "Barlow", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-160%);
  padding: 0.75rem 1rem;
  border: var(--line);
  background: var(--yellow);
  font-weight: 700;
}

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

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  min-height: 88px;
  padding: 1rem clamp(1.25rem, 4vw, 4rem);
  color: var(--cream);
  background: var(--blue);
  border-bottom: var(--line);
}

.brand { display: inline-flex; align-items: center; gap: .65rem; width: max-content; text-decoration: none; }
.brand img { width: 58px; }
.brand span { color: var(--yellow); font-family: var(--display); font-size: 1.75rem; font-weight: 800; letter-spacing: .02em; text-transform: uppercase; }

nav { display: flex; gap: 2rem; }
nav a,
.small-cta,
.button,
.text-link,
.footer-links a {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-decoration: none;
}

nav a { font-size: 1.08rem; }
nav a:hover, nav a:focus-visible { color: var(--yellow); }

.small-cta {
  justify-self: end;
  padding: 0.66rem 1rem;
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  min-height: min(760px, calc(100svh - 88px));
  color: var(--cream);
  background: var(--blue);
  border-bottom: var(--line);
  overflow: hidden;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(4rem, 8vw, 8.5rem) clamp(1.5rem, 6vw, 6.5rem);
}

.eyebrow {
  margin: 0 0 1.3rem;
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.status-dot {
  display: inline-block;
  width: 0.7rem;
  height: 0.7rem;
  margin-right: 0.5rem;
  background: var(--red);
  border: 2px solid var(--ink);
  border-radius: 50%;
}

h1, h2, h3, blockquote {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
}

h1 {
  max-width: 840px;
  font-size: clamp(4.5rem, 9.2vw, 9rem);
  line-height: 0.79;
  letter-spacing: -0.025em;
}

h1 span { color: var(--yellow); }

.hero-intro {
  max-width: 650px;
  margin: 2.2rem 0 0;
  font-size: clamp(1.12rem, 1.7vw, 1.36rem);
  line-height: 1.5;
}

.hero-actions { display: flex; align-items: center; gap: 1.5rem; margin-top: 2.25rem; }

.button {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  border: var(--line);
  border-radius: 999px;
  box-shadow: 5px 5px 0 var(--ink);
}

.button-primary { color: var(--ink); background: var(--yellow); }
.button:hover, .button:focus-visible, .small-cta:hover, .small-cta:focus-visible { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.text-link { padding-block: 0.8rem; border-bottom: 2px solid currentColor; }
.text-link:hover, .text-link:focus-visible { color: var(--yellow); }

.hero-art {
  position: relative;
  min-height: 560px;
  background: var(--red);
  border-left: var(--line);
  overflow: hidden;
}

.sun-disc {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(39vw, 570px);
  aspect-ratio: 1;
  transform: translate(-50%, -52%);
  background: var(--yellow);
  border: var(--line);
  border-radius: 50%;
}

.hero-fish {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(32vw, 460px);
  transform: translate(-50%, -58%) rotate(-4deg);
  filter: drop-shadow(12px 14px 0 rgba(28,26,25,.16));
}

.hero-art p {
  position: absolute;
  z-index: 3;
  right: 2rem;
  bottom: 1.5rem;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  font-weight: 800;
  line-height: 0.9;
  text-align: right;
  text-transform: uppercase;
}

.ticker {
  padding: 0.85rem 0;
  color: var(--ink);
  background: var(--yellow);
  border-bottom: var(--line);
  overflow: hidden;
}

.ticker div { display: flex; gap: 2rem; width: max-content; padding-left: 1.5rem; }
.ticker span { font-family: var(--display); font-size: 1.15rem; font-weight: 800; letter-spacing: 0.12em; }
.ticker b { color: var(--red); }

.apps { padding: clamp(4.5rem, 9vw, 9rem) clamp(1.25rem, 5vw, 5rem); }

.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: clamp(2.5rem, 5vw, 5rem);
}

.section-heading h2, .company h2 {
  font-size: clamp(3.7rem, 7vw, 7.8rem);
  line-height: 0.84;
  letter-spacing: -0.02em;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 3vw, 3rem);
  max-width: 1480px;
  margin: 0 auto;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: var(--line);
  border-radius: 34px;
  box-shadow: 10px 10px 0 var(--ink);
  overflow: hidden;
}

.product-visual {
  position: relative;
  display: grid;
  grid-template-columns: minmax(130px, .72fr) 1fr;
  gap: clamp(1rem, 3vw, 2rem);
  align-items: center;
  min-height: 390px;
  padding: clamp(3.5rem, 5vw, 5rem) clamp(1.5rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
  border-bottom: var(--line);
  overflow: hidden;
}

.product-visual::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -45%;
  width: 70%;
  aspect-ratio: 1;
  border: 3px solid currentColor;
  border-radius: 50%;
  opacity: .18;
}

.meme-visual { color: var(--yellow); background: var(--red); }
.band-visual { color: var(--cream); background: var(--blue); }

.product-visual img {
  position: relative;
  z-index: 2;
  width: 100%;
  border: var(--line);
  border-radius: 26%;
  box-shadow: 8px 8px 0 rgba(28,26,25,.35);
}

.product-visual > p {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 800;
  line-height: .88;
  text-transform: uppercase;
}

.card-number {
  position: absolute;
  z-index: 3;
  top: 1.25rem;
  left: 1.5rem;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: .12em;
}

.product-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(2rem, 4vw, 3.5rem);
}

.product-copy h3 {
  margin-top: .45rem;
  font-size: clamp(4.5rem, 7vw, 7rem);
  line-height: .74;
  letter-spacing: -.02em;
}

.app-icon {
  width: clamp(90px, 10vw, 134px);
  border: var(--line);
  border-radius: 28%;
}

.app-kicker {
  margin: 0 0 0.3rem;
  color: var(--red);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.app-card h3 { font-size: clamp(4rem, 8vw, 7rem); line-height: .8; }
.app-lede { max-width: 650px; margin: 2.5rem 0 1rem; font-size: clamp(1.5rem, 2.5vw, 2.25rem); font-weight: 600; line-height: 1.2; }
.product-copy > p:not(.app-kicker, .app-lede) { max-width: 650px; color: var(--muted); font-size: 1.08rem; }

.feature-list { margin: 2rem 0; padding: 0; list-style: none; border-top: 2px solid var(--ink); }
.feature-list li { display: flex; gap: 1rem; padding: .9rem 0; border-bottom: 2px solid var(--ink); font-weight: 600; }
.feature-list span { color: var(--red); font-family: var(--display); font-weight: 800; }

.availability { display: inline-flex; align-items: center; gap: 1rem; padding: .75rem 1.2rem; color: var(--cream); background: var(--ink); border-radius: 12px; }
.platform-badge { font-size: 2rem; line-height: 1; }
.availability strong, .availability small { display: block; }
.availability strong { font-family: var(--display); font-size: 1.12rem; letter-spacing: .04em; text-transform: uppercase; }
.availability small { color: #c9c2b9; }

.product-links { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 1.35rem; }
.product-button { margin-top: 1.5rem; color: var(--cream); background: var(--red); }
.product-links a,
.breadcrumb,
.legal-contact a {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-underline-offset: .22em;
}

.legal-header .small-cta { background: var(--cream); }
.legal-main { min-height: calc(100svh - 88px); }
.legal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  color: var(--cream);
  background: var(--blue);
  border-bottom: var(--line);
}
.legal-hero-copy { min-width: 0; padding: clamp(4rem, 9vw, 8rem) clamp(1.25rem, 7vw, 7rem); }
.breadcrumb { display: inline-block; margin-bottom: 2rem; color: var(--yellow); }
.legal-hero h1 { max-width: 980px; font-size: clamp(4.4rem, 9vw, 8.5rem); }
.legal-hero h1 span { display: block; }
.legal-hero-intro { max-width: 720px; margin: 2rem 0 0; font-size: clamp(1.15rem, 2vw, 1.45rem); }
.legal-hero-mark {
  display: grid;
  place-items: center;
  min-height: 380px;
  padding: 3rem;
  background: var(--red);
  border-left: var(--line);
}
.legal-hero-mark img { width: min(340px, 76%); filter: drop-shadow(10px 12px 0 rgba(28,26,25,.18)); }
.legal-content {
  display: grid;
  grid-template-columns: minmax(170px, .35fr) minmax(0, 1fr);
  gap: clamp(2.5rem, 7vw, 8rem);
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 6vw, 5rem);
}
.legal-aside { align-self: start; padding-top: .35rem; }
.legal-aside p { margin: 0 0 .55rem; }
.legal-aside strong { font-family: var(--display); letter-spacing: .07em; text-transform: uppercase; }
.legal-aside small { color: var(--muted); }
.legal-body { min-width: 0; max-width: 780px; }
.legal-body section + section { margin-top: 3.25rem; padding-top: 3.25rem; border-top: 2px solid var(--ink); }
.legal-body h2 { margin-bottom: 1rem; font-size: clamp(2.5rem, 5vw, 4.4rem); line-height: .9; }
.legal-body p { margin: 0 0 1rem; font-size: 1.08rem; }
.legal-body ul { margin: 1rem 0; padding-left: 1.35rem; }
.legal-body li + li { margin-top: .55rem; }
.legal-contact { padding: clamp(1.75rem, 4vw, 3rem); background: var(--yellow); border: var(--line); border-radius: 24px; box-shadow: 7px 7px 0 var(--ink); }
.legal-contact h2 { margin-bottom: 1rem; }
.legal-contact p:last-child { margin-bottom: 0; }

.meme-page { background: var(--paper); }
.meme-header { background: var(--ink); }
.meme-header .small-cta { background: var(--yellow); }
.meme-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  min-height: min(820px, calc(100svh - 88px));
  color: var(--cream);
  background: var(--red);
  border-bottom: var(--line);
  overflow: hidden;
}
.meme-hero-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(4rem, 7vw, 7rem) clamp(1.5rem, 6vw, 6.5rem); }
.meme-hero .breadcrumb { color: var(--yellow); }
.meme-title-lockup { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.meme-title-lockup img { width: 74px; border: 2px solid var(--ink); border-radius: 22%; box-shadow: 4px 4px 0 var(--ink); }
.meme-title-lockup .eyebrow { margin: 0; }
.meme-hero h1 { font-size: clamp(4.7rem, 8.6vw, 8.4rem); }
.meme-hero h1 span { color: var(--yellow); }
.meme-hero-intro { max-width: 690px; margin: 2rem 0 0; font-size: clamp(1.12rem, 1.7vw, 1.38rem); }
.meme-hero-stage { position: relative; display: grid; place-items: center; min-height: 650px; padding: 4.5rem 2rem 2rem; background: var(--yellow); border-left: var(--line); overflow: hidden; }
.meme-hero-stage::before { content: ""; position: absolute; width: 78%; aspect-ratio: 1; background: var(--blue); border: var(--line); border-radius: 50%; }
.meme-hero-stage img { position: relative; z-index: 2; width: min(43%, 315px); max-height: 660px; object-fit: cover; object-position: top; border: var(--line); border-radius: 32px; box-shadow: 12px 14px 0 rgba(28,26,25,.28); }
.meme-hero-stage .hero-app-icon { width: min(72%, 480px); aspect-ratio: 1; object-fit: contain; border-radius: 24%; }
.stage-label { position: absolute; z-index: 3; top: 1.5rem; left: 1.75rem; color: var(--ink); font-family: var(--display); font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.meme-hero-stage p { position: absolute; z-index: 3; right: 1.5rem; bottom: 1.25rem; margin: 0; color: var(--red); font-family: var(--display); font-size: clamp(2.4rem, 4vw, 4.8rem); font-weight: 800; line-height: .82; text-align: right; text-transform: uppercase; }

.video-section { padding: clamp(4rem, 8vw, 8rem) clamp(1.25rem, 6vw, 6rem); color: var(--cream); background: var(--blue); border-bottom: var(--line); }
.video-heading { display: grid; grid-template-columns: .45fr 1.2fr .75fr; gap: clamp(1.5rem, 4vw, 5rem); align-items: end; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }
.video-heading h2, .workflow-section h2, .editor-showcase h2, .device-copy h2, .format-section h2, .trust-section h2 { font-size: clamp(3.7rem, 6.5vw, 7rem); line-height: .84; letter-spacing: -.02em; }
.video-heading > p:last-child { max-width: 470px; margin: 0; font-size: 1.1rem; }
.video-placeholder { position: relative; display: grid; place-items: center; width: min(100%, 1500px); aspect-ratio: 16 / 9; margin: 0 auto; padding: 2rem; color: var(--cream); background: var(--ink); border: var(--line); box-shadow: 12px 12px 0 var(--yellow); overflow: hidden; }
.video-placeholder::before { content: ""; position: absolute; inset: 1.1rem; border: 1px solid #5b5752; }
.video-placeholder::after { content: ""; position: absolute; width: min(42vw, 560px); aspect-ratio: 1; border: 2px solid var(--red); border-radius: 50%; opacity: .55; }
.video-placeholder > div { position: relative; z-index: 2; text-align: center; }
.video-placeholder strong, .video-placeholder small { display: block; }
.video-placeholder strong { font-family: var(--display); font-size: clamp(2.3rem, 5vw, 5.5rem); line-height: .9; text-transform: uppercase; }
.video-placeholder small { margin-top: .8rem; color: #bdb6ad; font-size: 1rem; }
.video-play { position: absolute; z-index: 3; top: 50%; left: 50%; display: grid; place-items: center; width: clamp(66px, 8vw, 110px); aspect-ratio: 1; transform: translate(-50%, -180%); padding-left: .3em; color: var(--ink); background: var(--yellow); border: var(--line); border-radius: 50%; font-size: clamp(1.3rem, 2vw, 2rem); box-shadow: 6px 6px 0 var(--red); }
.video-corner { position: absolute; z-index: 3; font-family: var(--display); font-size: .9rem; font-weight: 700; letter-spacing: .14em; }
.video-corner-top { top: 2rem; left: 2rem; }
.video-corner-bottom { right: 2rem; bottom: 2rem; }

.workflow-section { padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 5vw, 5rem); background: var(--cream); border-bottom: var(--line); }
.workflow-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); max-width: 1500px; margin: 0 auto; padding: 0; border: var(--line); list-style: none; }
.workflow-grid li { min-height: 320px; padding: clamp(1.5rem, 3vw, 2.5rem); background: var(--paper); }
.workflow-grid li + li { border-left: var(--line); }
.workflow-grid > li > span { color: var(--red); font-family: var(--display); font-weight: 800; letter-spacing: .12em; }
.workflow-grid h3 { margin: 4rem 0 1rem; font-family: var(--display); font-size: 2.35rem; line-height: .9; text-transform: uppercase; }
.workflow-grid p { margin: 0; color: var(--muted); }

.editor-showcase { display: grid; grid-template-columns: minmax(320px, .72fr) minmax(0, 1.28fr); gap: clamp(2.5rem, 6vw, 7rem); align-items: center; padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 5vw, 5rem); color: var(--cream); background: var(--ink); border-bottom: var(--line); }
.showcase-copy > p:not(.eyebrow) { max-width: 650px; color: #c9c2b9; font-size: 1.1rem; }
.showcase-copy .feature-list { border-color: var(--cream); }
.showcase-copy .feature-list li { border-color: var(--cream); }
.mac-shot { margin: 0; }
.mac-shot img { width: 100%; border: var(--line); box-shadow: 12px 12px 0 var(--red); }
.editor-showcase figcaption, .device-showcase figcaption { margin-top: .9rem; font-family: var(--display); font-size: .9rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.device-showcase { display: grid; grid-template-columns: minmax(180px, .55fr) minmax(280px, .8fr) minmax(280px, 1.15fr); gap: clamp(2rem, 5vw, 6rem); align-items: center; padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 6vw, 6rem); background: var(--yellow); border-bottom: var(--line); }
.device-showcase figure { margin: 0; }
.device-showcase img { width: 100%; border: var(--line); box-shadow: 9px 10px 0 var(--ink); }
.phone-shot { max-width: 390px; justify-self: center; }
.tablet-shot { max-width: 700px; justify-self: end; }
.device-copy p:last-child { max-width: 580px; font-size: 1.12rem; }

.format-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 9rem); padding: clamp(5rem, 9vw, 9rem) clamp(1.25rem, 6vw, 6rem); background: var(--paper); border-bottom: var(--line); }
.format-section > div > p:last-child { max-width: 520px; font-size: 1.12rem; }
.format-list { margin: 0; padding: 0; border-top: var(--line); list-style: none; }
.format-list li { display: grid; grid-template-columns: .45fr .7fr 1fr; gap: 1.5rem; align-items: baseline; padding: 1.1rem 0; border-bottom: var(--line); }
.format-list strong { color: var(--red); font-family: var(--display); font-size: 2.4rem; line-height: 1; }
.format-list span { font-weight: 700; }
.format-list small { color: var(--muted); font-size: .9rem; }

.trust-section { display: grid; grid-template-columns: 1fr 1fr; border-bottom: var(--line); }
.trust-section > div { display: flex; flex-direction: column; align-items: flex-start; min-height: 590px; padding: clamp(4rem, 7vw, 7rem); }
.privacy-card { color: var(--cream); background: var(--green); }
.purchase-card { background: var(--red); border-left: var(--line); }
.trust-section h2 { margin-bottom: 1.5rem; }
.trust-section > div > p:not(.eyebrow) { max-width: 650px; margin-bottom: 2rem; font-size: 1.16rem; }
.trust-section .text-link { margin-top: auto; }
.privacy-card .text-link { color: var(--yellow); }
.release-note { display: flex; align-items: center; gap: 1rem; margin: .5rem 0 2rem; padding: 1rem 1.2rem; color: var(--ink); background: var(--yellow); border: var(--line); border-radius: 14px; }
.release-note > span { font-size: 2.1rem; }
.release-note strong, .release-note small { display: block; }
.release-note strong { font-family: var(--display); font-size: 1.08rem; text-transform: uppercase; }


.manifesto {
  display: grid;
  grid-template-columns: 1fr 2fr;
  min-height: 520px;
  color: var(--cream);
  background: var(--red);
  border-block: var(--line);
}

.manifesto-mark { display: grid; place-items: center; padding: 3rem; border-right: var(--line); }
.manifesto-mark img { width: min(330px, 80%); }
.manifesto > div:last-child { display: flex; flex-direction: column; justify-content: center; padding: clamp(3rem, 7vw, 7rem); }
.manifesto blockquote { max-width: 900px; color: var(--yellow); font-size: clamp(3.8rem, 7vw, 7.8rem); line-height: .86; }
.manifesto > div:last-child > p:last-child { max-width: 660px; margin: 2rem 0 0; font-size: 1.25rem; }

.company {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 8vw, 9rem);
  padding: clamp(5rem, 10vw, 10rem) clamp(1.25rem, 6vw, 6rem);
}

.company-details > p { margin: 0 0 3rem; font-size: clamp(1.4rem, 2.4vw, 2.1rem); line-height: 1.35; }
.company-note { display: flex; justify-content: space-between; gap: 1rem; margin: 0; padding: 1rem 0; border-block: var(--line); font-size: 1rem; font-weight: 600; }
.company-note span { color: var(--red); font-family: var(--display); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }

footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  padding: 3rem clamp(1.25rem, 5vw, 5rem);
  color: var(--cream);
  background: var(--ink);
  border-top: var(--line);
}

.footer-lockup img { width: 54px; }
.footer-brand p { margin: .8rem 0 0; color: #bdb6ad; }
.footer-links { display: flex; flex-wrap: wrap; align-items: flex-start; gap: 2rem; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--yellow); }
.copyright { grid-column: 1 / -1; margin: 0; padding-top: 1.5rem; color: #8f8982; border-top: 1px solid #4c4844; font-size: .9rem; }

@media (max-width: 900px) {
  .site-header { grid-template-columns: 1fr auto; min-height: 76px; }
  .site-header nav { display: none; }
  .small-cta { font-size: .86rem; }
  .hero { grid-template-columns: 1fr; }
  .hero-art { min-height: 440px; border-top: var(--line); border-left: 0; }
  .sun-disc { width: min(72vw, 480px); }
  .hero-fish { width: min(60vw, 400px); }
  .section-heading, .app-grid, .manifesto, .company { grid-template-columns: 1fr; }
  .meme-hero, .video-heading, .editor-showcase, .format-section, .trust-section { grid-template-columns: 1fr; }
  .meme-hero-stage { min-height: 590px; border-top: var(--line); border-left: 0; }
  .meme-hero-stage img { width: min(35%, 260px); }
  .meme-hero-stage .hero-app-icon { width: min(58%, 420px); }
  .workflow-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .workflow-grid li:nth-child(3) { border-left: 0; }
  .workflow-grid li:nth-child(n+3) { border-top: var(--line); }
  .device-showcase { grid-template-columns: .7fr 1.3fr; }
  .device-copy { grid-column: 1 / -1; grid-row: 1; }
  .purchase-card { border-top: var(--line); border-left: 0; }
  .legal-hero, .legal-content { grid-template-columns: minmax(0, 1fr); }
  .legal-hero-mark { min-height: 310px; border-top: var(--line); border-left: 0; }
  .app-card { border-radius: 24px; }
  .product-visual { min-height: 360px; }
  .manifesto-mark { min-height: 330px; border-right: 0; border-bottom: var(--line); }
  .manifesto-mark img { width: min(300px, 55%); }
}

@media (max-width: 600px) {
  .site-header { gap: .8rem; padding: .8rem 1rem; }
  .brand img { width: 46px; }
  .brand span { font-size: 1.25rem; }
  .small-cta { padding: .55rem .7rem; letter-spacing: .05em; }
  .hero-copy { padding: 4rem 1.25rem; }
  h1 { font-size: clamp(4rem, 21vw, 6.4rem); }
  .hero-intro { font-size: 1.08rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .hero-art { min-height: 360px; }
  .section-heading h2, .company h2 { font-size: clamp(3.5rem, 17vw, 5.5rem); }
  .product-card { border-radius: 24px; box-shadow: 7px 7px 0 var(--ink); }
  .product-copy { padding: 1.5rem; }
  .product-visual { grid-template-columns: 125px 1fr; min-height: 290px; padding-inline: 1.25rem; }
  .product-visual > p { font-size: 2.6rem; }
  .app-title-row { align-items: flex-start; gap: 1rem; }
  .app-card h3 { font-size: 4.4rem; }
  .product-copy h3 { font-size: 4.8rem; }
  .meme-title-lockup { align-items: flex-start; flex-direction: column; }
  .meme-hero h1 { font-size: clamp(4rem, 20vw, 6.2rem); }
  .meme-hero-stage { min-height: 500px; }
  .meme-hero-stage img { width: min(48%, 240px); }
  .meme-hero-stage .hero-app-icon { width: min(68%, 340px); }
  .video-heading h2, .workflow-section h2, .editor-showcase h2, .device-copy h2, .format-section h2, .trust-section h2 { font-size: clamp(3.4rem, 16vw, 5.1rem); }
  .video-placeholder { aspect-ratio: 4 / 3; box-shadow: 7px 7px 0 var(--yellow); }
  .video-play { transform: translate(-50%, -190%); }
  .video-corner { font-size: .72rem; }
  .video-corner-top { top: 1.7rem; left: 1.7rem; }
  .video-corner-bottom { right: 1.7rem; bottom: 1.7rem; }
  .workflow-grid { grid-template-columns: 1fr; }
  .workflow-grid li + li { border-top: var(--line); border-left: 0; }
  .workflow-grid li { min-height: 270px; }
  .device-showcase { grid-template-columns: 1fr; }
  .device-copy { grid-column: auto; grid-row: auto; }
  .phone-shot { width: min(82%, 360px); }
  .format-list li { grid-template-columns: .55fr 1fr; gap: .5rem 1rem; }
  .format-list small { grid-column: 2; }
  .trust-section > div { min-height: 530px; padding: 4rem 1.25rem; }
  .manifesto-mark { min-height: 260px; }
  .manifesto > div:last-child { padding: 3rem 1.25rem; }
  .manifesto blockquote { font-size: 3.7rem; }
  .company { padding-inline: 1.25rem; }
  .company-details dl div { grid-template-columns: 1fr; gap: .15rem; }
  .legal-header .small-cta { display: none; }
  .legal-main { min-height: calc(100svh - 76px); }
  .legal-hero-copy { padding: 4rem 1.25rem; }
  .legal-hero h1 { font-size: clamp(4rem, 17.5vw, 6.2rem); }
  .legal-hero-mark { min-height: 260px; }
  .legal-content { padding-block: 4rem; }
  .legal-body section + section { margin-top: 2.5rem; padding-top: 2.5rem; }
  .legal-contact { border-radius: 18px; }
  footer { grid-template-columns: 1fr; }
  .footer-links { flex-direction: column; gap: .75rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
