@font-face {
  font-family: Marcellus;
  src: url("/Marcellus-Regular.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}

:root {
  --font-display: Marcellus, Georgia, "Times New Roman", serif;
  --ink: #173329;
  --ink-deep: #10271e;
  --cream: #f8f2e6;
  --site-shadow:
    0 22px 55px rgba(23, 31, 20, 0.1), 0 3px 10px rgba(23, 31, 20, 0.05);
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font:
    16px/1.6 ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
a:focus-visible,
summary:focus-visible {
  outline: 3px solid #ca6c42;
  outline-offset: 4px;
  border-radius: 4px;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.13;
}
h1 em,
h2 em {
  font-style: normal;
  color: var(--accent);
}
h2 {
  font-size: clamp(34px, 4vw, 54px);
  letter-spacing: -0.025em;
}
h3 {
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.wrap {
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
}
.eyebrow {
  margin-bottom: 24px;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.35;
  text-transform: uppercase;
}

.topbar {
  position: relative;
  z-index: 10;
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}
.navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 47px;
  border: 1px solid #cfc4a9;
  border-radius: 12px;
  background: var(--panel-soft);
}
.brand strong {
  display: block;
  font: 26px/1.05 var(--font-display);
}
.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.01em;
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 650;
}
.nav-actions > a:not(.button) {
  text-decoration: none;
}
.nav-actions > a:not(.button):hover {
  color: var(--accent);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 48px;
  padding: 12px 23px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.button:hover {
  transform: translateY(-2px);
}
.primary {
  background: var(--accent);
  color: var(--panel);
}
.primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 9px 20px rgba(178, 63, 34, 0.17);
}

/* The first screen is a product story, not a second paragraph about the product. */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(98, 139, 93, 0.22), transparent 27%),
    radial-gradient(
      circle at 88% 90%,
      rgba(215, 155, 101, 0.12),
      transparent 30%
    ),
    linear-gradient(135deg, #18382c 0%, #10291f 58%, #0e241d 100%);
  color: #fcf8ef;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.13;
  pointer-events: none;
  background-image: linear-gradient(
    90deg,
    transparent 49.9%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 50.1%
  );
  background-size: 170px 170px;
  transform: skewX(-12deg) scale(1.3);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 88px);
  padding-block: clamp(58px, 6vw, 84px);
}
.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 570px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d9bb89;
  margin-bottom: 27px;
}
.eyebrow-rule {
  display: inline-block;
  width: 26px;
  height: 2px;
  background: #d9bb89;
  flex-shrink: 0;
}
.hero h1 {
  max-width: 14ch;
  margin-bottom: 23px;
  font-size: clamp(50px, 4.7vw, 66px);
  letter-spacing: -0.04em;
}
.hero h1 em {
  color: #e7b38a;
}
.hero-lede {
  max-width: 46ch;
  margin-bottom: 25px;
  color: #e6e9dd;
  font-size: clamp(17px, 1.65vw, 19px);
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}
.hero-button {
  min-height: 58px;
  padding-inline: 23px;
  background: #f2d5b4;
  color: #243026;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.13);
}
.hero-button:hover {
  background: #fff1d7;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.2);
}
.hero-text-link {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  padding-bottom: 3px;
}
.hero-text-link:hover {
  color: #f2d5b4;
  border-color: #f2d5b4;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 21px 0 0;
  color: #c7d4c3;
  font-size: 13px;
}
.note-mark {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #8db8a0;
  color: #b5dcc4;
  font-size: 11px;
}

.workspace-preview {
  position: relative;
  z-index: 1;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 16px;
  background: #fdfaf3;
  color: #2e332b;
  box-shadow:
    0 36px 80px rgba(0, 0, 0, 0.22),
    0 4px 12px rgba(0, 0, 0, 0.09);
  transform: rotate(1deg);
}
.workspace-preview::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 20px -16px -20px 16px;
  border: 1px solid rgba(241, 219, 177, 0.24);
  border-radius: 16px;
  pointer-events: none;
}
.preview-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid #ebe2d3;
}
.preview-brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 800;
}
.preview-brand-icon {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background: var(--accent);
  color: white;
  font-size: 15px;
}
.preview-label {
  color: #7b7567;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: right;
}
.source-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 19px 20px 0;
  padding: 13px 14px;
  border: 1px solid #e7dac1;
  border-radius: 10px;
  background: #fff;
}
.source-icon {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  height: 34px;
  border-radius: 8px;
  background: #f5e9d9;
  color: var(--accent);
  font-weight: 800;
}
.source-card small,
.source-card strong {
  display: block;
  line-height: 1.25;
}
.source-card small {
  margin-bottom: 4px;
  color: #9b8069;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.13em;
}
.source-card strong {
  font-size: 13px;
}
.source-check {
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  margin-left: auto;
  border-radius: 50%;
  background: #d9eadb;
  color: #326548;
  font-size: 13px;
  font-weight: 800;
}
.preview-flow {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 29px;
  margin-left: 44px;
}
.preview-flow span {
  width: 2px;
  height: 12px;
  border-radius: 1px;
  background: #d6c7ab;
}
.preview-flow span:nth-child(2) {
  height: 18px;
}
.preview-work {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 12px;
  padding: 0 20px 20px;
}
.preview-section-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: #766e60;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.preview-section-label span {
  color: #a3917a;
}
.preview-idea {
  position: relative;
  min-height: 100px;
  padding: 13px;
  border: 1px solid #e7dac4;
  border-radius: 8px;
  background: #fff;
}
.preview-idea + .preview-idea {
  margin-top: 9px;
}
.preview-idea.active {
  border-color: #d7a78c;
  background: #fff7ef;
  box-shadow: inset 3px 0 var(--accent);
}
.preview-idea-number {
  display: block;
  margin-bottom: 10px;
  color: #a76548;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.preview-idea strong {
  display: block;
  max-width: 14ch;
  font: 18px/1.15 var(--font-display);
}
.preview-idea-arrow {
  position: absolute;
  right: 12px;
  bottom: 10px;
  color: var(--accent);
}
.preview-idea.secondary {
  min-height: 78px;
}
.preview-idea.secondary .preview-idea-number {
  color: #858073;
}
.preview-idea.secondary strong {
  color: #757366;
  font-size: 16px;
}
.preview-revise {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  padding: 13px 3px 0;
  color: #725d4c;
  font-size: 10px;
  font-weight: 700;
}
.preview-output {
  min-width: 0;
}
.specimen {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  min-height: 252px;
  height: 100%;
  border-radius: 7px;
  background:
    radial-gradient(
      circle at 78% 22%,
      #dbad82 0,
      #c57b61 24%,
      transparent 24.5%
    ),
    linear-gradient(135deg, #bb5841 3%, #a74232 50%, #602e29 100%);
  color: #fff4e5;
  isolation: isolate;
}
.specimen::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 14% -38% -23% 25%;
  border: 1px solid rgba(255, 238, 216, 0.5);
  border-radius: 50%;
  transform: rotate(-23deg);
}
.specimen-top,
.specimen-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 16px;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.specimen-top span {
  font-size: 17px;
}
.specimen-center {
  position: relative;
  z-index: 2;
  max-width: 90%;
  padding: 0 14px;
  font: clamp(24px, 2.6vw, 34px)/1.08 var(--font-display);
  letter-spacing: -0.04em;
}
.specimen-center i {
  font-style: normal;
  color: #ffdec2;
}
.specimen-bottom {
  z-index: 2;
  margin-top: 20px;
  font-size: 7px;
  letter-spacing: 0.04em;
}
.specimen-bottom span {
  font-size: 15px;
}
.specimen-orbit {
  position: absolute;
  display: block;
  width: 75px;
  height: 75px;
  border: 1px solid rgba(255, 235, 199, 0.38);
  border-radius: 50%;
  pointer-events: none;
}
.orbit-one {
  top: 19%;
  right: -30px;
}
.orbit-two {
  bottom: -28px;
  left: 19%;
  width: 95px;
  height: 95px;
}
.preview-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 20px;
  border-top: 1px solid #ebe2d3;
  color: #736c5e;
  font-size: 10px;
  font-weight: 700;
}
.preview-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #38684e;
}
.preview-status > span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4e8862;
}

.promise-strip {
  background: #ede5d7;
  border-bottom: 1px solid #ded3bf;
}
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-block: 22px;
}
.promise-grid p {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}
.promise-grid p + p {
  border-left: 1px solid #d2c4af;
  padding-left: 35px;
}
.promise-grid span {
  font: 17px/1 var(--font-display);
  color: var(--accent);
}

.section {
  padding-block: 108px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.58fr;
  align-items: end;
  gap: 50px;
  margin-bottom: 42px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.section-heading > p {
  max-width: 37ch;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 18px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 19px;
}
.process-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
  box-shadow: 0 2px 4px rgba(37, 32, 20, 0.03);
}
.process-number {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  color: var(--bronze);
  font: 23px/1 var(--font-display);
}
.process-number span {
  color: var(--accent);
  font:
    20px/1 ui-sans-serif,
    system-ui,
    sans-serif;
}
.process-illustration {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  height: 170px;
  margin-bottom: 27px;
  padding: 20px;
  border-radius: 8px;
  background: #f3ecdd;
}
.process-card h3 {
  margin-bottom: 11px;
}
.process-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}
.discover {
  gap: 13px;
}
.illustration-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: min(100%, 253px);
  padding: 10px 13px;
  border: 1px solid #d9c7ac;
  border-radius: 7px;
  background: #fffbf4;
  font-size: 12px;
  font-weight: 750;
}
.illustration-link b {
  color: var(--accent);
}
.illustration-line {
  height: 7px;
  width: 43%;
  border-radius: 5px;
  background: #d9cdb9;
}
.illustration-line.long {
  width: 68%;
}
.illustration-chip {
  position: absolute;
  right: 17px;
  bottom: 17px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 9px;
  border: 1px solid #afd0b7;
  border-radius: 7px;
  background: #e8f2e8;
  color: #365c42;
  font-size: 10px;
  font-weight: 800;
  transform: rotate(-3deg);
}
.create {
  flex-direction: row;
  align-items: center;
  gap: 7px;
}
.mini-tile {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30%;
  height: 112px;
  padding: 8px;
  border: 1px solid #cebda4;
  border-radius: 5px;
  background: #fffdf7;
  color: var(--bronze);
  font-size: 8px;
  transform: rotate(-7deg);
}
.mini-tile span {
  height: 65%;
  border-radius: 3px;
  background: linear-gradient(145deg, #dabc9c, #b26049);
}
.mini-tile-two {
  transform: rotate(2deg) translateY(-9px);
  z-index: 1;
  box-shadow: 0 8px 15px rgba(37, 32, 20, 0.14);
}
.mini-tile-two span {
  background: linear-gradient(145deg, #3f725b, #b5c3a4);
}
.mini-tile-three {
  transform: rotate(7deg);
}
.mini-tile-three span {
  background: linear-gradient(145deg, #9d784b, #ddc691);
}
.approve {
  justify-content: center;
  background: #e9eee6;
}
.approval-sheet {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border: 1px solid #c2d2c4;
  border-radius: 7px;
  background: #fffdf8;
  box-shadow: 0 5px 10px rgba(49, 80, 61, 0.06);
}
.approval-check {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #3d6b4f;
  color: white;
  font-size: 12px;
}
.approval-sheet b,
.approval-sheet small {
  display: block;
  line-height: 1.25;
}
.approval-sheet b {
  font-size: 11px;
}
.approval-sheet small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
}
.approval-rule {
  height: 1px;
  margin: 11px 0;
  background: #cbd7ca;
}
.approval-button {
  display: flex;
  justify-content: space-between;
  color: #3b6d50;
  font-size: 11px;
  font-weight: 800;
}

.format-section {
  overflow: hidden;
  padding-block: 91px;
  background: #e9e2d3;
  border-block: 1px solid #dfd4c0;
}
.format-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
}
.format-copy h2 {
  max-width: 13ch;
  margin-bottom: 23px;
}
.format-copy p:not(.eyebrow) {
  max-width: 43ch;
  color: #5d594e;
  font-size: 18px;
  line-height: 1.62;
}
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 4px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}
.inline-link:hover {
  color: var(--accent-hover);
  border-color: var(--accent-hover);
}
.format-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
  align-items: end;
}
.format-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d6c9b3;
  border-radius: 10px;
  background: var(--panel);
  box-shadow: 0 12px 25px rgba(61, 42, 22, 0.08);
}
.format-card:nth-child(2) {
  transform: translateY(-20px);
}
.format-art {
  position: relative;
  display: block;
  overflow: hidden;
  height: 215px;
}
.format-art-image {
  background: linear-gradient(145deg, #e6c5a7, #a9533a);
}
.format-art-image::before {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(255, 248, 233, 0.8);
}
.art-sun {
  position: absolute;
  width: 85px;
  height: 85px;
  top: 32px;
  right: -12px;
  border-radius: 50%;
  background: #f4dfb8;
}
.art-horizon {
  position: absolute;
  width: 128%;
  height: 130px;
  left: -10%;
  bottom: -44px;
  border-radius: 50% 50% 0 0;
  background: #354e3c;
  transform: rotate(-10deg);
}
.art-horizon::after {
  content: "";
  position: absolute;
  width: 80%;
  height: 70px;
  left: -8%;
  top: -25px;
  border: 1px solid rgba(255, 241, 211, 0.8);
  border-radius: 50%;
}
.format-art-slides {
  background: #d7e2d3;
}
.slide-back,
.slide-front {
  position: absolute;
  display: block;
  width: 57%;
  height: 145px;
  top: 30px;
  left: 22%;
  border: 1px solid #75876d;
  border-radius: 4px;
  background: #fbf6e9;
  box-shadow: 0 10px 15px rgba(37, 66, 41, 0.15);
}
.slide-back {
  transform: rotate(-13deg) translateX(-20px);
  background: #9bb195;
}
.slide-front {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 9px;
  color: #31503e;
  font: 19px var(--font-display);
  transform: rotate(9deg) translateX(17px);
}
.slide-front::before {
  content: "";
  position: absolute;
  width: 45px;
  height: 45px;
  top: 27px;
  left: 19px;
  border: 8px solid #b77758;
  border-radius: 50%;
}
.slide-front b {
  font:
    18px ui-sans-serif,
    system-ui,
    sans-serif;
}
.format-art-video {
  background: linear-gradient(150deg, #2a453c, #102c26);
}
.format-art-video::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(250, 244, 223, 0.4);
  border-radius: 5px;
}
.video-ring {
  position: absolute;
  top: 54px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  border: 1px solid #d0a77e;
  border-radius: 50%;
  transform: translateX(-50%);
}
.video-ring::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(221, 195, 157, 0.65);
  border-radius: 50%;
}
.video-ring span {
  color: #f4d8b4;
  font-size: 18px;
}
.video-timeline {
  position: absolute;
  left: 19px;
  right: 19px;
  bottom: 26px;
  height: 3px;
  background: linear-gradient(
    90deg,
    #e5b284 0 60%,
    rgba(245, 235, 210, 0.3) 60%
  );
}
.format-card-label {
  display: block;
  min-height: 76px;
  padding: 14px;
}
.format-card-label strong,
.format-card-label small {
  display: block;
  line-height: 1.3;
}
.format-card-label strong {
  font-size: 14px;
}
.format-card-label small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.control-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(35px, 8vw, 105px);
}
.control-copy h2 {
  margin-bottom: 24px;
}
.control-copy > p:not(.eyebrow) {
  max-width: 44ch;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}
.review-preview {
  overflow: hidden;
  border: 1px solid #dacdb8;
  border-radius: 12px;
  background: #fffdf8;
  box-shadow: var(--site-shadow);
}
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 23px 25px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.review-draft {
  padding: 4px 9px;
  border: 1px solid #dccfb8;
  border-radius: 100px;
  background: #f9f5eb;
  color: #786a52;
  font-size: 10px;
  letter-spacing: 0;
}
.review-row {
  display: grid;
  grid-template-columns: 90px 1fr 20px;
  align-items: center;
  gap: 15px;
  min-height: 69px;
  margin-inline: 25px;
  border-bottom: 1px solid #eee5d7;
  font-size: 13px;
}
.review-row > span:first-child {
  color: var(--muted);
}
.review-row strong {
  font-weight: 700;
}
.review-check {
  color: #3d6b4f;
  font-weight: 800;
}
.review-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 25px 25px;
  padding: 15px;
  border: 1px solid #c7d8c9;
  border-radius: 7px;
  background: #eaf2e8;
  color: #305b42;
  font-size: 13px;
  font-weight: 800;
}
.review-lock {
  font-size: 16px;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(35px, 8vw, 105px);
  padding-block: 10px 112px;
}
.faq-section h2 {
  max-width: 13ch;
}
.faq-list {
  border-top: 1px solid #d9cfbd;
}
.faq-list details {
  border-bottom: 1px solid #d9cfbd;
}
.faq-list summary {
  position: relative;
  padding: 22px 38px 22px 0;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 700;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 18px;
  color: var(--accent);
  font: 25px/1 var(--font-display);
}
.faq-list details[open] summary::after {
  content: "−";
}
.faq-list details p {
  max-width: 60ch;
  margin: -3px 35px 22px 0;
  color: var(--muted);
  font-size: 15px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: #aa3e23;
  color: #fff6e9;
}
.final-cta::after {
  content: "";
  position: absolute;
  width: 540px;
  height: 540px;
  right: -110px;
  top: -130px;
  border: 1px solid rgba(255, 242, 220, 0.35);
  border-radius: 50%;
  box-shadow:
    0 0 0 70px rgba(255, 255, 255, 0.035),
    0 0 0 145px rgba(255, 255, 255, 0.035);
  pointer-events: none;
}
.final-cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  padding-block: 69px;
}
.final-cta .eyebrow {
  color: #f4c39e;
}
.final-cta h2 {
  margin-bottom: 11px;
}
.final-cta h2 em {
  color: #f7c9a7;
}
.final-cta p:last-child {
  margin-bottom: 0;
  color: #ffe2c9;
}
.final-button {
  flex-shrink: 0;
  min-height: 55px;
  background: var(--panel);
  color: #83331f;
}
.final-button:hover {
  background: #fff0db;
}

.policy {
  max-width: 800px;
  padding-block: 64px 80px;
}
.policy h1 {
  margin-bottom: 16px;
  font-size: clamp(42px, 5vw, 66px);
  letter-spacing: -0.025em;
}
.policy h2 {
  margin: 40px 0 16px;
  font-size: clamp(26px, 3vw, 32px);
}
.policy-date {
  margin-bottom: 32px;
  color: var(--muted);
}
.policy li {
  margin-bottom: 12px;
}
.policy a {
  overflow-wrap: anywhere;
}
.footer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-block: 27px 36px;
  color: var(--muted);
  font-size: 13px;
}
.footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
.footer a:hover {
  color: var(--accent);
}
.skip-link {
  position: absolute;
  z-index: 100;
  left: 16px;
  top: -100px;
  padding: 10px;
  background: var(--panel);
}
.skip-link:focus {
  top: 12px;
}

@media (max-width: 1050px) {
  .hero-grid {
    gap: 35px;
  }
  .hero h1 {
    font-size: clamp(50px, 5.6vw, 65px);
  }
  .workspace-preview {
    transform: none;
  }
  .preview-idea strong {
    font-size: 16px;
  }
  .specimen-center {
    font-size: 27px;
  }
}
@media (max-width: 850px) {
  .wrap {
    width: calc(100% - 44px);
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
    padding-block: 70px 78px;
  }
  .hero-copy {
    max-width: 700px;
  }
  .hero h1 {
    max-width: 15ch;
  }
  .workspace-preview {
    width: min(100%, 680px);
  }
  .specimen-center {
    font-size: clamp(27px, 5vw, 37px);
  }
  .section,
  .format-section {
    padding-block: 75px;
  }
  .section-heading,
  .format-grid,
  .control-section,
  .faq-section {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .section-heading > p {
    max-width: 56ch;
  }
  .format-copy h2,
  .faq-section h2 {
    max-width: none;
  }
  .format-gallery {
    margin-top: 16px;
  }
  .control-section {
    gap: 36px;
  }
  .faq-section {
    padding-block: 0 80px;
  }
}
@media (max-width: 650px) {
  .wrap {
    width: calc(100% - 34px);
  }
  .navigation {
    min-height: 70px;
  }
  .brand-mark {
    width: 37px;
    height: 40px;
  }
  .brand strong {
    font-size: 23px;
  }
  .brand small {
    font-size: 10px;
  }
  .nav-actions {
    gap: 13px;
  }
  .how-link {
    display: none;
  }
  .nav-cta {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 13px;
  }
  .nav-cta span {
    display: none;
  }
  .hero-grid {
    padding-block: 54px 65px;
  }
  .hero h1 {
    font-size: clamp(43px, 9vw, 60px);
  }
  .hero-lede {
    font-size: 17px;
  }
  .hero-button {
    width: 100%;
  }
  .hero-actions {
    gap: 18px;
  }
  .preview-topline,
  .preview-bottom {
    padding-inline: 12px;
  }
  .source-card {
    margin-inline: 12px;
  }
  .preview-work {
    padding-inline: 12px;
  }
  .preview-flow {
    margin-left: 30px;
  }
  .promise-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-block: 7px;
  }
  .promise-grid p {
    padding-block: 11px;
  }
  .promise-grid p + p {
    border-left: 0;
    border-top: 1px solid #d2c4af;
    padding-left: 0;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-card {
    padding: 22px;
  }
  .process-illustration {
    max-width: 360px;
  }
  .format-gallery {
    grid-auto-columns: minmax(180px, 68%);
    grid-auto-flow: column;
    grid-template-columns: none;
    overflow-x: auto;
    padding: 22px 0 27px;
    scroll-snap-type: x mandatory;
    scrollbar-color: #c6b79c transparent;
  }
  .format-card,
  .format-card:nth-child(2) {
    transform: none;
    scroll-snap-align: start;
  }
  .format-art {
    height: 180px;
  }
  .review-row {
    grid-template-columns: 75px 1fr 15px;
    gap: 10px;
    margin-inline: 17px;
    font-size: 12px;
  }
  .review-header {
    padding-inline: 17px;
  }
  .review-footer {
    margin-inline: 17px;
  }
  .final-cta-inner {
    display: block;
    padding-block: 60px;
  }
  .final-button {
    margin-top: 26px;
  }
}
@media (max-width: 390px) {
  .navigation {
    gap: 5px;
  }
  .nav-actions {
    flex-shrink: 0;
    gap: 8px;
  }
  .nav-actions .sign-in {
    font-size: 12px;
    white-space: nowrap;
  }
  .nav-cta {
    padding-inline: 9px;
    font-size: 12px;
    white-space: nowrap;
  }
  .brand {
    gap: 6px;
  }
  .brand-mark {
    width: 33px;
    height: 36px;
  }
  .brand strong {
    font-size: 20px;
  }
  .brand small {
    display: none;
  }
  .hero h1 {
    font-size: 41px;
  }
  .preview-label {
    max-width: 80px;
  }
  .preview-work {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
    gap: 7px;
  }
  .preview-idea {
    padding: 9px;
  }
  .preview-idea strong {
    font-size: 14px;
  }
  .preview-idea-number {
    font-size: 8px;
  }
  .preview-revise {
    font-size: 9px;
  }
  .specimen {
    min-height: 225px;
  }
  .specimen-center {
    font-size: 21px;
  }
  .specimen-top,
  .specimen-bottom {
    margin: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
