/* ==========================================================
   Booked — storefront
   Palette and type are unchanged from v1; layout is rebuilt.
   ========================================================== */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..900;1,9..144,300..900&family=Archivo:wght@300;400;500;600;700&family=Spline+Sans+Mono:wght@400;500;600&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Charm:wght@400;700&family=Sansation:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

:root {
  --coal: #111113;
  --ink: #161310;
  /* warm near-black */
  --muted: #726A5C;
  /* warm taupe-grey */
  --line: #2c2c31;
  --line2: #E7E7E4;
  /* clean light hairline */
  --alt: #F6F6F4;
  /* whisper-grey section band */
  --alt-deep: #ECECEA;
  --brand: #d3a43f;
  /* gold accent (transferred from my-website) */
  --brand-bright: #ecc66b;
  /* bright gold (transferred from my-website) */
  --brand-dark: #8a6d2c;
  /* deep gold / bronze (hover) */
  --brand-tint: #F6EED8;
  /* pale gold tint (featured ring) */
  --dark: #141210;
  /* charcoal-black — header, trust bar, final CTA */
  --on-dark: #B3AA97;
  /* muted text on the dark bands */
  --band: #FBFBFA;
  /* near-white — templates band top */
  --band-2: #F4F4F2;
  /* barely deeper, for the band gradient */
  /* --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif; */
  --sans: "Archivo", system-ui, sans-serif;
  --mono: "Spline Sans Mono", ui-monospace, monospace;
  --radius: 8px;
  /* cards, panels, tables — buttons set their own */
  --shadow: 0 18px 50px rgba(20, 20, 20, .10);

  /* --ink:        #0b0b0c; */
  /* --coal:       #111113; */
  --graphite: #18181b;
  --ash: #232327;
  /* --line:       #2c2c31; */
  --smoke: #6c6c72;
  --silver: #a6a6ac;
  --mist: #dcdcd6;
  --paper: #f3f0e9;

  --gold: #c9a24b;
  --gold-bright: #ecc66b;
  --gold-deep: #8a6d2c;
  --gold-glow: rgba(201, 162, 75, 0.18);
  --smoke: #6c6c72;
  --display: 'Sansation', "Fraunces", Georgia, serif;
  --maxw: 1320px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease2: cubic-bezier(0.7, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--sans);
  /* font-family: var(--font); */
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---------- Custom cursor ---------- */
@media (hover: hover) and (pointer: fine) {
  body {
    cursor: none;
  }

  .cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 9px;
    height: 9px;
    background: var(--gold-bright);
    border-radius: 50%;
    z-index: 10000;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width .25s var(--ease), height .25s var(--ease), background .25s;
  }

  .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 38px;
    height: 38px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    z-index: 10000;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: width .3s var(--ease), height .3s var(--ease), opacity .3s, border-color .3s;
    opacity: .55;
  }

  body.hovering .cursor {
    width: 4px;
    height: 4px;
  }

  body.hovering .cursor-ring {
    width: 60px;
    height: 60px;
    opacity: 1;
    border-color: var(--gold-bright);
  }
}

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

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

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: .9em;
  background: var(--alt-deep);
  padding: 1px 5px;
  border-radius: 4px
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background .15s, border-color .15s, transform .15s;
  white-space: nowrap;
}

.btn-buy {
  background: var(--brand);
  color: var(--ink);
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s cubic-bezier(0.16, 1, 0.3, 1)
}

.btn-buy:hover {
  background: var(--brand-bright);
  color: var(--ink)
}

.btn-ghost {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--line2)
}

.btn-ghost:hover {
  border-color: var(--ink)
}

.btn-preview {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line2)
}

.btn-preview:hover {
  border-color: var(--ink)
}

.btn-sm {
  height: 40px;
  padding: 0 16px;
  font-size: 14px
}

.btn-block {
  width: 100%
}

/* ---------- Header ---------- */
.site-head {
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  position: sticky;
  top: 0;
  background: rgba(20, 18, 16, .94);
  backdrop-filter: blur(10px);
  z-index: 50;
}

.site-head .wrap {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 78px
}

.logo {
  display: inline-flex;
  align-items: center;
  margin-right: auto
}

.logo img {
  height: 56px;
  width: auto;
  display: block;
}

.site-head nav {
  display: none;
  gap: 26px;
  font-size: 15px;
  font-weight: 500;
  color: var(--on-dark);
}

.site-head nav a:hover {
  color: #fff
}

.head-cta {
  display: none;
}

@media(min-width:900px) {
  .site-head nav {
    display: flex;
  }
}

@media(min-width:1040px) {
  .head-cta {
    display: inline-flex;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 72px 0 80px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: var(--ink);
  z-index: 1;
}

.hero::before {
  content: "DigitalTec";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);

  font-size: clamp(8rem, 20vw, 80rem);
  font-weight: 900;
  font-family: inherit;
  letter-spacing: -0.05em;
  line-height: 1;

  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;

  pointer-events: none;
  user-select: none;
  z-index: -1;
}

.hero>* {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: center;
}

@media(min-width:960px) {
  .hero {
    padding: 88px 0 96px;
  }

  .hero-grid {
    grid-template-columns: 1.02fr 1fr;
    gap: 64px;
  }
}

.eyebrow {
  display: inline-block;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  /* color: var(--brand); */
  color: var(--gold);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: 'Sansation', Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.5rem, 6.8vw, 5rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-top: 10px;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--brand-bright);
}

.hero h1 .outline {
  -webkit-text-stroke: 1.2px var(--smoke);
  color: transparent;
  font-style: italic;
}

.hero-copy .load {
  opacity: 0;
  transform: translateY(30px);
  animation: rise 1.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  display: inline-block;
}

.hero-copy .load.d1 {
  animation-delay: 0.15s;
}

.hero-copy .load.d2 {
  animation-delay: 0.3s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-copy>p {
  font-size: 18px;
  color: var(--muted);
  max-width: 52ch;
  margin-top: 18px
}

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

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

.highlight {
  color: var(--gold);
  font-style: italic;
}

.ticks {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 9px
}

.ticks li {
  position: relative;
  padding-left: 26px;
  font-size: 14.5px;
  color: var(--muted)
}

.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(-45deg);
}

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.6rem 0;
  overflow: hidden;
  white-space: nowrap;
  background: var(--coal);
  position: relative;
  z-index: 2;
}

.marquee-track {
  display: inline-flex;
  gap: 3rem;
  animation: scroll-x 32s linear infinite;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

.marquee span {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 1.4rem);
  color: var(--smoke);
  display: inline-flex;
  align-items: center;
  gap: 3rem;
}

.marquee span::after {
  content: "✦";
  color: var(--gold);
  font-style: normal;
  font-size: .7em;
}

@keyframes scroll-x {
  to {
    transform: translateX(-50%);
  }
}

/* ---------- Browser mockup ---------- */
.hero-visual {
  position: relative;
  min-height: 300px
}

.browser {
  background: #fff;
  /* border: 1px solid var(--line); */
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow:
    0 2px 6px rgba(20, 19, 16, .07),
    0 12px 28px rgba(20, 19, 16, .11),
    0 34px 70px rgba(20, 19, 16, .17);
}

/* Front frame carries the deeper shadow so the stack reads as two planes. */
.browser-front {
  box-shadow:
    0 3px 8px rgba(20, 19, 16, .09),
    0 16px 36px rgba(20, 19, 16, .14),
    0 44px 90px rgba(20, 19, 16, .22);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 34px;
  padding: 0 12px;
  background: var(--alt);
  border-bottom: 1px solid var(--line);
}

.browser-bar>span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #D6D1C7;
  flex: none
}

.browser-url {
  margin-left: 12px;
  flex: 1;
  height: 20px;
  border-radius: 5px;
  background: #fff;
  border: 1px solid var(--line);
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  padding: 0 9px;
  max-width: 230px;
}

.browser-body {
  aspect-ratio: 16/9;
  background: var(--alt-deep);
  position: relative
}

.browser-body img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center
}

/* Fallback when a screenshot is missing */
.browser.is-empty .browser-body img {
  display: none
}

.browser.is-empty .browser-body::after {
  content: "Add screenshots/ — see README";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  padding: 16px;
}

.browser-front {
  position: relative;
  z-index: 2
}

.browser-back {
  display: none
}

@media(min-width:960px) {
  .browser-back {
    display: block;
    position: absolute;
    top: -30px;
    right: -42px;
    width: 74%;
    z-index: 1;
    opacity: .85;
    transform: rotate(2.5deg);
  }

  .browser-front {
    margin-top: 34px
  }
}

/* ---------- Trust bar ---------- */
/* Sits directly on top of the dark templates band — no seam between them. */
.trustbar {
  background: var(--dark);
  color: #fff;
  padding: 30px 0 26px
}

.trustbar .wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  text-align: center
}

@media(min-width:760px) {
  .trustbar .wrap {
    grid-template-columns: repeat(4, 1fr)
  }
}

.trustbar strong {
  display: block;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.02em
}

.trustbar span {
  font-size: 13.5px;
  color: var(--on-dark)
}

/* ---------- Sections ---------- */
.section {
  padding: 76px 0
}

.section-head {
  margin-bottom: 40px;
  max-width: 62ch
}

.section-head h2 {
  font-family: 'Sansation', Georgia, serif;
  font-size: clamp(26px, 3.2vw, 2.4rem);
  word-wrap: nowrap;
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.15
}

.section-head p {
  color: var(--muted);
  margin-top: 10px;
  font-size: 16.5px
}

/* ---------- Templates band (light, with background geometry) ---------- */

.templates {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--band) 0%, var(--band-2) 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: 84px;
  padding-bottom: 88px;

}

.templates .deco {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0
}

.templates .deco svg {
  height: 100%;
  display: block;
}

.templates .wrap {
  position: relative;
  z-index: 1
}


/* ---------- Template grid ---------- */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px
}

@media(min-width:760px) {
  .grid {
    grid-template-columns: 1fr 1fr
  }
}

.card {
  border: 1px solid var(--line2);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: #fff;
  box-shadow: 0 1px 2px rgba(20, 20, 20, .04), 0 4px 10px rgba(20, 20, 20, .05);
  transition: box-shadow .25s, transform .25s, border-color .25s;
}

.card:hover {
  box-shadow: 0 1px 3px rgba(20, 20, 20, .05), 0 8px 18px rgba(20, 20, 20, .08), 0 18px 36px rgba(20, 20, 20, .08);
  transform: translateY(-4px);
  border-color: #CFC7B9;
}

.thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--alt-deep);
  position: relative;
  border-bottom: 1px solid var(--line2)
}

.thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .4s ease
}

/* Shading over the hero photo — keeps bright images from washing out against the
   light band, and stops the white category chip floating on a pale background. */
.thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(20, 19, 16, .20) 0%, rgba(20, 19, 16, .04) 34%, rgba(20, 19, 16, 0) 58%, rgba(20, 19, 16, .30) 100%),
    radial-gradient(120% 100% at 50% 40%, rgba(20, 19, 16, 0) 55%, rgba(20, 19, 16, .16) 100%);
}

.card:hover .thumb img {
  transform: scale(1.03)
}

.thumb.is-empty img {
  display: none
}

.thumb.is-empty::after {
  content: "Screenshot pending — see screenshots/README.md";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  padding: 20px;
}

.tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .05em;
}

.card-body {
  padding: 24px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1
}

.card-body h3 {
  font-size: 19.5px;
  font-weight: 700;
  letter-spacing: -.01em
}

.card-body>p {
  font-size: 15px;
  color: var(--muted)
}

.feat {
  list-style: none;
  display: grid;
  gap: 7px;
  flex-grow: 1;
  padding-top: 2px
}

.feat li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  color: var(--muted)
}

.feat li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand)
}

.meta {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  padding-top: 14px;
  border-top: 1px solid var(--line);
  margin-top: 6px
}

.price {
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -.015em;
  color: var(--ink)
}

.actions {
  display: flex;
  gap: 10px;
  margin-top: 4px
}

.actions .btn {
  flex: 1
}

/* ---------- Photo bands (bundle + licensing) ---------- */
/* Fixed background image + dark wash, so white cards read cleanly on top.
   Because the image is `fixed`, both bands act as windows onto the same
   backdrop — it stays put while the page scrolls over it. */
.photo-band {
  position: relative;
  isolation: isolate;
  background: #141310 url("../images/bundle-bg.jpg") center/cover no-repeat;
  background-attachment: fixed;
  border-top: 1px solid rgba(255, 255, 255, .10);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  padding-top: 92px;
  padding-bottom: 96px;
  color: #fff;
}

.photo-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 19, 16, .86) 0%, rgba(20, 19, 16, .70) 50%, rgba(20, 19, 16, .86) 100%),
    linear-gradient(90deg, rgba(190, 154, 62, .22) 0%, rgba(190, 154, 62, 0) 60%);
}

.photo-band .section-head h2 {
  color: #fff
}

.photo-band .section-head p {
  color: var(--on-dark)
}

@media(max-width:900px) {

  /* fixed attachment is unreliable on mobile Safari/Chrome */
  .photo-band {
    background-attachment: scroll
  }
}

.bundle {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .42);
  color: var(--ink);
  /* reset: .photo-band sets color:#fff, which the card must not inherit */
}

@media(min-width:860px) {
  .bundle {
    grid-template-columns: 1.35fr .85fr
  }
}

.bundle-copy {
  padding: 40px
}

.badge {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  padding: 5px 13px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.bundle-copy h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 800;
  letter-spacing: -.025em;
  margin: 16px 0 12px;
  line-height: 1.15
}

.bundle-copy>p {
  color: var(--muted);
  font-size: 16px;
  max-width: 52ch
}

.bundle-price {
  padding: 40px;
  background: var(--alt);
  border-top: 1px solid var(--line2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

@media(min-width:860px) {
  .bundle-price {
    border-top: none;
    border-left: 1px solid var(--line2)
  }
}

.was {
  font-size: 14px;
  color: var(--muted);
  text-decoration: line-through
}

.now {
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.05;
  margin: 4px 0;
  color: var(--ink)
}

.unit {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 22px
}

.fineprint {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 12px
}

/* ---------- Comparison table ---------- */
.table {
  border: 1px solid var(--line2);
  border-radius: var(--radius);
  overflow: hidden
}

.trow {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--line2);
  font-size: 14.5px
}

.trow:last-child {
  border-bottom: none
}

.trow>div {
  padding: 15px 16px;
  color: var(--muted);
  display: flex;
  align-items: center
}

.trow>div:first-child {
  color: var(--ink);
  font-weight: 600
}

.thead {
  background: var(--alt);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .05em
}

.thead>div {
  font-weight: 700;
  color: var(--ink)
}

.thead>div:nth-child(2) {
  color: var(--brand)
}

.trow .yes {
  color: var(--ink);
  font-weight: 600;
  background: var(--brand-tint)
}

@media(max-width:700px) {
  .trow {
    grid-template-columns: 1fr 1fr
  }

  .thead {
    display: none
  }

  .rlabel {
    grid-column: 1 / -1;
    background: var(--alt);
    font-size: 13px
  }
}

/*------------------- Done for you ------------------- */
.section-head-doneforyou {
  text-align: center;
  margin: 0 auto;
  width: 70%;
  margin-bottom: 2rem;
}

.section-head-doneforyou h2 {
  font-family: 'Sansation', Georgia, serif;
  margin-top: 4px;
}

.section-head-doneforyou .badge {
  margin-bottom: 14px;
}

@media(max-width:640px) {
  .section-head-doneforyou {
    width: 100%;
  }
}

/* ---------- Info grids ---------- */
.info {
  background: var(--alt);
  border-top: 1px solid var(--line2);
  border-bottom: 1px solid var(--line2)
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px
}

@media(min-width:700px) {
  .info-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.info-grid h4 {
  font-size: 16.5px;
  font-weight: 700;
  margin-bottom: 7px
}

.info-grid p {
  font-size: 15px;
  color: var(--muted)
}

/* ---------- Licence ---------- */
.lic-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px
}

@media(min-width:800px) {
  .lic-grid {
    grid-template-columns: repeat(3, 1fr)
  }
}

.lic {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  padding: 28px;
  color: var(--ink);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .38);
}

.lic.featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(190, 154, 62, .55), 0 18px 50px rgba(0, 0, 0, .38)
}

.lic h4 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .02em
}

.lic-price {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.025em;
  margin: 8px 0 10px
}

.lic p {
  font-size: 14.5px;
  color: var(--muted)
}

/* ---------- Final CTA ---------- */
.finalcta {
  background: var(--dark);
  color: #fff;
  padding: 80px 0;
  text-align: center
}

.finalcta h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  letter-spacing: -.025em
}

.finalcta p {
  color: var(--on-dark);
  margin-top: 12px;
  font-size: 16.5px
}

.finalcta .btn-ghost {
  background: transparent;
  color: #fff;
  border-color: #3A3A3A
}

.finalcta .btn-ghost:hover {
  border-color: #fff
}

/* ---------- Footer ---------- */
footer {
  padding: 36px 0;
  border-top: 1px solid var(--line2)
}

footer .wrap {
  color: var(--muted);
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between
}

footer a {
  text-decoration: underline
}

footer a:hover {
  color: var(--ink)
}