:root {
  --ink: #07111f;
  --ink-2: #0b1728;
  --ink-3: #122239;
  --paper: #f3efe7;
  --paper-2: #e8e2d7;
  --white: #ffffff;
  --gold: #efb840;
  --gold-light: #ffd879;
  --cobalt: #2166f3;
  --cobalt-light: #66a4ff;
  --green: #27d37d;
  --muted: #aab4c2;
  --muted-dark: #5f6b79;
  --border: rgba(255, 255, 255, 0.13);
  --border-dark: rgba(7, 17, 31, 0.13);
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.24);
  --radius: 22px;
  --radius-small: 13px;
  --container: 1180px;
  --header-height: 78px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

button,
input,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

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

h1,
h2,
h3 {
  letter-spacing: -0.04em;
  line-height: 1.04;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 6.7vw, 6.35rem);
  font-weight: 820;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.35rem, 4.8vw, 4.7rem);
  font-weight: 810;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

p {
  color: inherit;
}

.container {
  width: min(calc(100% - 44px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 15px;
  color: var(--ink);
  background: var(--gold);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  content: "";
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 7px;
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(239, 184, 64, 0.5);
  outline-offset: 3px;
}

.button-primary {
  color: #15130d;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  box-shadow: 0 14px 34px rgba(239, 184, 64, 0.21);
}

.button-primary:hover {
  box-shadow: 0 18px 42px rgba(239, 184, 64, 0.32);
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.04);
}

.button-outline:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.button-small {
  min-height: 43px;
  padding-inline: 17px;
  font-size: 0.68rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--gold);
  font-size: 1.2rem;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(to bottom, rgba(4, 10, 18, 0.87), rgba(4, 10, 18, 0.2));
  transition: height 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled {
  height: 68px;
  background: rgba(6, 15, 27, 0.95);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.23);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  flex-shrink: 0;
}

.brand-logo {
  width: 174px;
  height: auto;
}

.brand-descriptor {
  padding-left: 10px;
  color: var(--muted);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.54rem;
  font-weight: 800;
  letter-spacing: 0.24em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.primary-nav > a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.primary-nav > a:hover {
  color: var(--gold-light);
}

.primary-nav > .button {
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: 890px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-image,
.hero-overlay,
.hero-grid-lines {
  position: absolute;
  inset: 0;
}

.hero-image {
  background-image: url("assets/roofing-hero.webp");
  background-position: 62% center;
  background-size: cover;
  filter: saturate(0.88) contrast(1.06);
  transform: scale(1.015);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 13, 24, 0.98) 0%, rgba(5, 13, 24, 0.94) 34%, rgba(5, 13, 24, 0.6) 58%, rgba(5, 13, 24, 0.2) 100%),
    linear-gradient(0deg, rgba(5, 13, 24, 0.9) 0%, transparent 42%);
}

.hero-grid-lines {
  opacity: 0.14;
  background-image: linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 830px;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 46px;
  padding-top: var(--header-height);
  padding-bottom: 90px;
}

.hero-copy {
  max-width: 740px;
}

.hero h1 span {
  display: block;
  color: var(--gold-light);
}

.hero-lead {
  max-width: 635px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1.02rem, 1.6vw, 1.25rem);
  line-height: 1.72;
}

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

.hero-capabilities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.hero-capabilities span {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(8, 18, 31, 0.48);
  font-size: 0.69rem;
  font-weight: 650;
  letter-spacing: 0.05em;
}

.hero-product {
  position: relative;
  min-height: 530px;
  align-self: end;
}

.ad-stack {
  position: absolute;
  top: 20px;
  right: 0;
  width: 80%;
  height: 350px;
}

.mini-ad {
  position: absolute;
  display: flex;
  width: 225px;
  aspect-ratio: 0.78;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  background-size: cover;
  box-shadow: var(--shadow);
}

.mini-ad::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(4, 9, 16, 0.96), rgba(4, 9, 16, 0.06));
}

.mini-ad > * {
  position: relative;
}

.mini-ad small {
  margin-bottom: 9px;
  color: var(--gold-light);
  font-size: 0.51rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.mini-ad strong {
  font-size: 2rem;
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.mini-ad span {
  margin-top: 9px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.68rem;
}

.mini-ad-one {
  z-index: 2;
  top: 64px;
  left: 0;
  background-image: url("assets/storm-ready.webp");
  transform: rotate(-4deg);
}

.mini-ad-two {
  top: 0;
  right: 0;
  background-image: url("assets/built-to-last.webp");
  transform: rotate(5deg);
}

.lead-alert {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 38px;
  width: min(100%, 355px);
  padding: 21px;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 14px;
  background: rgba(7, 17, 31, 0.89);
  box-shadow: 0 30px 65px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(15px);
}

.lead-alert-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
  color: var(--green);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.status-dot,
.dashboard-label span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(39, 211, 125, 0.11);
}

.alert-time {
  margin-left: auto;
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0;
}

.lead-alert > strong {
  display: block;
  margin-bottom: 11px;
  font-size: 1.15rem;
}

.lead-alert dl,
.dashboard-lead dl {
  margin: 0;
}

.lead-alert dl div {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
}

.lead-alert dt,
.dashboard-lead dt {
  color: var(--muted);
}

.lead-alert dd,
.dashboard-lead dd {
  margin: 0;
  font-weight: 650;
}

.response-badge {
  display: inline-flex;
  margin-top: 12px;
  padding: 5px 9px;
  color: var(--green);
  border: 1px solid rgba(39, 211, 125, 0.3);
  border-radius: 999px;
  background: rgba(39, 211, 125, 0.08);
  font-size: 0.61rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-footnote {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 26px;
  left: 0;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Promise */
.promise-strip {
  padding: 28px 0;
  color: var(--ink);
  background: var(--gold);
}

.promise-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
}

.promise-grid > p {
  max-width: 520px;
  margin: 0;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.35;
}

.promise-items {
  display: flex;
  align-items: center;
  gap: 20px;
}

.promise-items span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-transform: uppercase;
}

.promise-items i {
  font-size: 1rem;
  font-style: normal;
}

/* Shared sections */
.section {
  position: relative;
  padding: 116px 0;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 58px;
}

.section-heading > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 1.06rem;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

/* Problem / solution */
.section-problem {
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 10%, rgba(33, 102, 243, 0.07), transparent 30%),
    var(--paper);
}

.section-problem::after {
  position: absolute;
  z-index: 0;
  top: 0;
  right: -100px;
  width: 480px;
  height: 480px;
  content: "";
  border: 1px solid rgba(7, 17, 31, 0.06);
  border-radius: 50%;
}

.section-problem .container {
  position: relative;
  z-index: 1;
}

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

.comparison-card {
  display: grid;
  grid-template-columns: minmax(210px, 0.9fr) minmax(210px, 1.1fr);
  gap: 26px;
  padding: 24px;
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: 0 18px 45px rgba(7, 17, 31, 0.07);
}

.comparison-label {
  grid-column: 1 / -1;
  padding-bottom: 15px;
  color: var(--muted-dark);
  border-bottom: 1px solid var(--border-dark);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.comparison-new {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
  background: var(--ink-2);
  box-shadow: 0 22px 55px rgba(7, 17, 31, 0.22);
}

.comparison-new .comparison-label {
  color: var(--gold);
  border-color: var(--border);
}

.sample-ad {
  position: relative;
  display: flex;
  min-height: 305px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 23px;
  overflow: hidden;
  color: var(--white);
  background-color: #53606d;
  background-position: center;
  background-size: cover;
}

.sample-ad::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(3, 8, 13, 0.95), rgba(3, 8, 13, 0.05));
}

.sample-ad > * {
  position: relative;
  z-index: 1;
}

.muted-ad {
  filter: grayscale(0.85) contrast(0.8);
  background-image: url("assets/storm-ready.webp");
}

.premium-ad {
  background-image: url("assets/built-to-last.webp");
}

.sample-kicker {
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: 0.49rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.sample-ad strong {
  font-size: 1.7rem;
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.sample-ad > small:not(.sample-kicker) {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.61rem;
}

.sample-cta {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 14px;
  padding: 6px 9px;
  color: var(--ink);
  border-radius: 3px;
  background: var(--gold);
  font-size: 0.53rem;
  font-weight: 800;
  text-transform: uppercase;
}

.response-timeline {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.response-timeline li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--border-dark);
}

.comparison-new .response-timeline li {
  border-color: var(--border);
}

.response-timeline li > span {
  display: grid;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  place-items: center;
  color: var(--cobalt);
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.65rem;
  font-weight: 800;
}

.comparison-new .response-timeline li > span {
  color: var(--green);
}

.response-timeline strong,
.response-timeline small {
  display: block;
}

.response-timeline strong {
  font-size: 0.75rem;
}

.response-timeline small {
  color: var(--muted-dark);
  font-size: 0.62rem;
}

.comparison-new .response-timeline small {
  color: var(--muted);
}

.timeline-warning {
  opacity: 0.55;
}

.timeline-warning > span {
  color: #b6544d !important;
}

.benefit-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 25px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  border-radius: 10px;
  background: var(--border-dark);
}

.benefit-row span {
  padding: 19px;
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
}

/* Services */
.section-services {
  color: var(--white);
  background:
    radial-gradient(circle at 8% 10%, rgba(33, 102, 243, 0.17), transparent 28%),
    var(--ink);
}

.section-services .section-heading > p:last-child,
.section-process .section-heading > p:last-child,
.section-follow-up .section-heading > p:last-child,
.section-faq .section-heading > p:last-child {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
}

.service-card {
  position: relative;
  min-height: 345px;
  padding: 32px 27px;
  border-right: 1px solid var(--border);
  transition: background 200ms ease, transform 200ms ease;
}

.service-card:last-child {
  border-right: 0;
}

.service-card:hover {
  z-index: 2;
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-6px);
}

.service-number {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-symbol {
  display: grid;
  width: 50px;
  height: 50px;
  margin: 48px 0 35px;
  place-items: center;
  color: var(--gold-light);
  border: 1px solid rgba(239, 184, 64, 0.45);
  border-radius: 12px;
  background: rgba(239, 184, 64, 0.08);
  font-size: 1.25rem;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

/* Creative gallery */
.section-creative {
  background: #e9e3d8;
}

.creative-heading {
  display: grid;
  max-width: none;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: 55px;
}

.creative-heading h2 {
  margin-bottom: 0;
}

.creative-heading > p {
  margin-bottom: 7px !important;
}

.creative-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 13px;
}

.creative-card {
  position: relative;
  min-height: 530px;
  overflow: hidden;
  color: var(--white);
  background-image: var(--image);
  background-position: center;
  background-size: cover;
  box-shadow: 0 16px 42px rgba(7, 17, 31, 0.12);
  isolation: isolate;
}

.creative-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(3, 8, 15, 0.94) 0%, rgba(3, 8, 15, 0.38) 48%, rgba(3, 8, 15, 0.02) 78%);
  transition: background 240ms ease;
}

.creative-card::after {
  position: absolute;
  z-index: -1;
  inset: 10px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
}

.creative-card:hover::before {
  background: linear-gradient(0deg, rgba(3, 8, 15, 0.96) 0%, rgba(3, 8, 15, 0.15) 64%, rgba(3, 8, 15, 0.01) 90%);
}

.creative-content {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px;
}

.creative-content small {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-light);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.creative-content h3 {
  max-width: 280px;
  margin-bottom: 11px;
  font-size: clamp(1.75rem, 3vw, 3rem);
  line-height: 0.93;
  text-transform: uppercase;
}

.creative-content p {
  min-height: 43px;
  margin-bottom: 17px;
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.75rem;
}

.creative-content > span {
  display: inline-flex;
  padding: 7px 10px;
  color: var(--ink);
  border-radius: 3px;
  background: var(--gold);
  font-size: 0.54rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Process */
.section-process {
  color: var(--white);
  background: var(--ink-2);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  padding: 0 28px 0 0;
}

.process-list li:not(:last-child)::after {
  position: absolute;
  top: 27px;
  right: 12px;
  left: 64px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, rgba(239, 184, 64, 0.7), rgba(255, 255, 255, 0.09));
}

.process-list li > span {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 30px;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(239, 184, 64, 0.55);
  border-radius: 50%;
  background: var(--ink-2);
  font-size: 0.8rem;
  font-weight: 800;
}

.process-list small {
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}

.process-list h3 {
  margin-top: 8px;
  font-size: 1.15rem;
}

.process-list p {
  color: var(--muted);
  font-size: 0.82rem;
}

/* Follow-up dashboard */
.section-follow-up {
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(7, 17, 31, 0.93), rgba(7, 17, 31, 0.96)),
    url("assets/roof-transformation.webp") center / cover;
}

.section-follow-up .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-follow-up .section-heading .eyebrow {
  justify-content: center;
}

.response-dashboard {
  display: grid;
  grid-template-columns: 0.88fr 1.25fr 0.8fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(9, 21, 36, 0.87);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
}

.dashboard-lead,
.dashboard-chat,
.dashboard-outcome {
  padding: 29px;
}

.dashboard-lead,
.dashboard-chat {
  border-right: 1px solid var(--border);
}

.dashboard-label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--green);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lead-image {
  height: 130px;
  margin-bottom: 20px;
  border-radius: 8px;
  background: linear-gradient(0deg, rgba(7, 17, 31, 0.1), rgba(7, 17, 31, 0.1)), url("assets/roofing-hero.webp") 68% center / cover;
}

.dashboard-lead h3 {
  font-size: 1.1rem;
}

.dashboard-lead dl div {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-top: 1px solid var(--border);
  font-size: 0.69rem;
}

.chat-thread {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
}

.chat-thread p {
  max-width: 84%;
  margin: 0;
  padding: 11px 13px;
  border-radius: 11px;
  font-size: 0.74rem;
  line-height: 1.55;
}

.chat-left {
  align-self: flex-start;
  color: var(--ink);
  background: #f1f3f6;
  border-bottom-left-radius: 2px !important;
}

.chat-right {
  align-self: flex-end;
  background: var(--cobalt);
  border-bottom-right-radius: 2px !important;
}

.dashboard-chat > small {
  color: var(--muted);
  font-size: 0.58rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.dashboard-outcome {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.outcome-step {
  display: flex;
  align-items: center;
  gap: 12px;
}

.outcome-step > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  place-items: center;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 50%;
}

.outcome-step.active > span {
  color: var(--ink);
  border-color: var(--green);
  background: var(--green);
}

.outcome-step strong,
.outcome-step small {
  display: block;
}

.outcome-step strong {
  font-size: 0.82rem;
}

.outcome-step small {
  color: var(--muted);
  font-size: 0.63rem;
}

.outcome-line {
  width: 1px;
  height: 52px;
  margin-left: 19px;
  background: linear-gradient(var(--green), rgba(255, 255, 255, 0.1));
}

/* Offer */
.section-offer {
  background: var(--paper);
}

.offer-layout {
  display: grid;
  grid-template-columns: 0.95fr 0.8fr;
  align-items: center;
  gap: 100px;
}

.offer-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 29px;
  color: var(--muted-dark);
  font-size: 1.05rem;
}

.offer-copy > small {
  display: block;
  max-width: 510px;
  margin-top: 15px;
  color: var(--muted-dark);
  font-size: 0.65rem;
}

.offer-card {
  position: relative;
  padding: 39px;
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 92% 10%, rgba(33, 102, 243, 0.26), transparent 30%),
    var(--ink);
  box-shadow: var(--shadow);
}

.offer-card::after {
  position: absolute;
  right: -58px;
  bottom: -58px;
  width: 180px;
  height: 180px;
  content: "";
  border: 1px solid rgba(239, 184, 64, 0.25);
  border-radius: 50%;
}

.offer-card-head {
  display: flex;
  align-items: center;
  gap: 17px;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--border);
}

.offer-card-head > span {
  color: var(--gold-light);
  font-size: 4.3rem;
  font-weight: 850;
  letter-spacing: -0.08em;
  line-height: 0.8;
}

.offer-card-head small,
.offer-card-head strong {
  display: block;
}

.offer-card-head small {
  color: var(--muted);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.offer-card-head strong {
  margin-top: 5px;
  font-size: 0.94rem;
  letter-spacing: 0.07em;
}

.offer-card ul {
  display: grid;
  gap: 14px;
  margin: 27px 0;
  padding: 0;
  list-style: none;
}

.offer-card li {
  position: relative;
  padding-left: 27px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
}

.offer-card li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 900;
}

.offer-card > p {
  margin: 0;
  padding-top: 20px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  font-size: 0.65rem;
}

/* Why */
.section-why {
  color: var(--white);
  background: var(--cobalt);
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 95px;
}

.section-why .eyebrow {
  color: var(--white);
}

.why-copy > p:not(.eyebrow) {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.78);
}

.why-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 29px;
}

.why-points span {
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.71rem;
  font-weight: 750;
}

.manifesto {
  position: relative;
  margin: 0;
  padding: 56px 46px;
  color: var(--ink);
  background: var(--gold);
  box-shadow: 18px 18px 0 rgba(4, 19, 49, 0.28);
  transform: rotate(-1.5deg);
}

.manifesto::before {
  position: absolute;
  top: -21px;
  left: 30px;
  color: rgba(7, 17, 31, 0.25);
  content: "“";
  font-family: Georgia, serif;
  font-size: 6rem;
  line-height: 1;
}

.manifesto span,
.manifesto strong,
.manifesto small {
  display: block;
}

.manifesto span,
.manifesto strong {
  font-size: clamp(2rem, 3.7vw, 3.7rem);
  font-weight: 850;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.manifesto strong {
  margin-top: 9px;
}

.manifesto small {
  margin-top: 28px;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Founder */
.section-founder {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(239, 184, 64, 0.13), transparent 30%),
    #e9e3d8;
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(55px, 8vw, 110px);
}

.founder-portrait {
  position: relative;
  max-width: 510px;
  margin: 0;
  padding: 15px;
  background: var(--ink);
  box-shadow: 22px 22px 0 var(--gold), 0 32px 70px rgba(7, 17, 31, 0.2);
}

.founder-portrait::before {
  position: absolute;
  inset: 26px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.34);
  pointer-events: none;
}

.founder-portrait img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.founder-portrait figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 8px 3px;
  color: var(--white);
}

.founder-portrait figcaption span {
  font-size: 0.83rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.founder-portrait figcaption small {
  color: var(--gold);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.founder-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted-dark);
  font-size: 1rem;
}

.founder-strengths {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 28px 0 31px;
}

.founder-strengths span {
  padding: 9px 12px;
  color: var(--ink);
  border: 1px solid var(--border-dark);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  font-size: 0.66rem;
  font-weight: 760;
  letter-spacing: 0.04em;
}

.section-founder .button-outline {
  color: var(--ink);
  border-color: rgba(7, 17, 31, 0.42);
  background: rgba(255, 255, 255, 0.3);
}

.section-founder .button-outline:hover {
  color: var(--ink);
  border-color: var(--gold);
  background: rgba(239, 184, 64, 0.2);
}

/* FAQ */
.section-faq {
  color: var(--white);
  background: var(--ink-2);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  align-items: start;
  gap: 90px;
}

.faq-layout .section-heading {
  position: sticky;
  top: 115px;
  margin-bottom: 0;
}

.faq-item {
  border-top: 1px solid var(--border);
}

.faq-item:last-child {
  border-bottom: 1px solid var(--border);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  color: var(--white);
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 0.94rem;
  font-weight: 750;
  text-align: left;
}

.faq-item button i {
  display: grid;
  width: 31px;
  height: 31px;
  flex-shrink: 0;
  place-items: center;
  color: var(--gold);
  border: 1px solid rgba(239, 184, 64, 0.4);
  border-radius: 50%;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 400;
  transition: transform 200ms ease, background 200ms ease;
}

.faq-item button[aria-expanded="true"] i {
  color: var(--ink);
  background: var(--gold);
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}

.faq-answer > p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.86rem;
}

.faq-item:has(button[aria-expanded="true"]) .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item:has(button[aria-expanded="true"]) .faq-answer > p {
  padding-bottom: 25px;
}

/* Booking */
.section-booking {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 13% 18%, rgba(33, 102, 243, 0.18), transparent 32%),
    radial-gradient(circle at 93% 86%, rgba(239, 184, 64, 0.13), transparent 26%),
    var(--ink);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(550px, 1.15fr);
  align-items: start;
  gap: clamp(45px, 7vw, 90px);
}

.booking-copy {
  position: sticky;
  top: 110px;
  padding-top: 31px;
}

.booking-copy > p:not(.eyebrow):not(.email-contact) {
  color: var(--muted);
}

.booking-details {
  display: grid;
  gap: 1px;
  margin: 33px 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--border);
  list-style: none;
}

.booking-details li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.045);
}

.booking-details li > span {
  display: grid;
  width: 37px;
  height: 37px;
  flex-shrink: 0;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
  background: var(--gold);
  font-size: 0.68rem;
  font-weight: 900;
}

.booking-details strong,
.booking-details small {
  display: block;
}

.booking-details strong {
  font-size: 0.78rem;
}

.booking-details small {
  color: var(--muted);
  font-size: 0.61rem;
}

.email-contact {
  color: var(--muted);
  font-size: 0.78rem;
}

.email-contact a,
.footer-email {
  color: var(--gold-light);
  font-weight: 750;
  text-decoration: underline;
  text-decoration-color: rgba(239, 184, 64, 0.4);
  text-underline-offset: 4px;
}

.calendar-shell {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #07111f;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}

.calendar-heading {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 25px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.035);
}

.calendar-heading img {
  width: 116px;
  height: auto;
}

.calendar-heading strong,
.calendar-heading small {
  display: block;
}

.calendar-heading strong {
  font-size: 0.8rem;
}

.calendar-heading small {
  color: var(--muted);
  font-size: 0.62rem;
}

.calendly-inline-widget {
  width: 100%;
}

/* Final CTA and footer */
.final-cta {
  position: relative;
  display: grid;
  min-height: 630px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.final-cta-image,
.final-cta-overlay {
  position: absolute;
  inset: 0;
}

.final-cta-image {
  background: url("assets/roofing-hero.webp") center 57% / cover;
  transform: scale(1.02);
}

.final-cta-overlay {
  background: linear-gradient(90deg, rgba(5, 13, 24, 0.95), rgba(5, 13, 24, 0.62), rgba(5, 13, 24, 0.78));
}

.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-right: auto;
  padding: 110px 0;
}

.final-cta-content p:not(.eyebrow) {
  max-width: 560px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
}

.site-footer {
  padding: 46px 0;
  color: var(--white);
  border-top: 1px solid var(--border);
  background: #040b14;
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 25px 45px;
}

.footer-grid > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.footer-grid nav {
  display: flex;
  gap: 24px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-grid nav a:hover {
  color: var(--gold);
}

.footer-grid > small {
  grid-column: 1 / -1;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.35);
  border-top: 1px solid var(--border);
  font-size: 0.61rem;
}

/* Dialog */
.strategy-dialog {
  width: min(calc(100% - 32px), 720px);
  max-height: min(820px, calc(100vh - 35px));
  padding: 42px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: var(--ink-2);
  box-shadow: 0 45px 120px rgba(0, 0, 0, 0.55);
}

.strategy-dialog::backdrop {
  background: rgba(1, 6, 12, 0.78);
  backdrop-filter: blur(7px);
}

.strategy-dialog[open] {
  animation: dialog-in 200ms ease both;
}

@keyframes dialog-in {
  from { opacity: 0; transform: translateY(15px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

.dialog-close {
  position: absolute;
  top: 15px;
  right: 16px;
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  color: var(--muted);
  border: 1px solid var(--border);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  font-size: 1.4rem;
}

.dialog-brand {
  margin-bottom: 25px;
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
}

.strategy-dialog h2 {
  max-width: 560px;
  font-size: clamp(2.2rem, 5vw, 3.7rem);
}

.dialog-intro {
  max-width: 610px;
  margin-bottom: 27px;
  color: var(--muted);
  font-size: 0.84rem;
}

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

.strategy-dialog label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.strategy-dialog input,
.strategy-dialog textarea {
  width: 100%;
  color: var(--white);
  border: 1px solid var(--border);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.055);
  outline: none;
}

.strategy-dialog input {
  height: 46px;
  padding: 0 13px;
}

.strategy-dialog textarea {
  min-height: 96px;
  padding: 12px 13px;
  resize: vertical;
}

.strategy-dialog input:focus,
.strategy-dialog textarea:focus {
  border-color: var(--gold);
}

.strategy-dialog .full-width {
  grid-column: 1 / -1;
}

/* Submission confirmation */
.thanks-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(5, 13, 24, 0.97), rgba(5, 13, 24, 0.68)),
    url("assets/roofing-hero.webp") center / cover;
}

.thanks-card {
  width: min(calc(100% - 30px), 690px);
  padding: clamp(34px, 7vw, 68px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(7, 17, 31, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.thanks-card .brand {
  margin-bottom: 55px;
}

.thanks-card h1 {
  margin-bottom: 20px;
  font-size: clamp(2.8rem, 8vw, 5.1rem);
}

.thanks-card > p:not(.eyebrow) {
  max-width: 540px;
  margin-bottom: 29px;
  color: var(--muted);
  font-size: 1rem;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal-delay,
.reveal-delay-1 { transition-delay: 90ms; }
.reveal-delay-2 { transition-delay: 180ms; }
.reveal-delay-3 { transition-delay: 270ms; }

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Laptop */
@media (max-width: 1080px) {
  .primary-nav {
    gap: 18px;
  }

  .hero-layout {
    grid-template-columns: 1.07fr 0.62fr;
  }

  .hero-product {
    min-height: 500px;
  }

  .ad-stack {
    width: 100%;
  }

  .mini-ad {
    width: 190px;
    padding: 23px;
  }

  .comparison-card {
    grid-template-columns: 1fr;
  }

  .sample-ad {
    min-height: 360px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:nth-child(2) {
    border-right: 0;
  }

  .service-card:nth-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

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

  .response-dashboard {
    grid-template-columns: 0.9fr 1.2fr;
  }

  .dashboard-chat {
    border-right: 0;
  }

  .dashboard-outcome {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    border-top: 1px solid var(--border);
  }

  .outcome-line {
    width: 80px;
    height: 1px;
    margin: 0 20px;
  }
}

/* Tablet */
@media (max-width: 820px) {
  :root {
    --header-height: 70px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: grid;
    padding: 22px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(6, 15, 27, 0.98);
    box-shadow: 0 25px 35px rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .primary-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .primary-nav > a {
    padding: 7px 0;
  }

  .primary-nav .button {
    width: 100%;
  }

  .hero {
    min-height: 980px;
  }

  .hero-image {
    background-position: 68% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 13, 24, 0.96) 0%, rgba(5, 13, 24, 0.86) 45%, rgba(5, 13, 24, 0.72) 75%, rgba(5, 13, 24, 0.94) 100%);
  }

  .hero-layout {
    min-height: 920px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 10px;
    padding-top: 135px;
    padding-bottom: 80px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-product {
    min-height: 330px;
  }

  .ad-stack {
    top: 5px;
    right: auto;
    left: 8px;
    width: 400px;
    height: 260px;
  }

  .mini-ad {
    width: 155px;
    padding: 17px;
  }

  .mini-ad-one {
    top: 38px;
  }

  .mini-ad strong {
    font-size: 1.45rem;
  }

  .lead-alert {
    right: 3px;
    bottom: 5px;
  }

  .hero-footnote {
    display: none;
  }

  .promise-grid,
  .creative-heading {
    display: grid;
    grid-template-columns: 1fr;
  }

  .promise-items {
    flex-wrap: wrap;
  }

  .section {
    padding: 90px 0;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .comparison-card {
    grid-template-columns: minmax(230px, 0.8fr) minmax(230px, 1.2fr);
  }

  .service-card {
    min-height: 300px;
  }

  .process-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 25px;
  }

  .process-list li:nth-child(2)::after,
  .process-list li:nth-child(4)::after {
    display: none;
  }

  .offer-layout,
  .why-layout,
  .faq-layout,
  .founder-layout,
  .booking-layout {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .faq-layout .section-heading {
    position: static;
  }

  .founder-portrait {
    width: min(100% - 22px, 510px);
  }

  .booking-copy {
    position: static;
    padding-top: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
  }

  .footer-grid > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

/* Mobile */
@media (max-width: 600px) {
  :root {
    --radius: 17px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .brand-logo {
    width: 140px;
  }

  .brand-descriptor {
    display: none;
  }

  .hero {
    min-height: 980px;
  }

  .hero-layout {
    min-height: 930px;
    padding-top: 122px;
  }

  .hero h1 {
    font-size: clamp(2.72rem, 14vw, 4rem);
  }

  .hero-lead {
    font-size: 0.98rem;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

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

  .hero-capabilities {
    margin-top: 28px;
  }

  .hero-product {
    min-height: 315px;
  }

  .ad-stack {
    width: 280px;
  }

  .mini-ad {
    width: 132px;
    padding: 14px;
  }

  .mini-ad-two {
    right: 4px;
  }

  .mini-ad strong {
    font-size: 1.25rem;
  }

  .mini-ad small,
  .mini-ad span {
    font-size: 0.42rem;
  }

  .lead-alert {
    right: 0;
    bottom: 0;
    width: 290px;
    padding: 15px;
  }

  .promise-strip {
    padding: 24px 0;
  }

  .promise-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading > p:last-child {
    font-size: 0.96rem;
  }

  .comparison-card {
    grid-template-columns: 1fr;
    padding: 17px;
  }

  .sample-ad {
    min-height: 390px;
  }

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

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .service-card:nth-child(2) {
    min-height: 270px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .service-symbol {
    margin: 32px 0 25px;
  }

  .creative-grid {
    grid-template-columns: 1fr;
  }

  .creative-card {
    min-height: 540px;
  }

  .process-list {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .process-list li {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 18px;
    padding: 0;
  }

  .process-list li::after {
    display: none;
  }

  .process-list li > span {
    grid-row: 1;
    margin: 0;
  }

  .response-dashboard {
    grid-template-columns: 1fr;
  }

  .dashboard-lead,
  .dashboard-chat {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .dashboard-outcome {
    grid-column: auto;
    flex-direction: column;
    align-items: flex-start;
    border-top: 0;
  }

  .outcome-line {
    width: 1px;
    height: 45px;
    margin: 0 0 0 19px;
  }

  .offer-card {
    padding: 29px 24px;
  }

  .why-points {
    grid-template-columns: 1fr;
  }

  .manifesto {
    padding: 48px 28px;
  }

  .founder-portrait {
    padding: 10px;
    box-shadow: 13px 13px 0 var(--gold), 0 26px 55px rgba(7, 17, 31, 0.19);
  }

  .founder-portrait figcaption {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .calendar-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .calendly-inline-widget {
    min-width: 0 !important;
    height: 760px !important;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .strategy-dialog {
    padding: 38px 22px 28px;
  }

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

  .strategy-dialog .full-width {
    grid-column: auto;
  }
}

@media (max-width: 380px) {
  .hero-product {
    min-height: 345px;
  }

  .ad-stack {
    left: -4px;
  }

  .lead-alert {
    right: 0;
    width: 255px;
  }
}
