:root {
  color-scheme: light;
  --bg: #f3efe4;
  --bg-soft: #e9e2d4;
  --paper: #fbf8f0;
  --paper-strong: #fffdf7;
  --ink: #14211d;
  --muted: #606b65;
  --line: rgba(20, 33, 29, .14);
  --line-strong: rgba(20, 33, 29, .24);
  --emerald: #0e5f48;
  --emerald-deep: #073d30;
  --emerald-soft: #d9e8df;
  --gold: #ad8441;
  --gold-bright: #d4ad68;
  --studio: #06100d;
  --studio-2: #0c1d18;
  --studio-text: #f4efe2;
  --studio-muted: #aebbb4;
  --shadow: 0 24px 72px rgba(18, 32, 27, .13);
  --shadow-small: 0 12px 30px rgba(18, 32, 27, .09);
  --media-shadow: 0 18px 48px rgba(18, 32, 27, .11);
  --radius: 24px;
  --radius-small: 15px;
  --media-radius: 20px;
  --serif: Iowan Old Style, Palatino Linotype, Book Antiqua, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #07110e;
  --bg-soft: #0a1813;
  --paper: #0e1d18;
  --paper-strong: #13251f;
  --ink: #f2eee3;
  --muted: #a9b3ad;
  --line: rgba(236, 230, 215, .13);
  --line-strong: rgba(236, 230, 215, .24);
  --emerald: #4daf89;
  --emerald-deep: #1d7558;
  --emerald-soft: #143a2d;
  --gold: #d0a75f;
  --gold-bright: #e1c285;
  --studio: #020805;
  --studio-2: #07140f;
  --studio-text: #f7f1e5;
  --studio-muted: #a7b3ac;
  --shadow: 0 24px 72px rgba(0, 0, 0, .35);
  --shadow-small: 0 12px 30px rgba(0, 0, 0, .27);
  --media-shadow: 0 18px 48px rgba(0, 0, 0, .3);
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}
html.has-designer-glide { scroll-behavior: auto; }
body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
main { min-width: 0; }
section[id] { scroll-margin-top: 92px; }
figure { margin: 0; }
img {
  display: block;
  max-inline-size: 100%;
  block-size: auto;
}
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
code { font: .92em ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }

.skip-link {
  position: fixed;
  inset-block-start: 12px;
  inset-inline-start: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  text-decoration: none;
}
.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}
:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--gold) 78%, white);
  outline-offset: 4px;
}

.page-shell {
  width: min(1180px, calc(100% - 42px));
  margin-inline: auto;
}
.site-header {
  position: sticky;
  inset-block-start: 0;
  z-index: 100;
  border-block-end: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 96%, transparent);
}
.header-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 760;
  text-decoration: none;
  letter-spacing: -.02em;
}
.brand-mark {
  inline-size: 34px;
  block-size: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--paper);
  box-shadow: var(--shadow-small);
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-inline: auto 0;
}
.header-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: .86rem;
  font-weight: 660;
}
.header-nav a:hover { color: var(--ink); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.theme-toggle {
  display: flex;
  align-items: center;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}
.theme-toggle__option {
  border: 0;
  border-radius: 999px;
  padding: 7px 9px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: .72rem;
  cursor: pointer;
}
.theme-toggle__option[aria-pressed="true"] {
  background: var(--ink);
  color: var(--bg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-block-size: 48px;
  padding-inline: 22px;
  border: 1px solid var(--emerald);
  border-radius: 999px;
  background: var(--emerald);
  color: #fff;
  font-weight: 760;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(14, 95, 72, .18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(14, 95, 72, .24);
}
.button--small {
  min-block-size: 40px;
  padding-inline: 17px;
  font-size: .84rem;
}
.button--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
  box-shadow: none;
}
.button--ghost:hover { background: var(--paper); }
.text-link {
  font-weight: 760;
  color: var(--emerald);
  text-underline-offset: 5px;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--gold);
  font-size: .74rem;
  font-weight: 860;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.hero h1,
.section-heading h2,
.final-cta h2,
.trust-copy h2,
.trust-notice h2,
.privacy-card h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -.043em;
  line-height: 1;
}
.hero h1 em,
.section-heading h2 em,
.final-cta h2 em,
.trust-copy h2 em,
.privacy-card h2 em {
  color: var(--gold);
  font-weight: 500;
}

/* Shared editorial media system. */
.media-card {
  min-inline-size: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--media-radius);
  background: var(--paper-strong);
  box-shadow: var(--media-shadow);
}
.media-card--studio {
  color: var(--studio-text);
  border-color: rgba(225, 194, 133, .2);
  background: var(--studio-2);
}
.media-card--compact {
  border-radius: 17px;
  box-shadow: 0 10px 26px rgba(18, 32, 27, .07);
}
.media-frame {
  inline-size: 100%;
  min-block-size: 0;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--bg-soft);
}
.media-frame img {
  inline-size: 100%;
  block-size: 100%;
  max-inline-size: 100%;
  object-fit: contain;
  object-position: center;
}
.media-caption {
  padding: 15px 17px 17px;
  display: grid;
  gap: 5px;
  min-inline-size: 0;
}
.media-caption__label,
.media-caption__copy {
  display: block;
  min-inline-size: 0;
}
.media-caption__label {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 560;
  line-height: 1.22;
}
.media-caption__copy {
  color: var(--muted);
  font-size: .81rem;
  line-height: 1.5;
}
.media-card--studio .media-caption__label { color: var(--studio-text); }
.media-card--studio .media-caption__copy { color: var(--studio-muted); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 70px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .24;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}
.hero-ambient {
  position: absolute;
  inline-size: 680px;
  block-size: 680px;
  inset-block-start: -400px;
  inset-inline-end: -220px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, color-mix(in srgb, var(--gold) 24%, transparent), transparent 68%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, .96fr) minmax(500px, 1.04fr);
  gap: 52px;
  align-items: center;
}
.hero-copy { max-inline-size: 600px; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-block-end: 26px;
  color: var(--muted);
  font-size: .82rem;
}
.breadcrumb a { text-underline-offset: 4px; }
.hero h1 { font-size: clamp(3.35rem, 5.5vw, 5.95rem); }
.hero-lead {
  max-inline-size: 610px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-block-start: 30px;
}
.hero-actions--center { justify-content: center; }
.hero-trust {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px 18px;
  color: var(--muted);
  font-size: .84rem;
}
.hero-trust li {
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.hero-trust span {
  color: var(--emerald);
  font-weight: 900;
}
.product-window { min-inline-size: 0; }
.product-window--hero {
  inline-size: min(100%, 690px);
  justify-self: end;
  border-color: rgba(212, 173, 104, .3);
  background: var(--studio);
  box-shadow: 0 28px 76px rgba(0, 0, 0, .25);
}
.window-label {
  min-block-size: 50px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-block-end: 1px solid var(--line);
  color: var(--muted);
  font-size: .74rem;
}
.product-window--hero .window-label {
  color: var(--studio-muted);
  border-color: rgba(255, 255, 255, .08);
}
.window-label strong {
  color: var(--ink);
  font-weight: 720;
  text-align: end;
}
.product-window--hero .window-label strong { color: var(--studio-text); }
.window-media,
.media-frame--editor {
  aspect-ratio: 1800 / 879;
  max-block-size: 520px;
  padding: 10px;
  background: var(--studio);
}
.product-window--light .window-media { background: var(--bg-soft); }
.media-frame--hero { max-block-size: 500px; }

.principles {
  border-block: 1px solid var(--line);
  background: var(--paper);
}
.principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.principle-grid article {
  padding: 28px 31px;
  border-inline-end: 1px solid var(--line);
}
.principle-grid article:last-child { border: 0; }
.principle-number {
  color: var(--gold);
  font-size: .67rem;
  letter-spacing: .14em;
  font-weight: 860;
}
.principle-grid h2 {
  margin: 9px 0 4px;
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 560;
}
.principle-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
}

.source-highlight {
  padding-block: 96px;
  background: linear-gradient(135deg, #09231b, #0d3025 55%, #10231d);
}
.source-highlight .section-heading { max-inline-size: 810px; }
.source-highlight .section-heading h2 { color: var(--studio-text); }
.source-highlight-grid {
  max-inline-size: 1000px;
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.source-highlight-card {
  min-block-size: 245px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
  background: rgba(255,255,255,.065);
  box-shadow: 0 18px 45px rgba(0,0,0,.18);
}
.source-highlight-card__number {
  color: var(--gold);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .15em;
}
.source-highlight-card h3 {
  max-inline-size: 410px;
  margin: 26px 0 10px;
  color: var(--studio-text);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.65rem);
  font-weight: 560;
  line-height: 1.06;
}
.source-highlight-card p {
  max-inline-size: 510px;
  margin: 0;
  color: var(--studio-muted);
  font-size: .94rem;
  line-height: 1.65;
}
.source-highlight-card__tag {
  display: inline-block;
  margin-block-start: 22px;
  color: var(--gold);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.source-highlight-action { margin-block-start: 30px; text-align: center; }
.source-highlight .button { box-shadow: 0 12px 28px rgba(0,0,0,.2); }

.section { padding: 90px 0; }
.section--paper { background: var(--paper); }
.section--ink {
  background: var(--studio);
  color: var(--studio-text);
}
.section--studio { background: linear-gradient(180deg, var(--paper), var(--bg-soft)); }
.section-heading { max-inline-size: 730px; }
.section-heading--split {
  max-inline-size: none;
  display: grid;
  grid-template-columns: 1fr .76fr;
  gap: 66px;
  align-items: end;
  margin-block-end: 40px;
}
.section-heading--center {
  margin-inline: auto;
  text-align: center;
}
.section-heading--side { align-self: center; }
.section-heading h2 { font-size: clamp(2.6rem, 4.35vw, 4.75rem); }
.section-heading > p:not(.eyebrow),
.section-heading--split > p {
  color: var(--muted);
  font-size: 1rem;
}
.section-heading--on-ink > p,
.section--ink .section-heading > p:not(.eyebrow) { color: var(--studio-muted); }

.work-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-inline-size: 1060px;
  margin-inline: auto;
  align-items: stretch;
}
.work-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
}
.work-media {
  max-block-size: 430px;
  padding: 0;
  background: #090b0a;
}
.work-media img {
  display: block;
  inline-size: 100%;
  block-size: auto;
  object-fit: contain;
}
.work-card--hadith .work-media img { transform: scale(1.14); }
.work-media--transparent {
  background-color: #101211;
  background-image: linear-gradient(45deg, rgba(255,255,255,.035) 25%, transparent 25%), linear-gradient(-45deg, rgba(255,255,255,.035) 25%, transparent 25%), linear-gradient(45deg, transparent 75%, rgba(255,255,255,.035) 75%), linear-gradient(-45deg, transparent 75%, rgba(255,255,255,.035) 75%);
  background-size: 28px 28px;
  background-position: 0 0, 0 14px, 14px -14px, -14px 0;
}
.work-card .media-caption {
  min-block-size: 116px;
  padding: 17px 18px 19px;
}
.work-card .media-caption__label { font-size: 1.22rem; }
.work-card .media-caption__copy { font-size: .84rem; }

.workflow-grid {
  list-style: none;
  padding: 0;
  margin: 46px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.workflow-card {
  min-inline-size: 0;
  padding: 22px;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(21, 32, 28, .04);
}
.workflow-number {
  inline-size: 44px;
  block-size: 44px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-size: .71rem;
  font-weight: 860;
  letter-spacing: .08em;
}
.workflow-copy h3 {
  margin: 1px 0 6px;
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 560;
  line-height: 1.12;
}
.workflow-copy p {
  margin: 0;
  color: var(--muted);
  font-size: .88rem;
}
.workflow-shot {
  grid-column: 1 / -1;
  margin-block-start: 4px;
  background: var(--paper-strong);
}
.media-frame--workflow {
  aspect-ratio: 16 / 9;
  max-block-size: 250px;
  padding: 10px;
  background: var(--bg-soft);
}
.media-frame--workflow img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: contain;
}
.media-frame--portrait img { max-inline-size: 255px; }
.media-frame--art {
  background: #090b0a;
}
.media-frame--art img { max-inline-size: 250px; }
.media-frame--menu img { max-inline-size: 160px; }
.workflow-shot .media-caption {
  padding: 12px 14px 14px;
  min-block-size: 75px;
}
.workflow-shot .media-caption__label { font-size: 1rem; }
.workflow-shot .media-caption__copy { font-size: .76rem; }
.center-actions {
  margin-block-start: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.editor-story { min-inline-size: 0; }
.editor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, .65fr);
  gap: 24px;
  align-items: stretch;
}
.product-window--light {
  inline-size: 100%;
  max-inline-size: 780px;
  justify-self: center;
  background: var(--paper-strong);
}
.editor-facts {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: var(--paper);
}
.editor-facts article {
  padding: 24px;
  border-block-end: 1px solid var(--line);
}
.editor-facts article:last-child { border: 0; }
.editor-facts span {
  color: var(--gold);
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.editor-facts h3 {
  margin: 9px 0 5px;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 560;
}
.editor-facts p {
  margin: 0;
  color: var(--muted);
  font-size: .84rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(480px, 1.08fr);
  gap: 58px;
  align-items: center;
}
.trust-copy h2 { font-size: clamp(2.65rem, 4.25vw, 4.8rem); }
.trust-copy h2 em { color: var(--gold-bright); }
.trust-copy > p {
  margin-block: 22px;
  color: var(--studio-muted);
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 13px;
}
.check-list li {
  position: relative;
  padding-inline-start: 27px;
  color: var(--studio-muted);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  color: var(--gold-bright);
  font-weight: 900;
}
.trust-evidence {
  inline-size: min(100%, 620px);
  justify-self: end;
  box-shadow: 0 28px 72px rgba(0, 0, 0, .24);
}
.trust-evidence .media-frame--editor {
  max-block-size: 340px;
  padding: 10px;
  background: #f0ece2;
}

.typography-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: 62px;
  align-items: center;
}
.typography-evidence {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 16px;
  max-inline-size: 590px;
  align-items: end;
}
.type-panel-shot,
.type-art-shot { min-inline-size: 0; }
.media-frame--type-panel {
  aspect-ratio: 4 / 5;
  max-block-size: 430px;
  padding: 10px;
  background: var(--bg-soft);
}
.media-frame--type-panel img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: contain;
  object-position: center top;
}
.media-frame--type-art {
  aspect-ratio: 1;
  max-block-size: 320px;
  padding: 14px;
  background: #101211;
}
.media-frame--type-art img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: contain;
}
.typography-evidence .media-caption {
  min-block-size: 102px;
  padding: 14px 15px 16px;
}
.typography-evidence .media-caption__label { font-size: 1.05rem; }
.typography-evidence .media-caption__copy { font-size: .77rem; }
.mini-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-block-start: 24px;
}
.mini-feature-grid span {
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--muted);
  font-size: .8rem;
}

.effects-layout { min-inline-size: 0; }
.effect-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  background: var(--bg);
}
.effect-cards article {
  min-block-size: 190px;
  padding: 27px;
  border-inline-end: 1px solid var(--line);
  border-block-end: 1px solid var(--line);
}
.effect-cards article:nth-child(2n) { border-inline-end: 0; }
.effect-cards article:nth-last-child(-n+2) { border-block-end: 0; }
.effect-cards span {
  color: var(--gold);
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.effect-cards h3 {
  margin: 30px 0 8px;
  font-family: var(--serif);
  font-size: 1.42rem;
  font-weight: 560;
  line-height: 1.15;
}
.effect-cards p {
  margin: 0;
  color: var(--muted);
  font-size: .87rem;
}

.export-story { min-inline-size: 0; }
.mockup-pair {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
  gap: 20px;
  max-inline-size: 1040px;
  margin-inline: auto;
  align-items: stretch;
}
.mockup-ui,
.mockup-result {
  min-inline-size: 0;
  display: flex;
  flex-direction: column;
}
.media-frame--mockup-ui {
  aspect-ratio: 1124 / 924;
  max-block-size: 420px;
  padding: 10px;
  background: #07140f;
}
.media-frame--mockup-result {
  aspect-ratio: 1600 / 1023;
  max-block-size: 420px;
  padding: 10px;
  background: #20170f;
}
.media-frame--mockup-ui img,
.media-frame--mockup-result img {
  inline-size: 100%;
  block-size: 100%;
  object-fit: contain;
}
.mockup-ui .media-caption,
.mockup-result .media-caption { min-block-size: 105px; }
.export-facts {
  max-inline-size: 1040px;
  margin: 20px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 20px;
  overflow: hidden;
}
.export-facts article {
  padding: 20px;
  display: grid;
  gap: 6px;
  border-inline-end: 1px solid rgba(255, 255, 255, .1);
}
.export-facts article:last-child { border: 0; }
.export-facts strong {
  color: var(--studio-text);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 560;
}
.export-facts span {
  color: var(--studio-muted);
  font-size: .8rem;
}

.section--privacy { padding-block: 64px; }
.privacy-card {
  padding: 46px;
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: 58px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--emerald-soft) 58%, var(--paper)), var(--paper));
}
.privacy-card h2 { font-size: clamp(2.35rem, 3.75vw, 4.1rem); }
.privacy-copy { color: var(--muted); }
.privacy-copy p { margin-block: 0 15px; }
.privacy-copy .button { margin-block-start: 7px; }

.faq-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 68px;
  align-items: start;
}
.faq-heading {
  position: sticky;
  inset-block-start: 104px;
}
.faq-list { border-block-start: 1px solid var(--line); }
.faq-list details { border-block-end: 1px solid var(--line); }
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 44px 20px 0;
  position: relative;
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 560;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  position: absolute;
  inset-inline-end: 2px;
  inset-block-start: 17px;
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 400;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list p {
  margin: -3px 0 22px;
  color: var(--muted);
}

.trust-notice { padding-block: 62px; }
.trust-notice__inner {
  padding: 34px 0;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 28px;
  align-items: center;
  border-block: 1px solid var(--line);
}
.trust-symbol {
  inline-size: 70px;
  block-size: 70px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.9rem;
}
.trust-notice h2 { font-size: clamp(1.95rem, 3.2vw, 3.45rem); }
.trust-notice p:last-child {
  max-inline-size: 820px;
  color: var(--muted);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  color: var(--studio-text);
  background: radial-gradient(circle at 50% 120%, rgba(77, 175, 137, .28), transparent 42%), var(--studio);
  text-align: center;
}
.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .14;
  background-image: radial-gradient(rgba(255,255,255,.13) .7px, transparent .7px);
  background-size: 16px 16px;
}
.final-cta__inner { position: relative; }
.final-cta h2 { font-size: clamp(2.8rem, 5.4vw, 5.8rem); }
.final-cta p:not(.eyebrow) {
  max-inline-size: 700px;
  margin: 22px auto 0;
  color: var(--studio-muted);
}
.final-cta .button--ghost {
  color: var(--studio-text);
  border-color: rgba(255,255,255,.22);
}
.final-cta .button--ghost:hover { background: rgba(255,255,255,.07); }

.site-footer {
  padding: 42px 0;
  border-block-start: 1px solid var(--line);
  background: var(--paper);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 34px;
  align-items: end;
}
.brand--footer { margin-block-end: 8px; }
.footer-inner p {
  margin: 0;
  color: var(--muted);
  font-size: .85rem;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}
.footer-links a {
  color: var(--muted);
  font-size: .84rem;
  text-underline-offset: 4px;
}
.footer-copy { white-space: nowrap; }


/* User-facing product story. */
.hero-audience {
  margin: 18px 0 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 560;
}

.audience-grid {
  max-inline-size: 1040px;
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.audience-card {
  min-inline-size: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow-small);
}
.audience-card--advanced {
  background: linear-gradient(145deg, color-mix(in srgb, var(--emerald-soft) 42%, var(--paper)), var(--paper));
}
.audience-kicker,
.feature-badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--emerald);
  background: var(--paper-strong);
  font-size: .7rem;
  font-weight: 840;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.audience-card h3 {
  margin: 20px 0 12px;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.3vw, 2.25rem);
  font-weight: 560;
  line-height: 1.08;
}
.audience-card > p {
  margin: 0;
  color: var(--muted);
}
.friendly-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 26px;
  display: grid;
  gap: 11px;
  color: var(--muted);
  font-size: .9rem;
}
.friendly-list li {
  position: relative;
  padding-inline-start: 23px;
}
.friendly-list li::before {
  content: "✓";
  position: absolute;
  inset-inline-start: 0;
  color: var(--gold);
  font-weight: 900;
}
.audience-card .text-link { margin-block-start: auto; }
.audience-summary {
  margin: 28px auto 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  text-align: center;
}

.example-strip {
  max-inline-size: 1060px;
  margin: 22px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.example-strip span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--bg);
  font-size: .78rem;
}

.tool-spotlights {
  margin-block-start: 48px;
  display: grid;
  gap: 24px;
}
.tool-spotlight {
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr);
  gap: 42px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
}
.tool-spotlight--reverse {
  grid-template-columns: minmax(420px, 1.18fr) minmax(0, .82fr);
}
.tool-spotlight--reverse .tool-spotlight__copy { order: 2; }
.tool-spotlight__copy h3 {
  margin: 18px 0 12px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 3.45rem);
  font-weight: 540;
  letter-spacing: -.035em;
  line-height: 1.02;
}
.tool-spotlight__copy p {
  margin: 0 0 12px;
  color: var(--muted);
}
.typography-tool-card,
.color-tool-card {
  inline-size: min(100%, 620px);
  justify-self: center;
}
.typography-tool-card .media-frame--type-panel {
  aspect-ratio: 1905 / 826;
  max-block-size: 300px;
  padding: 0;
}
.typography-tool-card .media-frame--type-panel img {
  max-inline-size: none;
}
.color-tool-card .window-media {
  max-block-size: 330px;
}

.creative-grid {
  margin-block-start: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 26px;
  overflow: hidden;
  background: var(--bg);
}
.creative-grid article {
  min-block-size: 220px;
  padding: 25px;
  border-inline-end: 1px solid var(--line);
  border-block-end: 1px solid var(--line);
}
.creative-grid article:nth-child(3n) { border-inline-end: 0; }
.creative-grid article:nth-last-child(-n+3) { border-block-end: 0; }
.creative-grid span {
  color: var(--gold);
  font-size: .67rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.creative-grid h3 {
  margin: 28px 0 9px;
  font-family: var(--serif);
  font-size: 1.36rem;
  font-weight: 560;
  line-height: 1.14;
}
.creative-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
}

.simple-steps {
  list-style: none;
  max-inline-size: 980px;
  padding: 0;
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  background: var(--paper);
}
.simple-steps li {
  min-inline-size: 0;
  padding: 22px 19px;
  border-inline-end: 1px solid var(--line);
}
.simple-steps li:last-child { border-inline-end: 0; }
.simple-steps li > span {
  color: var(--gold);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .1em;
}
.simple-steps h3 {
  margin: 22px 0 8px;
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 560;
  line-height: 1.16;
}
.simple-steps p {
  margin: 0;
  color: var(--muted);
  font-size: .8rem;
}
.video-card {
  inline-size: min(100%, 1080px);
  max-inline-size: 1080px;
  margin: 34px auto 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow);
}
.video-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  min-block-size: 0;
  border-radius: 16px;
  background: #07110f;
}
.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: none;
}
.video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  inline-size: 76px;
  block-size: 76px;
  display: grid;
  place-items: center;
  padding-inline-start: 4px;
  border: 1px solid rgba(239,202,113,.78);
  border-radius: 16px;
  color: #0a211a;
  background: linear-gradient(145deg, #f5d98b, #c6953d);
  box-shadow: 0 14px 30px rgba(0,0,0,.34), 0 0 0 7px rgba(239,202,113,.14);
  font-size: 1.45rem;
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}
.video-play:hover,.video-play:focus-visible { background: linear-gradient(145deg, #ffe5a3, #d8ad54); transform: translate(-50%, -50%) scale(1.05); }
.video-card.is-playing .video-play { opacity: 0; pointer-events: none; }
.video-status {
  position: absolute;
  inset: 12px auto auto 12px;
  z-index: 4;
  max-inline-size: calc(100% - 24px);
  padding: 5px 9px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  background: rgba(7,17,15,.78);
  font-size: .68rem;
  line-height: 1.2;
  opacity: .92;
  transition: opacity .2s ease, transform .2s ease;
}
.video-status:empty,
.video-card.is-playing .video-status { opacity: 0; transform: translateY(-4px); pointer-events: none; }
.video-card.is-error .video-status { color: #ffd9d4; border-color: rgba(255,150,137,.34); }
.video-controls {
  position: absolute;
  inset: auto 0 0;
  z-index: 3;
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr) auto auto auto auto auto;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 0 0 16px 16px;
  color: #fff;
  background: #07110f;
  box-shadow: 0 10px 24px rgba(0,0,0,.25);
  opacity: .96;
}
.video-control {
  display: grid;
  place-items: center;
  inline-size: 30px;
  block-size: 30px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: inherit;
  background: transparent;
  cursor: pointer;
}
.video-control:hover,.video-control:focus-visible { background: rgba(255,255,255,.14); }
.video-progress { inline-size: 100%; accent-color: var(--gold); cursor: pointer; }
.video-progress:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.video-time { min-inline-size: 78px; font-size: .72rem; font-variant-numeric: tabular-nums; white-space: nowrap; }
.video-quality-label { color: rgba(255,255,255,.68); font-size: .68rem; }
.video-quality { min-block-size: 30px; padding: 0 7px; border: 1px solid rgba(255,255,255,.18); border-radius: 7px; color: #fff; background: #10211c; font: 650 .68rem/1 var(--font); }
.video-channel-link { display: inline-flex; gap: 6px; margin-block-start: 12px; color: var(--accent2); font-weight: 760; text-decoration: none; }
.video-channel-link:hover { text-decoration: underline; }
.video-channel-link::before { content: '▶'; display: inline-grid; place-items: center; inline-size: 20px; block-size: 20px; border-radius: 6px; color: #09231b; background: var(--gold); font-size: .55rem; }
.button--playlist { border-color: rgba(239,202,113,.7); color: #10231c; background: var(--gold); box-shadow: 0 10px 25px rgba(177,130,45,.24); }
.button--playlist:hover { background: #f5d98b; }
.video-card .media-caption { padding: 14px 4px 2px; }

.trust-grid--plain {
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
}
.trust-points {
  display: grid;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  overflow: hidden;
}
.trust-points article {
  padding: 22px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  border-block-end: 1px solid rgba(255, 255, 255, .1);
}
.trust-points article:last-child { border-block-end: 0; }
.trust-points article > span {
  color: var(--gold-bright);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .08em;
}
.trust-points h3 {
  margin: 0 0 4px;
  color: var(--studio-text);
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 560;
}
.trust-points p {
  margin: 0;
  color: var(--studio-muted);
  font-size: .86rem;
}

.mockup-pair--light .media-card { background: var(--paper-strong); }
.export-facts--light {
  border-color: var(--line);
  background: var(--paper);
}
.export-facts--light article {
  border-color: var(--line);
}
.export-facts--light strong { color: var(--ink); }
.export-facts--light span { color: var(--muted); }

[dir="rtl"] .hero-copy,
[dir="rtl"] .section-heading,
[dir="rtl"] .trust-copy,
[dir="rtl"] .workflow-copy,
[dir="rtl"] .media-caption,
[dir="rtl"] .faq-list,
[dir="rtl"] .editor-facts,
[dir="rtl"] .effect-cards { text-align: start; }
[dir="rtl"] .window-label strong { text-align: start; }
[dir="rtl"] img { transform: none; }

@media (max-width: 1120px) {
  .header-nav { display: none; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .hero-copy { max-inline-size: 760px; }
  .product-window--hero {
    inline-size: min(100%, 820px);
    justify-self: center;
  }
  .work-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-inline-size: 980px;
  }
  .editor-layout {
    grid-template-columns: 1fr;
    max-inline-size: 880px;
    margin-inline: auto;
  }
  .product-window--light { max-inline-size: 820px; }
  .editor-facts { grid-template-columns: repeat(3, 1fr); }
  .editor-facts article {
    border-block-end: 0;
    border-inline-end: 1px solid var(--line);
  }
  .editor-facts article:last-child { border-inline-end: 0; }
  .trust-grid,
  .typography-grid { gap: 46px; }
  .export-facts { grid-template-columns: repeat(2, 1fr); }
  .export-facts article:nth-child(2) { border-inline-end: 0; }
  .export-facts article:nth-child(-n+2) { border-block-end: 1px solid rgba(255,255,255,.1); }
}

@media (max-width: 860px) {
  .page-shell { width: min(100% - 30px, 760px); }
  .site-header { background: var(--bg); }
  .theme-switcher { display: none; }
  .header-inner { min-block-size: 64px; }
  .hero { padding: 62px 0 56px; }
  .principle-grid { grid-template-columns: 1fr; }
  .principle-grid article {
    border-inline-end: 0;
    border-block-end: 1px solid var(--line);
  }
  .principle-grid article:last-child { border-block-end: 0; }
  .section { padding: 70px 0; }
  .section-heading--split,
  .trust-grid,
  .typography-grid,
  .privacy-card,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .section-heading--split { margin-block-end: 32px; }
  .work-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-inline-size: 700px;
  }
  .work-card--transparent { grid-column: 1 / -1; }
  .work-card--transparent {
    inline-size: min(100%, 340px);
    justify-self: center;
  }
  .workflow-grid { grid-template-columns: 1fr; }
  .workflow-card { max-inline-size: 680px; margin-inline: auto; }
  .editor-facts { grid-template-columns: 1fr; }
  .editor-facts article {
    border-inline-end: 0;
    border-block-end: 1px solid var(--line);
  }
  .editor-facts article:last-child { border-block-end: 0; }
  .trust-evidence {
    inline-size: min(100%, 680px);
    justify-self: center;
  }
  .typography-evidence {
    inline-size: min(100%, 610px);
    justify-self: center;
  }
  .effect-cards { grid-template-columns: 1fr; }
  .effect-cards article {
    border-inline-end: 0;
    border-block-end: 1px solid var(--line);
  }
  .effect-cards article:last-child { border-block-end: 0; }
  .mockup-pair {
    grid-template-columns: 1fr;
    max-inline-size: 620px;
  }
  .faq-heading { position: static; }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
  .footer-copy { grid-column: 1 / -1; }
}

@media (max-width: 580px) {
  html { scroll-behavior: auto; }
  .page-shell { width: min(100% - 22px, 540px); }
  .header-actions .button {
    min-block-size: 38px;
    padding-inline: 13px;
    font-size: .76rem;
  }
  .brand span:last-child { font-size: .84rem; }
  .brand-mark {
    inline-size: 31px;
    block-size: 31px;
  }
  .hero { padding-block: 50px 46px; }
  .hero h1 { font-size: clamp(2.85rem, 13.4vw, 4.2rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { inline-size: 100%; }
  .hero-trust { display: grid; }
  .product-window { border-radius: 17px; }
  .product-window--hero { inline-size: 100%; }
  .window-label {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
    min-block-size: 54px;
  }
  .window-label strong { text-align: start; }
  .window-media,
  .media-frame--editor {
    aspect-ratio: 16 / 10;
    max-block-size: 270px;
    padding: 8px;
  }
  .product-window--hero .media-caption { padding: 13px 14px 15px; }
  .section { padding: 56px 0; }
  .section-heading h2,
  .trust-copy h2 { font-size: clamp(2.35rem, 11.3vw, 3.55rem); }
  .work-gallery {
    grid-template-columns: 1fr;
    max-inline-size: 330px;
  }
  .work-card--transparent {
    grid-column: auto;
    inline-size: 100%;
  }
  .work-media {
    max-block-size: 390px;
    padding: 0;
  }
  .work-card .media-caption { min-block-size: 0; }
  .workflow-card {
    grid-template-columns: 44px 1fr;
    gap: 13px;
    padding: 18px;
  }
  .workflow-number {
    inline-size: 38px;
    block-size: 38px;
  }
  .media-frame--workflow {
    aspect-ratio: 16 / 10;
    max-block-size: 220px;
    padding: 8px;
  }
  .media-frame--portrait img { max-inline-size: 190px; }
  .media-frame--art img { max-inline-size: 190px; }
  .media-frame--menu img { max-inline-size: 125px; }
  .center-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .center-actions .button { inline-size: 100%; }
  .editor-layout { gap: 16px; }
  .typography-evidence {
    grid-template-columns: 1fr;
    max-inline-size: 320px;
  }
  .media-frame--type-panel {
    aspect-ratio: 4 / 5;
    max-block-size: 390px;
  }
  .media-frame--type-art {
    max-block-size: 300px;
  }
  .typography-evidence .media-caption { min-block-size: 0; }
  .mini-feature-grid { grid-template-columns: 1fr; }
  .effect-cards article {
    min-block-size: 166px;
    padding: 23px;
  }
  .effect-cards h3 { margin-block-start: 25px; }
  .media-frame--mockup-ui,
  .media-frame--mockup-result {
    max-block-size: 330px;
    padding: 8px;
  }
  .mockup-ui .media-caption,
  .mockup-result .media-caption { min-block-size: 0; }
  .export-facts { grid-template-columns: 1fr; }
  .export-facts article {
    border-inline-end: 0;
    border-block-end: 1px solid rgba(255,255,255,.1);
  }
  .export-facts article:last-child { border-block-end: 0; }
  .privacy-card { padding: 28px 21px; }
  .trust-notice__inner { grid-template-columns: 1fr; }
  .trust-symbol {
    inline-size: 60px;
    block-size: 60px;
  }
  .final-cta { padding: 74px 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-copy { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .button:hover { transform: none; }
}

[dir="rtl"] .audience-card,
[dir="rtl"] .tool-spotlight__copy,
[dir="rtl"] .creative-grid,
[dir="rtl"] .simple-steps,
[dir="rtl"] .trust-points { text-align: start; }

@media (max-width: 1120px) {
  .tool-spotlight,
  .tool-spotlight--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
    max-inline-size: 820px;
    margin-inline: auto;
  }
  .tool-spotlight--reverse .tool-spotlight__copy { order: 0; }
  .typography-tool-card,
  .color-tool-card { inline-size: min(100%, 760px); }
  .creative-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .creative-grid article:nth-child(3n) { border-inline-end: 1px solid var(--line); }
  .creative-grid article:nth-child(2n) { border-inline-end: 0; }
  .creative-grid article:nth-last-child(-n+3) { border-block-end: 1px solid var(--line); }
  .creative-grid article:nth-last-child(-n+2) { border-block-end: 0; }
  .simple-steps { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .simple-steps li { border-block-end: 1px solid var(--line); }
  .simple-steps li:nth-child(3) { border-inline-end: 0; }
  .simple-steps li:nth-child(4),
  .simple-steps li:nth-child(5) { border-block-end: 0; }
  .simple-steps li:last-child { border-inline-end: 0; }
}

@media (max-width: 860px) {
  .audience-grid { grid-template-columns: 1fr; max-inline-size: 680px; }
  .audience-card { padding: 27px; }
  .source-highlight-grid { grid-template-columns: 1fr; max-inline-size: 680px; }
  .tool-spotlight { padding: 22px; }
  .creative-grid { grid-template-columns: 1fr; }
  .creative-grid article,
  .creative-grid article:nth-child(2n),
  .creative-grid article:nth-child(3n),
  .creative-grid article:nth-last-child(-n+2),
  .creative-grid article:nth-last-child(-n+3) {
    min-block-size: 0;
    border-inline-end: 0;
    border-block-end: 1px solid var(--line);
  }
  .creative-grid article:last-child { border-block-end: 0; }
  .simple-steps { grid-template-columns: 1fr; max-inline-size: 680px; }
  .simple-steps li,
  .simple-steps li:nth-child(3),
  .simple-steps li:nth-child(4),
  .simple-steps li:nth-child(5) {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    border-inline-end: 0;
    border-block-end: 1px solid var(--line);
  }
  .simple-steps li:last-child { border-block-end: 0; }
  .simple-steps h3 { margin-block-start: 0; }
  .trust-grid--plain { grid-template-columns: 1fr; }
}

@media (max-width: 580px) {
  .hero-audience { font-size: 1rem; }
  .audience-grid { margin-block-start: 32px; }
  .audience-card { padding: 22px 19px; }
  .audience-card h3 { font-size: 1.72rem; }
  .example-strip { justify-content: flex-start; }
  .tool-spotlights { margin-block-start: 34px; }
  .tool-spotlight { padding: 18px; border-radius: 20px; }
  .tool-spotlight__copy h3 { font-size: 2.25rem; }
  .typography-tool-card .media-frame--type-panel {
    aspect-ratio: 1905 / 826;
    max-block-size: 240px;
  }
  .typography-tool-card .media-frame--type-panel img { max-inline-size: none; }
  .color-tool-card .window-media { max-block-size: 240px; }
  .creative-grid article { padding: 22px; }
  .creative-grid h3 { margin-block-start: 20px; }
  .simple-steps { margin-block-start: 34px; }
  .simple-steps li { padding: 18px 16px; }
  .video-card { padding: 9px; border-radius: 18px; }
  .video-frame { min-block-size: 0; }
  .video-frame { border-radius: 12px; }
  .video-play { inline-size: 58px; block-size: 58px; font-size: 1.2rem; }
  .video-status { inset: 8px 8px auto; max-inline-size: calc(100% - 16px); font-size: .62rem; }
  .video-controls { display: flex; flex-wrap: wrap; gap: 4px; padding: 6px; }
  .video-controls .video-control { flex: 0 0 30px; }
  .video-progress { flex: 1 1 92px; min-inline-size: 80px; block-size: 24px; }
  .video-time { order: 5; flex: 1 1 auto; min-inline-size: 0; font-size: .64rem; }
  .video-quality-label { display: none; }
  .video-quality { min-block-size: 28px; padding-inline: 4px; font-size: .61rem; }
  .trust-points article { padding: 19px 17px; grid-template-columns: 32px 1fr; }
  .mockup-pair--light { max-inline-size: 100%; }
}
