﻿:root {
  --ink: #17201c;
  --muted-ink: #52615a;
  --line: #d9e0dc;
  --paper: #fbfaf6;
  --white: #ffffff;
  --soft: #eef4ef;
  --green: #0f7b5f;
  --green-dark: #07533f;
  --coral: #d85f43;
  --gold: #d6a642;
  --blue: #2f6f95;
  --shadow: 0 18px 48px rgba(25, 35, 30, .14);
  --shadow-deep: 0 28px 90px rgba(18, 28, 24, .24);
  --radius: 8px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(15, 123, 95, .08), transparent 30%),
    radial-gradient(circle at 90% 10%, rgba(216, 95, 67, .07), transparent 28%),
    var(--paper);
  color: var(--ink);
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, system-ui, sans-serif;
  letter-spacing: 0;
  line-height: 1.75;
}

body.no-scroll {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.28;
}

h1 {
  max-width: 960px;
  font-size: clamp(2.5rem, 8vw, 5.8rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 800;
}

h3 {
  font-size: 1.18rem;
}

button {
  font: inherit;
}

img {
  max-width: 100%;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding-inline: max(28px, calc((100vw - 1440px) / 2 + 28px));
  background: rgba(251, 250, 246, .92);
  border-bottom: 1px solid rgba(217, 224, 220, .8);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 900;
}

.brand-logo {
  display: block;
  width: auto;
  height: 50px;
  max-width: 230px;
  object-fit: contain;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  font-size: .78rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, 0) 42%),
    linear-gradient(135deg, #17201c 0%, #0f7b5f 58%, #d6a642 100%);
  border: 1px solid rgba(255, 255, 255, .58);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(15, 123, 95, .22);
}

.brand-wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1;
}

.brand-wordmark b,
.brand-wordmark i {
  font-weight: 950;
}

.brand-wordmark i {
  color: var(--green-dark);
  font-style: normal;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: .94rem;
  font-weight: 700;
}

.site-nav a {
  color: #26342f;
}

.site-nav a:hover {
  color: var(--green);
}

.nav-cta {
  padding: 10px 15px;
  color: #fff !important;
  background: var(--ink);
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 86px 0 56px;
  background: #e7eee9;
}

.hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(251, 250, 246, .98) 0%, rgba(251, 250, 246, .92) 42%, rgba(251, 250, 246, .38) 56%, rgba(251, 250, 246, .1) 68%, rgba(251, 250, 246, 0) 100%);
  pointer-events: none;
}

.hero-visual {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 120px 7vw 64px 34vw;
  background:
    linear-gradient(120deg, rgba(15, 123, 95, .16), rgba(216, 95, 67, .12)),
    repeating-linear-gradient(0deg, rgba(23, 32, 28, .04), rgba(23, 32, 28, .04) 1px, transparent 1px, transparent 34px),
    repeating-linear-gradient(90deg, rgba(23, 32, 28, .035), rgba(23, 32, 28, .035) 1px, transparent 1px, transparent 34px);
}

.slide-frame {
  position: relative;
  width: min(680px, 58vw);
  aspect-ratio: 16 / 10;
  background: #fff;
  border: 1px solid #d3ddd7;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: rotate(-2deg);
}

.slide-top {
  position: absolute;
  top: 30px;
  left: 34px;
  width: 46%;
  height: 16px;
  background: var(--ink);
  border-radius: 3px;
}

.chart-row {
  position: absolute;
  left: 42px;
  bottom: 50px;
  display: flex;
  align-items: flex-end;
  gap: 16px;
  width: 34%;
  height: 45%;
  padding-top: 20px;
  border-bottom: 2px solid #27362f;
}

.chart-row span {
  flex: 1;
  min-height: 24px;
  background: var(--green);
  border-radius: 5px 5px 0 0;
}

.chart-row span:nth-child(2) {
  background: var(--gold);
}

.chart-row span:nth-child(4) {
  background: var(--coral);
}

.waterfall {
  position: absolute;
  right: 44px;
  bottom: 52px;
  display: flex;
  align-items: flex-end;
  gap: 13px;
  width: 38%;
  height: 50%;
  border-bottom: 2px solid #27362f;
}

.waterfall i {
  position: relative;
  display: block;
  flex: 1;
  min-height: 18px;
  background: var(--blue);
  border-radius: 4px;
}

.waterfall i:nth-child(2),
.waterfall i:nth-child(4) {
  background: var(--coral);
}

.sheet-grid {
  position: absolute;
  right: 52px;
  top: 58px;
  width: 34%;
  height: 52px;
  background:
    linear-gradient(#dfe7e2 1px, transparent 1px),
    linear-gradient(90deg, #dfe7e2 1px, transparent 1px),
    #f7faf8;
  background-size: 100% 17px, 56px 100%;
  border: 1px solid #dfe7e2;
  border-radius: 6px;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.hero-rich h1 {
  max-width: 800px;
  font-size: clamp(2.3rem, 5.4vw, 4.65rem);
  line-height: 1.16;
}

.hero-rich h1 span {
  display: block;
}

.old-hero-media {
  justify-content: flex-end;
  padding: 58px 0 0 41vw;
}

.old-hero-media img {
  width: min(980px, 64vw);
  max-height: 78vh;
  object-fit: contain;
  filter: drop-shadow(0 30px 70px rgba(23, 32, 28, .22));
}

.hero-laptop-media {
  justify-content: flex-end;
  padding: 82px clamp(16px, 4vw, 76px) 32px 50vw;
}

.hero-laptop-media img {
  position: relative;
  width: min(1060px, 52vw);
  max-height: min(70vh, 760px);
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 30px 66px rgba(23, 32, 28, .24));
}

.eyebrow,
.kicker {
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.lead {
  max-width: 760px;
  margin-top: 24px;
  color: #33413c;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-weight: 800;
}

.button::after {
  margin-left: 10px;
  content: "\2192";
}

.button.primary {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.button.ghost {
  background: rgba(255, 255, 255, .62);
}

.button.large {
  min-width: 210px;
}

.answer-band {
  padding: 34px 0;
  background: var(--ink);
  color: #fff;
}

.answer-band .kicker {
  color: #a7d8c8;
}

.answer-grid {
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  gap: 44px;
  align-items: center;
}

.answer-grid p:last-child,
.answer-copy > p:first-child {
  color: #edf4f1;
  font-size: 1.08rem;
}

.answer-copy {
  display: grid;
  gap: 10px;
}

.source-note {
  color: rgba(237, 244, 241, .72);
  font-size: .82rem;
  line-height: 1.7;
}

.source-note a {
  color: #d7efe7;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.section {
  padding: 92px 0;
}

.section.muted {
  background: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:last-child {
  margin-top: 14px;
  color: var(--muted-ink);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 56px;
  align-items: start;
}

.split p:not(.kicker) {
  margin-top: 20px;
  color: var(--muted-ink);
}

.metric-list {
  display: grid;
  gap: 12px;
}

.metric-list div {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 18px;
  align-items: center;
  min-height: 86px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.metric-list strong {
  color: var(--coral);
  font-size: 2rem;
  line-height: 1;
}

.cards {
  display: grid;
  gap: 18px;
}

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card-icon {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--green);
  font-size: .9rem;
  font-weight: 900;
}

.card p {
  margin-top: 12px;
  color: var(--muted-ink);
}

.card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green-dark);
  font-weight: 800;
}

.card a::after,
.link-grid a::after {
  margin-left: 8px;
  content: "\2192";
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.link-grid a {
  min-height: 132px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.link-grid strong,
.link-grid span {
  display: block;
}

.link-grid span {
  margin-top: 10px;
  color: var(--muted-ink);
  font-size: .94rem;
}

.related-pages {
  margin-top: 42px;
}

.related-pages h2 {
  margin-bottom: 16px;
}

.related-pages .link-grid a {
  box-shadow: 0 18px 46px rgba(13, 30, 25, .05);
}

.answer-brief-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.answer-brief-grid article {
  min-height: 230px;
  padding: 24px;
  color: #fff;
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
}

.answer-brief-grid article:nth-child(2) {
  background: var(--green-dark);
}

.answer-brief-grid article:nth-child(3) {
  background: #24362f;
}

.answer-brief-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: #a7d8c8;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.answer-brief-grid p {
  margin-top: 14px;
  color: #edf4f1;
}

.content-cluster-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.cluster-card {
  display: grid;
  align-content: start;
  min-height: 188px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.cluster-card span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 5px 9px;
  color: var(--green-dark);
  background: var(--soft);
  border-radius: 999px;
  font-size: .74rem;
  font-weight: 900;
}

.cluster-card strong {
  display: block;
  line-height: 1.5;
}

.cluster-card em {
  display: block;
  margin-top: 12px;
  color: var(--muted-ink);
  font-size: .86rem;
  font-style: normal;
}

.cluster-card::after {
  align-self: end;
  margin-top: 18px;
  color: var(--green);
  font-weight: 900;
  content: "Read ->";
}

.primary-cluster {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(216, 95, 67, .22), rgba(216, 95, 67, 0) 38%),
    var(--green-dark);
  border-color: var(--green-dark);
}

.primary-cluster span {
  color: #fff;
  background: rgba(255, 255, 255, .16);
}

.primary-cluster em {
  color: #eaf4ef;
}

.primary-cluster::after {
  color: #fff;
}

.draft-answer-board {
  display: grid;
  grid-template-columns: .9fr repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.draft-answer-board > div,
.draft-answer-board article {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.draft-answer-board > div {
  background: var(--paper);
}

.draft-answer-board h3 {
  font-size: 1.35rem;
}

.draft-answer-board p {
  margin-top: 12px;
  color: var(--muted-ink);
  font-size: .94rem;
}

.brand-showcase {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 24px;
  align-items: center;
  margin-top: 26px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.brand-showcase-logo {
  display: grid;
  place-items: center;
  min-height: 190px;
  padding: 18px;
  background: var(--paper);
  border: 1px solid rgba(217, 224, 220, .9);
  border-radius: 8px;
}

.brand-showcase-logo img {
  width: min(100%, 440px);
}

.brand-showcase-logo.company-logo img {
  width: min(100%, 260px);
}

.brand-showcase-copy {
  display: grid;
  gap: 14px;
}

.brand-showcase-copy p {
  color: var(--muted-ink);
}

.reseller-about {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
}

.reseller-about .brand-showcase-logo {
  min-height: 230px;
}

.reseller-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
}

.reseller-list li {
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  list-style: none;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  min-height: 72px;
  padding: 14px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
}

.steps span {
  color: var(--green);
}

.faq {
  display: grid;
  gap: 10px;
}

details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 800;
}

details p {
  padding: 0 22px 20px;
  color: var(--muted-ink);
}

.contact {
  padding: 84px 0;
  color: #fff;
  background: var(--green-dark);
}

.contact .kicker {
  color: #bfe4d8;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
}

.contact p:not(.kicker) {
  max-width: 760px;
  margin-top: 18px;
  color: #eaf4ef;
}

.contact .button.primary {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.site-footer {
  padding: 32px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.footer-logo-only {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-only img {
  display: block;
  width: auto;
  height: 54px;
  max-width: min(280px, 86vw);
}

.page-hero {
  padding: 90px 0 62px;
  background: #e7eee9;
  border-bottom: 1px solid var(--line);
}

.page-hero .lead {
  max-width: 900px;
}

.breadcrumbs {
  margin-bottom: 28px;
  color: var(--muted-ink);
  font-size: .86rem;
}

.breadcrumbs a {
  color: var(--green-dark);
  font-weight: 800;
}

.answer-box {
  margin-top: 28px;
  padding: 22px;
  background: #fff;
  border-left: 6px solid var(--green);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(25, 35, 30, .08);
}

.answer-box p {
  color: #31413b;
  font-weight: 700;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 44px;
}

.content-layout > * {
  min-width: 0;
}

.article {
  display: grid;
  gap: 44px;
  min-width: 0;
}

.article > section {
  min-width: 0;
}

.article h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.article h3 {
  margin-bottom: 10px;
}

.article p,
.article li {
  color: var(--muted-ink);
}

.article ul,
.article ol {
  margin: 16px 0 0;
  padding-left: 1.3em;
}

.article li + li {
  margin-top: 8px;
}

.table-wrap {
  overflow-x: auto;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

th,
td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  color: var(--ink);
  background: #f3f7f4;
}

tr:last-child td {
  border-bottom: 0;
}

.callout {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.callout strong {
  color: var(--green-dark);
}

.mini-chart {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  align-items: end;
  min-height: 200px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mini-chart span {
  display: block;
  min-height: 18px;
  background: var(--green);
  border-radius: 4px 4px 0 0;
}

.mini-chart span:nth-child(2),
.mini-chart span:nth-child(5) {
  background: var(--gold);
}

.mini-chart span:nth-child(4) {
  background: var(--coral);
}

.media-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-img.contain {
  object-fit: contain;
  padding: 24px;
}

.image-frame {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(217, 224, 220, .82);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.image-frame::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(23, 32, 28, .10));
}

.image-frame.tall {
  aspect-ratio: 4 / 5;
}

.image-frame.wide {
  aspect-ratio: 16 / 10;
}

.image-frame.square {
  aspect-ratio: 1 / 1;
}

.image-frame.floating {
  transform: rotate(-1deg);
}

.texture-band {
  position: relative;
  overflow: hidden;
}

.texture-band::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255,255,255,.08), transparent),
    repeating-linear-gradient(90deg, rgba(23,32,28,.035) 0 1px, transparent 1px 42px);
  opacity: .7;
}

.media-hero {
  position: relative;
  padding: 96px 0 76px;
  overflow: hidden;
  background: #e7eee9;
  border-bottom: 1px solid var(--line);
}

.media-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .95fr);
  gap: 58px;
  align-items: center;
}

.media-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
}

.media-hero-copy {
  min-width: 0;
}

.media-hero-visual {
  display: grid;
  gap: 14px;
}

.slide-focus-hero .container {
  width: min(1500px, calc(100% - 40px));
  grid-template-columns: minmax(300px, .52fr) minmax(760px, 1.48fr);
  gap: 42px;
}

.slide-focus-hero h1 {
  font-size: clamp(2.3rem, 4.45vw, 4.35rem);
}

.hero-heading-xl h1 {
  font-size: clamp(3rem, 5.25vw, 5.25rem);
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-all;
}

.slide-full-frame {
  aspect-ratio: 16 / 9;
  background: #fff;
}

.slide-full-frame::after {
  display: none;
}

.slide-full-frame .media-img,
.slide-full-frame.media-img {
  object-fit: contain;
  padding: 0;
}

.slide-wide-container {
  width: min(1280px, calc(100% - 40px));
}

.slide-figure-wide {
  max-width: 1180px;
}

.agency-company-hero {
  padding: 62px 0 58px;
}

.agency-company-hero .container {
  grid-template-columns: minmax(0, 1fr) minmax(320px, .82fr);
  gap: 44px;
}

.agency-company-hero h1 {
  max-width: 620px;
  font-size: clamp(2.25rem, 4.2vw, 3.65rem);
  line-height: 1.14;
}

.agency-company-hero .lead {
  max-width: 760px;
  margin-top: 22px;
}

.agency-company-hero .answer-box {
  max-width: 780px;
  margin-top: 28px;
  border-left-color: var(--ink);
  box-shadow: 0 12px 34px rgba(23, 32, 28, .08);
}

.agency-hero-logo {
  min-height: 198px;
  padding: 28px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 54px rgba(23, 32, 28, .08);
}

.brand-showcase-logo.company-logo.agency-hero-logo img {
  width: min(100%, 310px);
}

.price-hero-split .container {
  grid-template-columns: minmax(360px, .95fr) minmax(0, 1.05fr);
}

.price-photo-visual {
  order: -1;
}

.price-photo-frame {
  aspect-ratio: 4 / 3;
}

.price-photo-frame img {
  object-fit: cover;
  object-position: 48% 50%;
}

.media-caption {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted-ink);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.video-band {
  padding: 72px 0;
}

.video-heading {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 26px;
}

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

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

.video-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(23, 32, 28, .09);
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #e8eee9;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card h3 {
  padding: 18px 18px 20px;
  font-size: 1.02rem;
}

.video-card p {
  margin: -8px 18px 20px;
  color: var(--muted-ink);
  font-size: .9rem;
}

.toolkit-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.toolkit-gallery figure {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 38px rgba(23, 32, 28, .08);
}

.toolkit-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.toolkit-gallery figcaption {
  padding: 14px 16px;
  color: var(--muted-ink);
  font-size: .9rem;
  font-weight: 700;
}

.visual-ribbon {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.visual-ribbon .image-frame {
  aspect-ratio: 4 / 3;
}

.visualization-proof-section {
  display: grid;
  gap: 28px;
}

.visualization-proof-section .section-heading {
  margin-bottom: 0;
}

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

.reason-panel-grid .card {
  min-height: 230px;
}

.reason-panel-grid-four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.reason-panel-grid-four .card {
  min-height: 100%;
}

.visual-reason-card {
  overflow: hidden;
  padding: 0;
}

.reason-card-image {
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.reason-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.reason-card-copy {
  padding: 24px;
}

.reason-card-copy p {
  margin-top: 12px;
}

.training-hero-frame {
  aspect-ratio: 16 / 10;
}

.training-hero-img {
  object-position: 60% 50%;
}

.proof-image-card {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.proof-image-wide {
  width: min(960px, 100%);
  justify-self: center;
}

.proof-image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.proof-image-card figcaption {
  padding: 14px 16px;
  color: var(--muted-ink);
  font-size: .9rem;
  font-weight: 700;
}

.proof-visual-overlay {
  position: relative;
  width: min(1040px, 100%);
  justify-self: center;
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.proof-visual-overlay > img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.proof-visual-overlay figcaption {
  position: absolute;
  left: 24px;
  bottom: 18px;
  z-index: 2;
  max-width: 430px;
  color: rgba(23, 32, 28, .72);
  font-size: .82rem;
  font-weight: 800;
}

.proof-overlay-card {
  position: absolute;
  z-index: 2;
  width: min(360px, 38%);
  padding: 18px;
  background: rgba(255, 255, 255, .88);
  border: 1px solid rgba(217, 224, 220, .9);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(23, 32, 28, .12);
  backdrop-filter: blur(12px);
}

.proof-overlay-card span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 900;
}

.proof-overlay-card h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.proof-overlay-card p {
  margin-top: 8px;
  color: #31413b;
  font-size: .95rem;
}

.proof-overlay-left {
  left: 26px;
  top: 26px;
}

.proof-overlay-right {
  right: 26px;
  top: 26px;
}

.legacy-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.legacy-feature-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(23, 32, 28, .09);
}

.legacy-feature-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
}

.legacy-feature-card div {
  padding: 18px;
}

.legacy-feature-card h3 {
  margin-bottom: 8px;
}

.legacy-feature-card p {
  color: var(--muted-ink);
  font-size: .94rem;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.plan-card {
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: 28px 22px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(23, 32, 28, .08);
}

.plan-card img {
  width: auto;
  height: 128px;
  object-fit: contain;
}

.plan-users {
  color: var(--green-dark);
  font-weight: 800;
}

.plan-users strong {
  font-size: 3.2rem;
  line-height: 1;
}

.plan-price {
  color: var(--ink);
  font-weight: 700;
}

.plan-price strong {
  font-size: 2.25rem;
  line-height: 1;
}

.plan-price small {
  display: block;
  color: var(--muted-ink);
  font-size: .86rem;
  font-weight: 600;
}

.plan-notes {
  margin: 22px 0 0;
  padding: 0;
  color: var(--muted-ink);
  font-size: .92rem;
  list-style: none;
}

.pricing-section {
  background: #f5f7f4;
}

.pricing-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 100%;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(23, 32, 28, .08);
}

.featured-price {
  border-color: rgba(15, 123, 95, .28);
  box-shadow: 0 18px 46px rgba(23, 32, 28, .08);
}

.pricing-card-media {
  display: grid;
  place-items: center;
  min-height: 122px;
  margin: -6px -6px 4px;
  padding: 16px;
  background: var(--paper);
  border: 1px solid rgba(217, 224, 220, .84);
  border-radius: 8px;
}

.pricing-card-media img {
  width: auto;
  height: 90px;
  object-fit: contain;
}

.pricing-label {
  color: var(--green-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pricing-card h2 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.pricing-price {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.1;
}

.pricing-price strong {
  font-size: clamp(1.95rem, 3.4vw, 2.65rem);
}

.contact-price {
  display: flex;
  align-items: center;
  min-height: 58px;
  color: var(--green-dark);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
}

.pricing-meta {
  color: var(--muted-ink);
  font-size: .9rem;
  font-weight: 800;
}

.pricing-list {
  display: grid;
  gap: 10px;
  margin: 6px 0 4px;
  padding: 0;
  list-style: none;
  flex: 1;
}

.pricing-list li {
  position: relative;
  padding-left: 20px;
  color: var(--muted-ink);
  font-size: .94rem;
}

.pricing-list li::before {
  position: absolute;
  top: .75em;
  left: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--green);
  border-radius: 999px;
}

.pricing-card .button {
  width: 100%;
  margin-top: auto;
}

.quote-card {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(216, 95, 67, .18), rgba(216, 95, 67, 0) 46%),
    var(--ink);
  border-color: var(--ink);
}

.quote-card .pricing-label,
.quote-card .pricing-meta,
.quote-card .pricing-list li,
.quote-card .contact-price {
  color: #edf4f1;
}

.quote-card .pricing-list li::before {
  background: var(--gold);
}

.quote-card .button.primary {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

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

.pricing-support-grid article {
  min-height: 230px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.pricing-support-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--coral);
  font-size: .78rem;
  font-weight: 900;
}

.pricing-support-grid p {
  margin-top: 12px;
  color: var(--muted-ink);
}

.feature-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-media-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature-media-card .image-frame {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.feature-media-card div:not(.image-frame) {
  padding: 20px;
}

.feature-media-card p {
  margin-top: 10px;
  color: var(--muted-ink);
}

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

.training-slide-grid figure {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(23, 32, 28, .09);
}

.training-slide-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.training-slide-grid figcaption {
  padding: 14px 16px;
  color: var(--muted-ink);
  font-size: .9rem;
  font-weight: 800;
}

.article-figure {
  margin: 22px 0 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(23, 32, 28, .09);
}

.article-figure img {
  display: block;
  width: 100%;
  height: auto;
}

.article-figure figcaption {
  padding: 14px 16px;
  color: var(--muted-ink);
  font-size: .9rem;
  font-weight: 800;
}

.research-source {
  margin-top: 12px;
  color: var(--muted-ink);
  font-size: .82rem;
  font-weight: 800;
}

.research-source a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.visual-point-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, 1.1fr);
  gap: 22px;
  align-items: center;
}

.visual-point-grid .article-figure {
  margin: 0;
}

.visual-point-grid p {
  margin: 0;
}

.dark-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0;
  color: #fff;
  background: #121c18;
}

.dark-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 12% 20%, rgba(15, 123, 95, .38), transparent 35%),
    radial-gradient(circle at 88% 12%, rgba(216, 95, 67, .22), transparent 30%);
}

.dark-section .container {
  position: relative;
  z-index: 1;
}

.dark-section .kicker {
  color: #a7d8c8;
}

.dark-section p,
.dark-section li {
  color: #dbe6e1;
}

.dark-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.glass-panel {
  padding: 24px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  box-shadow: var(--shadow-deep);
  backdrop-filter: blur(18px);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.pill-list span {
  padding: 8px 11px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-dark);
  font-size: .84rem;
  font-weight: 800;
}

.dark-section .pill-list span {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.16);
  color: #fff;
}

.timeline-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.timeline-cards article {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.timeline-cards span {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--coral);
  font-size: .82rem;
  font-weight: 900;
}

.timeline-cards p {
  margin-top: 10px;
  color: var(--muted-ink);
}

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}

.logo-cloud img {
  width: 100%;
  height: 64px;
  padding: 16px;
  object-fit: contain;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.note-small {
  margin-top: 12px;
  color: var(--muted-ink);
  font-size: .82rem;
}

.hero-rich {
  min-height: 700px;
}

.workspace-visual {
  position: relative;
  width: min(760px, 60vw);
  overflow: hidden;
  background: rgba(255, 255, 255, .95);
  border: 1px solid #d3ddd7;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}

.workspace-bar {
  display: flex;
  gap: 8px;
  align-items: center;
  height: 42px;
  padding: 0 16px;
  background: #17201c;
}

.workspace-bar span {
  width: 10px;
  height: 10px;
  background: #f4cf65;
  border-radius: 50%;
}

.workspace-bar span:first-child {
  background: #e56d58;
}

.workspace-bar span:last-child {
  background: #56b98f;
}

.workspace-body {
  display: grid;
  grid-template-columns: 1.4fr .9fr;
  gap: 18px;
  padding: 20px;
}

.slide-preview,
.ai-panel {
  min-height: 330px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.slide-preview {
  position: relative;
  padding: 24px;
}

.slide-title {
  width: 68%;
  height: 18px;
  background: var(--ink);
  border-radius: 4px;
}

.slide-kpi {
  display: grid;
  gap: 2px;
  width: 132px;
  margin-top: 24px;
  padding: 14px;
  color: #fff;
  background: var(--green-dark);
  border-radius: 8px;
}

.slide-kpi b {
  font-size: 1.8rem;
  line-height: 1;
}

.slide-kpi i {
  font-size: .78rem;
  font-style: normal;
  opacity: .82;
}

.slide-chart {
  position: absolute;
  right: 24px;
  bottom: 28px;
  left: 24px;
  display: flex;
  align-items: flex-end;
  gap: 14px;
  height: 145px;
  padding-left: 168px;
  border-bottom: 2px solid #27362f;
}

.slide-chart span {
  flex: 1;
  min-height: 28px;
  background: var(--green);
  border-radius: 5px 5px 0 0;
}

.slide-chart span:nth-child(2) {
  background: var(--gold);
}

.slide-chart span:nth-child(4) {
  background: var(--coral);
}

.ai-panel {
  padding: 22px;
  background: #f8fbf9;
}

.ai-panel p {
  margin-bottom: 10px;
  color: var(--green-dark);
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ai-panel strong {
  display: block;
  font-size: 1.25rem;
  line-height: 1.35;
}

.ai-panel ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.ai-panel li {
  padding: 11px 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted-ink);
  font-size: .92rem;
}

.workspace-footer {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.workspace-footer span {
  display: grid;
  min-height: 42px;
  place-items: center;
  background: #fff;
  color: var(--muted-ink);
  font-size: .86rem;
  font-weight: 800;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.trust-row span {
  padding: 8px 11px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #26342f;
  font-size: .86rem;
  font-weight: 800;
}

.section-heading.wide {
  max-width: 940px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.value-grid article,
.ai-workflow article,
.package-compare article {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.value-grid span,
.ai-workflow span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--coral);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.value-grid p,
.ai-workflow p,
.package-compare p,
.package-compare li {
  margin-top: 12px;
  color: var(--muted-ink);
}

.cards.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card-accent {
  border-color: rgba(216, 95, 67, .42);
  box-shadow: 0 12px 32px rgba(216, 95, 67, .12);
}

.product-showcase {
  align-items: stretch;
}

.package-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.package-compare h3 {
  font-size: 1.35rem;
}

.package-compare ul {
  margin: 18px 0 0;
  padding-left: 1.1em;
}

.featured-package {
  color: #fff;
  background: var(--green-dark) !important;
  border-color: var(--green-dark) !important;
}

.featured-package p,
.featured-package li {
  color: #eaf4ef;
}

.ai-workflow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.proof-grid div {
  display: grid;
  gap: 8px;
  align-content: center;
  min-height: 150px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.proof-grid strong {
  color: var(--green);
  font-size: 2.9rem;
  line-height: 1;
}

.proof-grid span {
  color: var(--muted-ink);
  font-weight: 800;
}

@media (max-width: 1180px) {
  .reason-panel-grid-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: fixed;
    inset: 72px 14px auto 14px;
    display: none;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 12px;
  }

  .nav-cta {
    text-align: center;
  }

  .hero {
    min-height: 760px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(251, 250, 246, .99) 0%, rgba(251, 250, 246, .94) 48%, rgba(251, 250, 246, .58) 68%, rgba(251, 250, 246, .08) 100%);
  }

  .hero-visual {
    align-items: flex-end;
    padding: 120px 20px 40px;
  }

  .old-hero-media {
    align-items: flex-end;
    padding: 96px 0 24px 18vw;
  }

  .old-hero-media img {
    width: min(980px, 105vw);
    max-height: 62vh;
    opacity: .55;
  }

  .hero-laptop-media {
    justify-content: center;
    align-items: flex-end;
    padding: 290px 10px 18px;
  }

  .hero-laptop-media img {
    width: min(840px, 132vw);
    max-height: 44vh;
    opacity: 1;
  }

  .slide-frame {
    width: 92vw;
  }

  .workspace-visual {
    width: 92vw;
  }

  .workspace-body {
    grid-template-columns: 1fr;
  }

  .slide-preview,
  .ai-panel {
    min-height: 260px;
  }

  .answer-grid,
  .split,
  .video-heading,
  .visual-point-grid,
  .contact-inner,
  .content-layout,
  .media-hero .container,
  .slide-focus-hero .container,
  .agency-company-hero .container,
  .brand-showcase,
  .reseller-about,
  .dark-grid {
    grid-template-columns: 1fr;
  }

  .cards.three,
  .cards.four,
  .link-grid,
  .answer-brief-grid,
  .content-cluster-grid,
  .draft-answer-board,
  .value-grid,
  .ai-workflow,
  .package-compare,
  .proof-grid,
  .feature-media-grid,
  .legacy-feature-grid,
  .plan-grid,
  .pricing-card-grid,
  .pricing-support-grid,
  .reason-panel-grid,
  .video-grid,
  .toolkit-gallery,
  .training-slide-grid,
  .timeline-cards {
    grid-template-columns: 1fr;
  }

  .logo-cloud {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-visual-overlay {
    display: grid;
  }

  .proof-visual-overlay figcaption,
  .proof-overlay-card {
    position: static;
  }

  .proof-visual-overlay figcaption {
    max-width: none;
    padding: 12px 16px 0;
  }

  .proof-overlay-card {
    width: auto;
    margin: 14px;
  }

}

@media (max-width: 560px) {
  .container,
  .hero-copy {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    padding-inline: 20px;
  }

  .brand-logo {
    height: 44px;
    max-width: 196px;
  }

  .hero {
    padding-top: 92px;
  }

  .hero-rich h1 {
    overflow-wrap: anywhere;
    font-size: clamp(1.9rem, 9vw, 2.75rem);
  }

  .hero .lead {
    overflow-wrap: anywhere;
  }

  .section {
    padding: 64px 0;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    justify-content: center;
  }

  .metric-list div,
  .steps li {
    grid-template-columns: 1fr;
  }

  .workspace-footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .slide-chart {
    padding-left: 0;
    height: 118px;
  }

  .slide-kpi {
    width: 118px;
  }

  .media-hero {
    padding: 78px 0 56px;
  }

  .agency-company-hero {
    padding: 58px 0 48px;
  }

  .media-hero .container {
    gap: 26px;
  }

  .agency-company-hero h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .media-hero-visual {
    order: -1;
  }

  .media-hero-visual .image-frame.tall {
    aspect-ratio: 16 / 10;
  }

  .visual-ribbon {
    grid-template-columns: 1fr;
  }

  .media-caption {
    display: grid;
  }

  .hero-heading-xl h1 {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-all;
    font-size: clamp(2.35rem, 12vw, 3.45rem);
    line-height: .98;
  }

  .hero-heading-xl .media-hero-copy,
  .hero-heading-xl .lead,
  .hero-heading-xl .answer-box,
  .hero-heading-xl .slide-full-frame {
    max-width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .hero-heading-xl .media-hero-visual {
    order: 0;
  }
}
