:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #5b6472;
  --paper: #fbfaf6;
  --white: #ffffff;
  --line: rgba(17, 24, 39, 0.12);
  --teal: #0f766e;
  --teal-dark: #0f3f3d;
  --coral: #ef6a5a;
  --gold: #f2b84b;
  --blue: #3157d5;
  --violet: #6d4aff;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.16);
  --radius: 8px;
  --header-height: 76px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #ffffff;
  font-weight: 850;
  transform: translateY(-140%);
  transition: transform 160ms ease;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(242, 184, 75, 0.95);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(18px, 5vw, 64px);
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(12, 21, 28, 0.28);
  backdrop-filter: blur(16px);
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.site-header.scrolled {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(251, 250, 246, 0.92);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 260px;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #14202a;
  font-size: 13px;
  font-weight: 900;
}

.brand-text strong,
.brand-text small {
  display: block;
  line-height: 1.08;
}

.brand-text small {
  margin-top: 4px;
  color: currentColor;
  font-size: 12px;
  opacity: 0.72;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 38px);
  font-size: 14px;
  font-weight: 750;
}

.site-nav a {
  padding: 10px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--coral);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(239, 106, 90, 0.26);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.site-header.scrolled .button.secondary {
  border-color: var(--line);
  color: var(--ink);
  background: rgba(17, 24, 39, 0.04);
}

.button.small {
  min-height: 42px;
  padding: 0 18px;
  background: var(--teal);
  color: #ffffff;
}

.button.full {
  width: 100%;
}

.button.outline {
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 42px) clamp(18px, 6vw, 88px) 30px;
  color: #ffffff;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 17, 24, 0.94) 0%, rgba(7, 17, 24, 0.78) 42%, rgba(7, 17, 24, 0.22) 76%),
    linear-gradient(180deg, rgba(7, 17, 24, 0.08) 58%, rgba(251, 250, 246, 0.98) 100%);
}

.hero-content {
  position: relative;
  max-width: 720px;
  min-width: 0;
}

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

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

h1,
h2,
h3 {
  line-height: 1.04;
}

h1 {
  max-width: 13ch;
  margin-bottom: 24px;
  font-size: clamp(44px, 6.4vw, 82px);
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 64px);
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

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

.hero-metrics div {
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero-metrics dt {
  color: var(--gold);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}

.hero-metrics dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
}

.proof-strip {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: -1px;
  border-block: 1px solid var(--line);
  background: var(--line);
}

.proof-strip span {
  display: grid;
  min-height: 72px;
  place-items: center;
  padding: 14px;
  background: var(--paper);
  color: var(--muted);
  font-weight: 850;
  text-align: center;
}

.credibility-section {
  background: #fbfaf6;
}

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

.credibility-grid article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(17, 24, 39, 0.06);
}

.credibility-grid strong,
.credibility-grid span {
  display: block;
}

.credibility-grid strong {
  margin-bottom: 14px;
  font-size: 22px;
}

.credibility-grid span {
  color: var(--muted);
}

.section {
  padding: 94px clamp(18px, 6vw, 88px);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow),
.brief-copy p {
  color: var(--muted);
  font-size: 18px;
}

.intro-grid,
.package-grid,
.usecase-grid,
.story-grid,
.proof-grid,
.results-grid,
.scope-grid,
.inputs-grid,
.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.intro-grid article,
.usecase-grid article,
.story-grid article,
.proof-grid article,
.results-grid article,
.package-card,
.work-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(17, 24, 39, 0.06);
}

.intro-grid article {
  min-height: 230px;
  padding: 28px;
}

.usecases-section {
  background: #fbfaf6;
}

.usecase-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.usecase-grid article {
  min-height: 250px;
  padding: 24px;
}

.intro-grid span,
.usecase-grid span {
  color: var(--coral);
  font-size: 30px;
  font-weight: 900;
}

.intro-grid p,
.usecase-grid p,
.story-grid p,
.work-card p,
.package-card p,
.package-card li,
.faq-list p {
  color: var(--muted);
}

.work-section {
  background: #eef7f4;
}

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

.work-card {
  min-height: 310px;
  padding: 24px;
}

.work-card.featured {
  grid-row: span 2;
  min-height: 638px;
  background: #13292a;
  color: #ffffff;
}

.work-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.video-frame {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(49, 87, 213, 0.5), transparent 58%),
    linear-gradient(160deg, #10222a, #1b4c48);
  overflow: hidden;
}

.play-icon {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.28);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: scale(0.56);
}

.timeline {
  position: absolute;
  align-self: end;
  display: flex;
  width: min(72%, 440px);
  gap: 8px;
  margin-bottom: 42px;
}

.timeline i {
  display: block;
  height: 8px;
  flex: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.motion-tile {
  min-height: 150px;
  margin-bottom: 24px;
  border-radius: var(--radius);
}

.tile-coral {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.62) 18%, transparent 18% 25%, rgba(255, 255, 255, 0.36) 25% 46%, transparent 46%),
    var(--coral);
}

.tile-gold {
  background:
    radial-gradient(circle at 78% 30%, rgba(255, 255, 255, 0.72), transparent 26%),
    linear-gradient(135deg, var(--gold), #f5d991);
}

.tile-teal {
  background:
    linear-gradient(135deg, transparent 18%, rgba(255, 255, 255, 0.42) 18% 26%, transparent 26%),
    var(--teal);
}

.story-section {
  background: #f2f0e8;
}

.story-grid article {
  min-height: 260px;
  padding: 28px;
}

.proof-section {
  background: #ffffff;
}

.results-section {
  background: #fbfaf6;
}

.proof-grid article {
  min-height: 230px;
  padding: 28px;
}

.results-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.results-grid article {
  min-height: 230px;
  padding: 24px;
}

.proof-grid strong,
.proof-grid span,
.results-grid strong,
.results-grid span,
.inputs-grid strong,
.inputs-grid span {
  display: block;
}

.proof-grid strong,
.results-grid strong,
.inputs-grid strong {
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-size: 22px;
}

.proof-grid span,
.results-grid span,
.inputs-grid span {
  color: var(--muted);
}

.package-card {
  min-height: 410px;
  padding: 28px;
}

.package-card.emphasized {
  border-color: rgba(15, 118, 110, 0.34);
  background: linear-gradient(180deg, #ffffff, #eaf7f4);
  box-shadow: var(--shadow);
}

.package-kicker {
  color: var(--blue) !important;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-anchor {
  display: block;
  margin: 22px 0 4px;
  color: var(--teal-dark);
  font-size: 28px;
  line-height: 1;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.package-card li {
  padding-left: 20px;
  position: relative;
}

.package-card li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  content: "+";
  font-weight: 900;
}

.process-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: 42px;
  align-items: start;
  padding: 92px clamp(18px, 6vw, 88px);
  background: #17262d;
  color: #ffffff;
}

.process-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 18px;
  min-height: 86px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.process-list strong {
  color: var(--gold);
  font-size: 22px;
}

.process-list span {
  color: rgba(255, 255, 255, 0.76);
}

.scope-section {
  background: #eef7f4;
}

.scope-grid article {
  min-height: 310px;
  padding: 28px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(17, 24, 39, 0.06);
}

.scope-grid ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.scope-grid li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.scope-grid li::before {
  position: absolute;
  left: 0;
  color: var(--teal);
  content: "+";
  font-weight: 900;
}

.timeline-section {
  background: #fbfaf6;
}

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

.timeline-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(17, 24, 39, 0.06);
}

.timeline-grid strong,
.timeline-grid span {
  display: block;
}

.timeline-grid strong {
  margin-bottom: 12px;
  color: var(--teal-dark);
  font-size: 22px;
}

.timeline-grid span {
  color: var(--muted);
}

.inputs-section {
  background: #ffffff;
}

.inputs-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.inputs-grid article {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf6;
}

.channel-section {
  background: #f2f0e8;
}

.channel-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.channel-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(17, 24, 39, 0.06);
}

.channel-grid p {
  color: var(--muted);
}

.call-section {
  background: #eef7f4;
}

.call-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.8fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(26px, 5vw, 42px);
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.call-panel h2 {
  margin-bottom: 12px;
}

.call-panel p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.call-panel ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.call-panel li {
  position: relative;
  padding-left: 20px;
  color: var(--muted);
}

.call-panel li::before {
  position: absolute;
  left: 0;
  color: var(--coral);
  content: "+";
  font-weight: 900;
}

.deliverables-section {
  background: #fbfaf6;
}

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

.deliverables-grid article {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 38px rgba(17, 24, 39, 0.06);
}

.deliverables-grid strong,
.deliverables-grid span {
  display: block;
}

.deliverables-grid strong {
  margin-bottom: 12px;
  font-size: 20px;
}

.deliverables-grid span {
  color: var(--muted);
}

.brief-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.72fr);
  gap: 34px;
  align-items: start;
  background:
    linear-gradient(135deg, rgba(239, 106, 90, 0.14), transparent 28rem),
    var(--paper);
}

.contact-fallback {
  display: grid;
  max-width: 520px;
  gap: 8px;
  margin-top: 26px;
  padding: 20px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.contact-fallback strong {
  color: var(--ink);
  font-size: 18px;
}

.contact-fallback a {
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-fallback span {
  color: var(--muted);
}

.checklist-link {
  display: grid;
  max-width: 520px;
  gap: 8px;
  margin-top: 14px;
  padding: 18px 20px;
  border-left: 4px solid var(--coral);
  background: rgba(255, 255, 255, 0.62);
}

.checklist-link strong {
  color: var(--ink);
}

.checklist-link a {
  color: var(--teal-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.examples-shell {
  align-content: start;
}

.examples-panel {
  max-width: 1120px;
}

.examples-panel h1 {
  max-width: 13ch;
}

.example-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 34px 0;
}

.example-grid article {
  min-height: 360px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf6;
}

.example-grid h2 {
  margin-bottom: 12px;
  font-size: 30px;
}

.example-grid p:not(.package-kicker),
.example-grid li {
  color: var(--muted);
}

.example-grid ul {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding-left: 20px;
}

.example-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.scorecard-panel {
  max-width: 1120px;
}

.scorecard-panel h1 {
  max-width: 13ch;
}

.scorecard-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 34px 0;
}

.scorecard-grid article {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf6;
}

.scorecard-grid span {
  color: var(--coral);
  font-size: 28px;
  font-weight: 900;
}

.scorecard-grid h2 {
  margin: 12px 0;
  font-size: 28px;
}

.scorecard-grid p {
  color: var(--muted);
}

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

.scoreband-grid article {
  padding: 22px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: var(--radius);
  background: #eef7f4;
}

.scoreband-grid strong,
.scoreband-grid span {
  display: block;
}

.scoreband-grid strong {
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 28px;
}

.scoreband-grid span {
  color: var(--muted);
}

.brief-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.brief-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 850;
}

.field-hidden {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

.brief-form input,
.brief-form select,
.brief-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: 0;
  padding: 13px 14px;
  background: #f8fafc;
  color: var(--ink);
  resize: vertical;
}

.brief-form input:focus,
.brief-form select:focus,
.brief-form textarea:focus {
  border-color: var(--teal);
  background: #ffffff;
}

.brief-form select {
  appearance: none;
}

.brief-form option {
  color: var(--ink);
}

.consent-field {
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-size: 14px;
  font-weight: 650 !important;
}

.consent-field input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--teal);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.form-note a {
  color: var(--teal-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.booking-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 58px clamp(18px, 6vw, 88px);
  border-block: 1px solid rgba(15, 118, 110, 0.2);
  background: #ffffff;
}

.booking-band h2 {
  margin-bottom: 10px;
  font-size: clamp(30px, 4vw, 48px);
}

.booking-band p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.cta-section {
  background: #17262d;
  color: #ffffff;
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.cta-panel h2 {
  max-width: 880px;
}

.cta-panel p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.faq-section {
  background: #f2f0e8;
}

.faq-list {
  display: grid;
  max-width: 920px;
  gap: 12px;
}

.faq-list summary {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  font-weight: 900;
  cursor: pointer;
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(18px, 6vw, 88px);
  border-top: 1px solid var(--line);
  background: #111827;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer strong {
  color: #ffffff;
}

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

.site-footer nav {
  display: flex;
  gap: 20px;
  color: #ffffff;
}

.toast {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  max-width: min(360px, calc(100vw - 44px));
  padding: 14px 16px;
  border: 1px solid rgba(15, 118, 110, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease;
  pointer-events: none;
}

.toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.thanks-page {
  min-height: 100vh;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.18), transparent 28rem),
    var(--paper);
}

.thanks-shell {
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 34px;
  padding: 42px clamp(18px, 6vw, 88px);
}

.thanks-brand {
  color: var(--ink);
}

.thanks-panel {
  max-width: 760px;
  padding: clamp(28px, 6vw, 54px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.thanks-panel h1 {
  max-width: 12ch;
  color: var(--ink);
}

.thanks-panel p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 19px;
}

.next-steps {
  margin: 28px 0;
  padding: 24px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: var(--radius);
  background: #eef7f4;
}

.next-steps h2 {
  margin-bottom: 16px;
  font-size: 28px;
}

.next-steps ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
}

.policy-panel {
  max-width: 860px;
}

.policy-panel h1 {
  max-width: 10ch;
}

.policy-panel h2 {
  margin: 30px 0 10px;
  font-size: 28px;
}

.policy-panel p:not(.eyebrow) {
  max-width: 720px;
}

.policy-panel a:not(.button) {
  color: var(--teal-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.checklist-panel {
  max-width: 980px;
}

.checklist-panel h1 {
  max-width: 13ch;
}

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

.checklist-grid article {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfaf6;
}

.checklist-grid h2 {
  margin-bottom: 14px;
  font-size: 26px;
}

.checklist-grid ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.checklist-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 1060px) {
  .intro-grid,
  .package-grid,
  .usecase-grid,
  .story-grid,
  .proof-grid,
  .results-grid,
  .scope-grid,
  .timeline-grid,
  .inputs-grid,
  .channel-grid,
  .credibility-grid,
  .deliverables-grid {
    grid-template-columns: 1fr 1fr;
  }

  .work-grid,
  .process-band,
  .call-panel,
  .cta-panel,
  .booking-band,
  .brief-section {
    grid-template-columns: 1fr;
  }

  .work-card.featured {
    grid-row: auto;
    min-height: 520px;
  }
}

@media (max-height: 820px) {
  .hero-metrics {
    display: none;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding: 10px 16px;
    gap: 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-text {
    display: none;
  }

  .site-nav {
    flex: 1 1 auto;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
  }

  .site-header .button.small {
    display: none;
  }

  .hero {
    min-height: 84vh;
    padding: 112px 16px 30px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 17, 24, 0.92), rgba(7, 17, 24, 0.62)),
      linear-gradient(180deg, transparent 62%, rgba(251, 250, 246, 0.98));
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 38px;
  }

  .proof-strip,
  .intro-grid,
  .package-grid,
  .usecase-grid,
  .story-grid,
  .proof-grid,
  .results-grid,
  .scope-grid,
  .timeline-grid,
  .inputs-grid,
  .channel-grid,
  .checklist-grid,
  .example-grid,
  .scorecard-grid,
  .scoreband-grid,
  .credibility-grid,
  .deliverables-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    display: none;
  }

  .process-list li {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-nav a {
    font-size: 13px;
  }

  h1 {
    max-width: 11ch;
    font-size: 40px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .section,
  .process-band {
    padding: 70px 16px;
  }

  .work-card,
  .intro-grid article,
  .usecase-grid article,
  .story-grid article,
  .proof-grid article,
  .results-grid article,
  .scope-grid article,
  .timeline-grid article,
  .inputs-grid article,
  .channel-grid article,
  .package-card {
    min-height: 0;
    padding: 22px;
  }

  .video-frame {
    min-height: 260px;
  }

  .brief-form {
    padding: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .checklist-actions .button,
  .example-actions .button,
  .booking-band .button {
    width: 100%;
  }
}
