:root {
  --navy: #102a68;
  --navy-deep: #071942;
  --ink: #151b2d;
  --cream: #fff9ed;
  --paper: #ffffff;
  --coral: #ff6f61;
  --yellow: #ffce42;
  --mint: #6bd6bd;
  --violet: #8f75e8;
  --blue: #2e67d1;
  --line: rgba(21, 27, 45, 0.14);
  --shadow: 0 24px 70px rgba(7, 25, 66, 0.15);
  --radius-lg: 2rem;
  --radius-md: 1.25rem;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

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

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

h1,
h2,
h3,
.brand,
.button {
  font-family: ui-rounded, "Arial Rounded MT Bold", "Avenir Next", system-ui, sans-serif;
}

h1,
h2 {
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h1 {
  margin-bottom: 1.5rem;
  max-width: 12ch;
  font-size: clamp(3.1rem, 6.8vw, 6.4rem);
  font-weight: 850;
}

h1 em {
  position: relative;
  display: inline-block;
  color: var(--coral);
  font-style: normal;
}

h1 em::after {
  position: absolute;
  right: -0.08em;
  bottom: -0.04em;
  left: -0.08em;
  height: 0.13em;
  border-radius: 50%;
  background: var(--yellow);
  content: "";
  transform: rotate(-3deg);
  z-index: -1;
}

h2 {
  margin-bottom: 1.3rem;
  max-width: 15ch;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  font-weight: 850;
}

h3 {
  line-height: 1.15;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  color: #fff;
  background: var(--navy-deep);
  transform: translateY(-180%);
  z-index: 100;
}

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

.announcement {
  display: flex;
  min-height: 2.45rem;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.45rem 1rem;
  color: var(--navy-deep);
  background: var(--yellow);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
}

.site-header {
  display: flex;
  width: min(calc(100% - 2.5rem), var(--max));
  min-height: 5.8rem;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy-deep);
  font-size: 1.15rem;
  font-weight: 900;
  letter-spacing: -0.025em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.35rem;
  height: 2.35rem;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-deep);
  background: var(--yellow);
  font-size: 1.45rem;
  line-height: 1;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-header nav a {
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
}

.site-header nav a:hover,
.site-header nav a:focus-visible {
  color: var(--blue);
}

.header-call {
  padding: 0.75rem 1rem;
  border: 2px solid var(--navy-deep);
  border-radius: 99rem;
  color: var(--navy-deep);
  background: #fff;
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
  transition: 160ms ease;
}

.header-call:hover,
.header-call:focus-visible {
  color: #fff;
  background: var(--navy-deep);
  transform: translateY(-2px);
}

.hero {
  display: grid;
  width: min(calc(100% - 2.5rem), var(--max));
  min-height: 650px;
  margin: 0 auto;
  padding: clamp(2.8rem, 5vw, 5rem) 0 clamp(4rem, 7vw, 6.5rem);
  align-items: center;
  grid-template-areas:
    "copy showcase"
    "conversion showcase";
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1.22fr);
  gap: 1.6rem clamp(2.5rem, 5vw, 4.5rem);
}

.hero-copy {
  position: relative;
  align-self: end;
  grid-area: copy;
  z-index: 1;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(3rem, 5.6vw, 5.35rem);
}

.hero-conversion {
  align-self: start;
  grid-area: conversion;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.1rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 1.8rem;
  height: 0.22rem;
  border-radius: 99rem;
  background: currentColor;
}

.hero-intro {
  max-width: 38rem;
  margin-bottom: 1.8rem;
  color: #3d465e;
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  min-height: 3.55rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.9rem 1.35rem;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px) rotate(-0.5deg);
}

.button-primary {
  color: #fff;
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(16, 42, 104, 0.25);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 15px 32px rgba(16, 42, 104, 0.31);
}

.button-secondary {
  border-color: rgba(16, 42, 104, 0.22);
  color: var(--navy-deep);
  background: #fff;
}

.phone-line {
  margin: 0.75rem 0 1.5rem;
  color: #687087;
  font-size: 0.86rem;
}

.phone-line a {
  color: var(--navy);
  font-weight: 850;
}

.promise-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin: 0;
  padding: 0;
  color: #3f475c;
  font-size: 0.86rem;
  font-weight: 700;
  list-style: none;
}

.promise-list li {
  display: flex;
  align-items: center;
  gap: 0.38rem;
}

.promise-list span {
  display: grid;
  width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  border-radius: 50%;
  color: var(--navy-deep);
  background: var(--mint);
  font-size: 0.72rem;
}

.theme-showcase {
  position: relative;
  padding: 1rem;
  border: 3px solid var(--navy-deep);
  border-radius: 2rem;
  background: #fff;
  box-shadow: 12px 12px 0 var(--yellow);
  grid-area: showcase;
  transform: rotate(0.7deg);
}

.showcase-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.2rem 0.25rem 0.9rem;
}

.showcase-heading p {
  max-width: 14ch;
  margin: 0;
  color: var(--coral);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.showcase-heading h2 {
  max-width: 15ch;
  margin: 0;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1;
  text-align: right;
}

.theme-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.quick-theme-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 2px solid var(--navy-deep);
  border-radius: 1.25rem;
  color: #fff;
  background: var(--navy-deep);
  box-shadow: 4px 4px 0 rgba(7, 25, 66, 0.16);
  text-decoration: none;
  transition: transform 170ms ease, box-shadow 170ms ease;
}

.quick-theme-card:nth-child(2) {
  transform: translateY(0.75rem);
}

.quick-theme-card:hover,
.quick-theme-card:focus-visible {
  box-shadow: 7px 7px 0 var(--yellow);
  transform: translateY(-0.3rem) rotate(-1deg);
}

.quick-theme-card:nth-child(2):hover,
.quick-theme-card:nth-child(2):focus-visible {
  transform: translateY(0.45rem) rotate(1deg);
}

.quick-theme-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 280ms ease;
}

.quick-theme-card:hover img,
.quick-theme-card:focus-visible img {
  transform: scale(1.045);
}

.theme-card-copy {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  min-height: 42%;
  justify-content: flex-end;
  flex-direction: column;
  padding: 1.8rem 0.8rem 0.75rem;
  background: linear-gradient(transparent, rgba(7, 25, 66, 0.93));
}

.theme-card-copy small,
.theme-card-copy strong {
  display: block;
}

.theme-card-copy small {
  color: var(--yellow);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.theme-card-copy strong {
  font-size: clamp(0.92rem, 1.6vw, 1.18rem);
  line-height: 1.15;
}

.showcase-note {
  margin: 1rem 0 0;
  color: #687087;
  font-size: 0.78rem;
  text-align: center;
}

.proof-bar {
  display: grid;
  width: min(calc(100% - 2.5rem), var(--max));
  margin: 0 auto clamp(5rem, 9vw, 9rem);
  overflow: hidden;
  border: 2px solid var(--navy-deep);
  border-radius: 1.5rem;
  background: #fff;
  box-shadow: 8px 8px 0 rgba(16, 42, 104, 0.1);
  grid-template-columns: repeat(4, 1fr);
}

.proof-bar p {
  display: flex;
  min-height: 6.5rem;
  margin: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 1rem;
  text-align: center;
}

.proof-bar p + p {
  border-left: 1px solid var(--line);
}

.proof-bar strong {
  color: var(--navy-deep);
  font-size: 1.05rem;
  font-weight: 900;
}

.proof-bar span {
  color: #687087;
  font-size: 0.82rem;
}

.design-section,
.possibilities,
.faq-section {
  width: min(calc(100% - 2.5rem), var(--max));
  margin: 0 auto;
  padding-bottom: clamp(5rem, 10vw, 9rem);
}

.section-heading {
  display: grid;
  margin-bottom: 3rem;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.62fr);
  column-gap: 4rem;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

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

.section-heading > p:last-child {
  align-self: end;
  margin-bottom: 0.25rem;
  color: #566078;
  font-size: 1.06rem;
}

.section-heading.compact {
  display: block;
}

.section-heading.compact h2 {
  max-width: 12ch;
}

.design-picker {
  display: grid;
  align-items: stretch;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 1.2rem;
}

.theme-list {
  display: grid;
  gap: 0.7rem;
}

.theme-button {
  display: grid;
  width: 100%;
  min-height: 4.8rem;
  align-items: center;
  grid-template-columns: 3rem 1fr;
  gap: 0.8rem;
  padding: 0.72rem 1rem;
  border: 2px solid transparent;
  border-radius: 1.05rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: 160ms ease;
}

.theme-button:hover,
.theme-button:focus-visible {
  border-color: rgba(16, 42, 104, 0.25);
  background: #fff;
  transform: translateX(4px);
}

.theme-button.is-active {
  border-color: var(--navy-deep);
  background: #fff;
  box-shadow: 5px 5px 0 var(--yellow);
}

.theme-button > span:first-child {
  font-size: 1.65rem;
  text-align: center;
}

.theme-button > span:last-child {
  display: flex;
  flex-direction: column;
}

.theme-button strong {
  font-size: 0.95rem;
  font-weight: 850;
}

.theme-button small {
  color: #687087;
  font-size: 0.76rem;
}

.live-preview {
  overflow: hidden;
  border: 2px solid var(--navy-deep);
  border-radius: 1.6rem;
  background: #fff;
  box-shadow: 10px 10px 0 rgba(16, 42, 104, 0.13);
}

.browser-bar {
  display: flex;
  height: 3.1rem;
  align-items: center;
  gap: 0.4rem;
  padding: 0 1rem;
  border-bottom: 2px solid var(--navy-deep);
  background: #f5f0e7;
}

.browser-bar i {
  display: block;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--coral);
}

.browser-bar i:nth-child(2) {
  background: var(--yellow);
}

.browser-bar i:nth-child(3) {
  background: var(--mint);
}

.browser-bar span {
  margin-left: auto;
  margin-right: auto;
  color: #6a6f7f;
  font-size: 0.73rem;
  font-style: normal;
}

.sample-site {
  --sample-color: #8a2f85;
  --sample-accent: #ffd44d;
  --sample-soft: #ffd9f0;
  --sample-ink: #ffffff;
  position: relative;
  display: flex;
  min-height: 500px;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 4.5rem 2rem;
  color: var(--sample-ink);
  background:
    radial-gradient(circle at 18% 20%, var(--sample-accent) 0 0.55rem, transparent 0.62rem),
    radial-gradient(circle at 85% 75%, var(--sample-soft) 0 0.75rem, transparent 0.82rem),
    var(--sample-color);
  text-align: center;
  transition: color 260ms ease, background-color 260ms ease;
}

.sample-site::before,
.sample-site::after {
  position: absolute;
  width: 15rem;
  height: 15rem;
  border: 2px solid color-mix(in srgb, var(--sample-accent) 75%, transparent);
  border-radius: 44% 56% 63% 37%;
  content: "";
  opacity: 0.55;
}

.sample-site::before {
  top: -8rem;
  right: -5rem;
  transform: rotate(28deg);
}

.sample-site::after {
  bottom: -8rem;
  left: -5rem;
  transform: rotate(-18deg);
}

.sample-icon {
  display: grid;
  width: 5.2rem;
  height: 5.2rem;
  margin-bottom: 1.2rem;
  place-items: center;
  border: 3px solid currentColor;
  border-radius: 50%;
  background: color-mix(in srgb, var(--sample-soft) 92%, transparent);
  font-size: 2.6rem;
  box-shadow: 6px 6px 0 var(--sample-accent);
  transform: rotate(-5deg);
}

.sample-name {
  margin-bottom: 0.35rem;
  color: var(--sample-accent);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.sample-site h3 {
  max-width: 10ch;
  margin-bottom: 0.8rem;
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.055em;
}

.sample-date {
  padding: 0.45rem 0.8rem;
  border: 1px solid color-mix(in srgb, var(--sample-ink) 45%, transparent);
  border-radius: 99rem;
  font-size: 0.86rem;
  font-weight: 750;
}

.sample-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
  margin-top: 1.4rem;
}

.sample-actions span {
  padding: 0.6rem 0.82rem;
  border-radius: 0.65rem;
  color: var(--sample-color);
  background: var(--sample-accent);
  font-size: 0.73rem;
  font-weight: 900;
}

.sample-actions span:nth-child(2) {
  background: var(--sample-soft);
}

.sample-actions span:nth-child(3) {
  color: var(--sample-ink);
  background: transparent;
  box-shadow: inset 0 0 0 1px var(--sample-ink);
}

.sample-confetti b {
  position: absolute;
  display: block;
  width: 0.6rem;
  height: 1.4rem;
  border-radius: 0.2rem;
  background: var(--sample-accent);
  transform: rotate(35deg);
}

.sample-confetti b:nth-child(1) { top: 12%; left: 12%; }
.sample-confetti b:nth-child(2) { top: 20%; right: 14%; transform: rotate(-25deg); }
.sample-confetti b:nth-child(3) { right: 9%; bottom: 18%; background: var(--sample-soft); transform: rotate(58deg); }
.sample-confetti b:nth-child(4) { bottom: 13%; left: 17%; background: var(--sample-soft); transform: rotate(-42deg); }
.sample-confetti b:nth-child(5) { top: 48%; left: 8%; transform: rotate(76deg); }

.preview-note {
  margin: 0;
  padding: 0.65rem 1rem;
  color: #687087;
  background: #fff;
  font-size: 0.75rem;
  text-align: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.feature-card {
  min-height: 310px;
  padding: 1.5rem;
  border: 2px solid var(--navy-deep);
  border-radius: 1.5rem;
  box-shadow: 6px 6px 0 var(--navy-deep);
}

.feature-card.coral { background: #ff9f94; }
.feature-card.yellow { background: var(--yellow); }
.feature-card.mint { background: #8fe2ce; }
.feature-card.violet { background: #b8a7f0; }

.feature-number {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  margin-bottom: 5rem;
  place-items: center;
  border: 2px solid var(--navy-deep);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  font-size: 0.76rem;
  font-weight: 900;
}

.feature-card h3 {
  margin-bottom: 0.65rem;
  color: var(--navy-deep);
  font-size: 1.4rem;
}

.feature-card p {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.possibilities-footnote {
  max-width: 850px;
  margin: 2.5rem auto 0;
  color: #525c74;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  text-align: center;
}

.process-section {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) max(1.25rem, calc((100% - var(--max)) / 2));
  overflow: hidden;
  color: #fff;
  background: var(--navy-deep);
}

.process-section::before {
  position: absolute;
  top: -9rem;
  right: -7rem;
  width: 24rem;
  height: 24rem;
  border: 3rem solid rgba(107, 214, 189, 0.1);
  border-radius: 50%;
  content: "";
}

.section-heading.light .eyebrow {
  color: var(--yellow);
}

.section-heading.light > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

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

.process-list li {
  position: relative;
  padding: 0 1.5rem 0 0;
}

.process-list li:not(:last-child)::after {
  position: absolute;
  top: 1.5rem;
  right: 1.2rem;
  left: 4rem;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  content: "";
}

.process-list > li > span {
  position: relative;
  display: grid;
  width: 3rem;
  height: 3rem;
  margin-bottom: 1.5rem;
  place-items: center;
  border: 2px solid var(--yellow);
  border-radius: 50%;
  color: var(--navy-deep);
  background: var(--yellow);
  font-weight: 900;
  z-index: 1;
}

.process-list h3 {
  margin-bottom: 0.6rem;
  font-size: 1.2rem;
}

.process-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.88rem;
}

.button-sun {
  color: var(--navy-deep);
  background: var(--yellow);
}

.card-section {
  display: grid;
  width: min(calc(100% - 2.5rem), 980px);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) 0;
  align-items: center;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(3rem, 8vw, 7rem);
}

.card-section h2 {
  max-width: 11ch;
}

.card-section > div:last-child > p:not(.eyebrow) {
  max-width: 34rem;
  color: #566078;
  font-size: 1.05rem;
}

.card-mockup {
  position: relative;
  display: flex;
  min-height: 390px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem;
  border: 2px solid var(--navy-deep);
  border-radius: 1.2rem;
  background:
    radial-gradient(circle at 10% 12%, var(--yellow) 0 0.45rem, transparent 0.5rem),
    radial-gradient(circle at 83% 21%, var(--violet) 0 0.65rem, transparent 0.7rem),
    radial-gradient(circle at 18% 86%, var(--mint) 0 0.55rem, transparent 0.6rem),
    #ff9f94;
  box-shadow: 14px 14px 0 var(--navy-deep);
  text-align: center;
  transform: rotate(-3deg);
}

.card-mockup::before {
  position: absolute;
  inset: 1rem;
  border: 2px dashed rgba(7, 25, 66, 0.35);
  border-radius: 0.7rem;
  content: "";
}

.card-hole {
  position: absolute;
  top: 0.7rem;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--navy-deep);
  border-radius: 50%;
  background: var(--cream);
}

.card-mockup p {
  margin-bottom: 0.3rem;
  color: var(--navy);
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.card-mockup strong {
  max-width: 8ch;
  margin-bottom: 0.8rem;
  color: var(--navy-deep);
  font-size: 2.7rem;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.card-mockup > span {
  padding: 0.35rem 0.65rem;
  border-radius: 99rem;
  color: #fff;
  background: var(--navy);
  font-size: 0.72rem;
  font-weight: 850;
}

.fake-qr {
  display: grid;
  width: 4.5rem;
  height: 4.5rem;
  margin-top: 1.2rem;
  padding: 0.35rem;
  background: #fff;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.17rem;
}

.fake-qr i {
  background: var(--navy-deep);
}

.fake-qr i:nth-child(2),
.fake-qr i:nth-child(6) {
  background: transparent;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy);
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.25rem;
}

.text-link span {
  transition: transform 150ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(4px);
}

.faq-list {
  border-top: 2px solid var(--navy-deep);
}

.faq-list details {
  border-bottom: 2px solid var(--navy-deep);
}

.faq-list summary {
  position: relative;
  padding: 1.45rem 3.2rem 1.45rem 0;
  color: var(--navy-deep);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-weight: 850;
  list-style: none;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 0.2rem;
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 2px solid var(--navy-deep);
  border-radius: 50%;
  content: "+";
  font-size: 1.2rem;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
  color: #fff;
  background: var(--navy-deep);
}

.faq-list details p {
  max-width: 760px;
  margin-bottom: 1.5rem;
  color: #566078;
}

.final-cta {
  position: relative;
  width: min(calc(100% - 2.5rem), var(--max));
  margin: 0 auto 1.5rem;
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
  overflow: hidden;
  border: 2px solid var(--navy-deep);
  border-radius: 2.2rem;
  background: var(--yellow);
  box-shadow: 10px 10px 0 var(--navy-deep);
  text-align: center;
}

.final-cta .eyebrow {
  justify-content: center;
  color: var(--navy-deep);
}

.final-cta h2 {
  max-width: none;
  margin-bottom: 1rem;
}

.final-cta > p:not(.eyebrow) {
  margin-bottom: 1.8rem;
  font-size: 1.08rem;
}

.hero-actions.centered {
  justify-content: center;
}

.button-dark {
  color: #fff;
  background: var(--navy-deep);
}

.button-light {
  border-color: var(--navy-deep);
  color: var(--navy-deep);
  background: #fff;
}

.cta-spark {
  position: absolute;
  color: var(--coral);
  font-size: 2.5rem;
}

.spark-one { top: 18%; left: 8%; transform: rotate(15deg); }
.spark-two { top: 22%; right: 10%; color: var(--violet); }
.spark-three { bottom: 12%; left: 18%; color: var(--navy); font-size: 4rem; }

footer {
  display: grid;
  width: min(calc(100% - 2.5rem), var(--max));
  margin: 0 auto;
  padding: 3.5rem 0 6rem;
  align-items: center;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 1rem;
  color: #626b81;
  font-size: 0.82rem;
}

footer p {
  margin: 0;
  text-align: center;
}

footer > div {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
}

footer > div a {
  color: var(--navy);
  font-weight: 800;
}

footer small {
  grid-column: 1 / -1;
  text-align: center;
}

.footer-brand .brand-mark {
  width: 1.8rem;
  height: 1.8rem;
  font-size: 1rem;
}

.mobile-contact {
  display: none;
}

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .site-header nav {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-areas:
      "copy"
      "showcase"
      "conversion";
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-copy,
  .hero-conversion,
  .theme-showcase {
    width: 100%;
    max-width: 760px;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .proof-bar,
  .feature-grid,
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-bar p:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .proof-bar p:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .design-picker {
    grid-template-columns: 1fr;
  }

  .theme-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .theme-button:hover,
  .theme-button:focus-visible {
    transform: translateY(-2px);
  }

  .feature-card {
    min-height: 270px;
  }

  .process-list {
    gap: 2.5rem 1rem;
  }

  .process-list li:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 4.5rem;
  }

  .announcement {
    font-size: 0.76rem;
  }

  .announcement span {
    display: none;
  }

  .site-header {
    min-height: 4.8rem;
  }

  .header-call {
    display: none;
  }

  .hero {
    width: min(calc(100% - 2rem), var(--max));
    padding-top: 2.2rem;
    gap: 1.6rem;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }

  .hero h1 {
    margin-bottom: 1.15rem;
    font-size: clamp(2.75rem, 12.5vw, 4.2rem);
  }

  .hero-intro {
    margin-bottom: 0;
  }

  .theme-showcase {
    padding: 0.7rem;
    border-width: 2px;
    border-radius: 1.4rem;
    box-shadow: 7px 7px 0 var(--yellow);
    transform: none;
  }

  .showcase-heading {
    padding: 0.1rem 0.15rem 0.7rem;
  }

  .showcase-heading p {
    font-size: 0.75rem;
  }

  .showcase-heading h2 {
    max-width: 13ch;
    font-size: 1.3rem;
  }

  .theme-card-grid {
    gap: 0.5rem;
  }

  .quick-theme-card {
    border-radius: 0.9rem;
    box-shadow: 3px 3px 0 rgba(7, 25, 66, 0.16);
  }

  .theme-card-copy {
    padding: 1.4rem 0.55rem 0.55rem;
  }

  .theme-card-copy small {
    font-size: 0.75rem;
  }

  .theme-card-copy strong {
    font-size: 0.9rem;
  }

  .showcase-note {
    margin-top: 0.8rem;
    font-size: 0.75rem;
  }

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

  .promise-list {
    align-items: flex-start;
    flex-direction: column;
  }

  .proof-bar {
    width: min(calc(100% - 2rem), var(--max));
    grid-template-columns: 1fr 1fr;
  }

  .proof-bar p {
    min-height: 5.6rem;
    padding: 0.7rem;
  }

  .proof-bar strong {
    font-size: 0.88rem;
  }

  .proof-bar span {
    font-size: 0.72rem;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    margin-bottom: 1.2rem;
  }

  .theme-list {
    display: flex;
    margin: 0 -1rem;
    padding: 0.5rem 1rem 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .theme-button {
    min-width: 185px;
    scroll-snap-align: start;
  }

  .sample-site {
    min-height: 460px;
    padding-right: 1.2rem;
    padding-left: 1.2rem;
  }

  .sample-actions span {
    font-size: 0.68rem;
  }

  .feature-grid,
  .process-list,
  .card-section {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .feature-number {
    margin-bottom: 3rem;
  }

  .process-list {
    margin-top: 3rem;
  }

  .process-list li {
    display: grid;
    padding-right: 0;
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
  }

  .process-list > li > span {
    margin-bottom: 0;
  }

  .card-section {
    width: min(calc(100% - 2.5rem), 520px);
  }

  .card-mockup {
    min-height: 350px;
  }

  .card-section > div:last-child {
    grid-row: 1;
  }

  .cta-spark {
    opacity: 0.45;
  }

  .spark-one { top: 9%; left: 5%; }
  .spark-two { top: 12%; right: 5%; }
  .spark-three { bottom: 4%; left: 8%; }

  footer {
    display: flex;
    padding-bottom: 2rem;
    flex-direction: column;
    text-align: center;
  }

  footer > div {
    justify-content: center;
  }

  .mobile-contact {
    position: fixed;
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    display: grid;
    overflow: hidden;
    border: 2px solid var(--navy-deep);
    border-radius: 1rem;
    background: #fff;
    box-shadow: 0 10px 35px rgba(7, 25, 66, 0.23);
    grid-template-columns: 1fr 1fr;
    z-index: 50;
  }

  .mobile-contact a {
    display: flex;
    min-height: 3.55rem;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    color: var(--navy-deep);
    font-weight: 900;
    text-decoration: none;
  }

  .mobile-contact a:first-child {
    color: #fff;
    background: var(--navy-deep);
  }
}

@media (max-width: 410px) {
  .brand {
    font-size: 1rem;
  }

  .brand-mark {
    width: 2rem;
    height: 2rem;
  }

  .hero {
    width: min(calc(100% - 1.5rem), var(--max));
  }

  h1 {
    font-size: 2.95rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  .showcase-heading {
    display: block;
  }

  .showcase-heading p {
    max-width: none;
    margin-bottom: 0.3rem;
  }

  .showcase-heading h2 {
    max-width: none;
    text-align: left;
  }

  .theme-card-copy small {
    line-height: 1.15;
  }

  .theme-card-copy strong {
    font-size: 0.82rem;
  }

  .proof-bar,
  .design-section,
  .possibilities,
  .faq-section,
  .final-cta {
    width: min(calc(100% - 1.5rem), var(--max));
  }

  .proof-bar {
    grid-template-columns: 1fr;
  }

  .proof-bar p + p,
  .proof-bar p:nth-child(3) {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .card-mockup strong {
    font-size: 2.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
