/* ==========================================================================
   NFC Studio · Seattle — sales page
   Type: Clash Display (display / UI) + Sentient (prose)
   ========================================================================== */

@font-face {
  font-family: "Clash Display";
  src: url("fonts/ClashDisplay-Variable.woff2") format("woff2");
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sentient";
  src: url("fonts/Sentient-Variable.woff2") format("woff2");
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Sentient";
  src: url("fonts/Sentient-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --paper: #f1efe9;
  --paper-2: #e8e5dd;
  --card: #fbfaf7;
  --ink: #171a18;
  --ink-2: #3d443f;
  --ink-3: #6b736d;
  --line: rgba(23, 26, 24, 0.14);
  --line-2: rgba(23, 26, 24, 0.08);
  --forest: #12362c;
  --forest-2: #0d2820;
  --forest-line: rgba(241, 239, 233, 0.16);
  --blue: #1f4ed8;
  --blue-deep: #1a41b4;
  --blue-light: #93aeff;
  --ochre: #c2742b;

  --shell: 1180px;
  --r-s: 8px;
  --r-m: 14px;
  --r-l: 20px;

  --ease: cubic-bezier(0.22, 0.7, 0.24, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --sp-section: clamp(76px, 9vw, 148px);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Sentient", Georgia, "Times New Roman", serif;
  font-size: 17.5px;
  line-height: 1.62;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

h1, h2, h3, h4, .display, .ui, .h-xl, .h-l, .h-m {
  font-family: "Clash Display", "Helvetica Neue", sans-serif;
  font-weight: 600;
  letter-spacing: -0.022em;
  line-height: 1.05;
  margin: 0;
}

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.shell {
  width: min(100% - 40px, var(--shell));
  margin-inline: auto;
}
.shell-narrow { width: min(100% - 40px, 880px); margin-inline: auto; }

section { position: relative; }
section[id], span#top { scroll-margin-top: 96px; }
.pad { padding-block: var(--sp-section); }

/* ---------- type helpers ---------- */
.eyebrow {
  font-family: "Clash Display", sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.19em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 26px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--ochre);
  flex: none;
  margin-top: 7px;
}
.eyebrow.on-dark { color: rgba(241, 239, 233, 0.62); }

.h-xl { font-size: clamp(42px, 6.4vw, 82px); line-height: 1.02; letter-spacing: -0.032em; }
.h-l  { font-size: clamp(32px, 4.2vw, 54px); letter-spacing: -0.028em; line-height: 1.06; }
.h-m  { font-size: clamp(24px, 2.6vw, 33px); letter-spacing: -0.022em; line-height: 1.14; }
.h-s  { font-size: 20px; letter-spacing: -0.015em; line-height: 1.2; }

.lede { font-size: clamp(18px, 1.5vw, 21px); color: var(--ink-2); line-height: 1.58; }
.small { font-size: 14.5px; color: var(--ink-3); line-height: 1.55; }
.note { font-size: 12.5px; color: var(--ink-3); line-height: 1.5; }
.tnum { font-variant-numeric: tabular-nums; }
.serif-em { font-style: italic; }

.src {
  font-family: "Clash Display", sans-serif;
  font-size: 10.5px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 500;
}
.on-dark .src, .src.on-dark { color: rgba(241, 239, 233, 0.5); }

/* ---------- buttons ---------- */
.btn {
  --btn-bg: var(--ink);
  --btn-fg: #f7f6f2;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 11px 11px 11px 24px;
  border: 0;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-family: "Clash Display", sans-serif;
  font-size: 15.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.35s var(--ease), background-color 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
  box-shadow: 0 1px 1px rgba(23, 26, 24, 0.06), 0 6px 18px -8px rgba(23, 26, 24, 0.4);
}
.btn .ic {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  flex: none;
  transition: transform 0.4s var(--ease), background-color 0.4s var(--ease);
}
.btn .ic svg { width: 13px; height: 13px; display: block; }
.btn:hover { transform: translateY(-1px); box-shadow: 0 2px 3px rgba(23,26,24,.07), 0 14px 30px -12px rgba(23, 26, 24, 0.5); }
.btn:hover .ic { transform: translate(3px, -2px); background: rgba(255, 255, 255, 0.24); }
.btn:active { transform: translateY(0) scale(0.985); }

.btn-primary { --btn-bg: var(--blue); --btn-fg: #fff; box-shadow: 0 1px 1px rgba(26,65,180,.2), 0 10px 26px -10px rgba(31, 78, 216, 0.7); }
.btn-primary:hover { --btn-bg: var(--blue-deep); box-shadow: 0 2px 3px rgba(26,65,180,.22), 0 18px 34px -14px rgba(31, 78, 216, 0.8); }
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 32%, rgba(255, 255, 255, 0.28) 48%, transparent 62%);
  transform: translateX(-120%);
  pointer-events: none;
}
.btn-primary:hover::after { animation: sheen 0.85s var(--ease-out) forwards; }
@keyframes sheen { to { transform: translateX(120%); } }

.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line);
  padding: 11px 22px;
}
.btn-ghost:hover { --btn-bg: rgba(23, 26, 24, 0.045); box-shadow: inset 0 0 0 1px rgba(23, 26, 24, 0.24); }
.btn-light { --btn-bg: var(--paper); --btn-fg: var(--forest-2); }
.btn-light .ic { background: rgba(18, 54, 44, 0.1); }
.btn-light:hover .ic { background: rgba(18, 54, 44, 0.16); }
.btn-sm { font-size: 14px; padding: 8px 8px 8px 18px; }
.btn-sm .ic { width: 26px; height: 26px; }

a:focus-visible, button:focus-visible, summary:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}
.on-forest a:focus-visible, .on-forest button:focus-visible, .on-forest input:focus-visible,
.on-forest textarea:focus-visible { outline-color: var(--blue-light); }

.skip {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  border-radius: 999px;
  z-index: 90;
}
.skip:focus { left: 16px; }

/* ---------- header ---------- */
.site-head {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  padding-top: 18px;
}
.head-bar {
  width: min(100% - 32px, 1180px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 9px 9px 9px 20px;
  border-radius: 999px;
  background: rgba(241, 239, 233, 0.72);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  backdrop-filter: saturate(180%) blur(16px);
  box-shadow: inset 0 0 0 1px rgba(23, 26, 24, 0.08), 0 10px 30px -18px rgba(23, 26, 24, 0.5);
  transition: background-color 0.5s var(--ease), box-shadow 0.5s var(--ease),
    transform 0.5s var(--ease);
}
.site-head.is-stuck .head-bar {
  background: rgba(244, 242, 237, 0.9);
  box-shadow: inset 0 0 0 1px rgba(23, 26, 24, 0.1), 0 16px 40px -22px rgba(23, 26, 24, 0.55);
  transform: translateY(-7px);
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex: none; }
.brand svg { width: 17px; height: 22px; display: block; }
.brand b {
  font-family: "Clash Display", sans-serif;
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: -0.015em;
}
.brand span {
  font-family: "Clash Display", sans-serif;
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-left: 10px;
  margin-left: 2px;
  border-left: 1px solid var(--line);
}
.nav { display: flex; gap: 4px; margin-left: auto; }
.nav a {
  font-family: "Clash Display", sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  color: var(--ink-2);
  padding: 8px 13px;
  border-radius: 999px;
  transition: color 0.25s var(--ease), background-color 0.25s var(--ease);
}
.nav a:hover { color: var(--ink); background: rgba(23, 26, 24, 0.05); }
.nav a.is-active { color: var(--ink); background: rgba(23, 26, 24, 0.07); }
.head-cta { margin-left: 4px; }

.burger {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 0;
  background: rgba(23, 26, 24, 0.06);
  position: relative;
  cursor: pointer;
}
.burger i {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.45s var(--ease), opacity 0.25s var(--ease);
}
.burger i:nth-child(1) { top: 16px; }
.burger i:nth-child(2) { top: 24px; }
.burger.is-open i:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.burger.is-open i:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(241, 239, 233, 0.92);
  -webkit-backdrop-filter: blur(26px);
  backdrop-filter: blur(26px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  padding: 90px 32px 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
}
.menu.is-open { opacity: 1; visibility: visible; }
.menu a {
  font-family: "Clash Display", sans-serif;
  font-size: clamp(30px, 8vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--line-2);
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.5s var(--ease) calc(var(--i) * 60ms), transform 0.6s var(--ease) calc(var(--i) * 60ms);
}
.menu.is-open a { opacity: 1; transform: none; }
.menu .menu-foot { margin-top: 26px; font-size: 15px; color: var(--ink-2); border: 0; }

/* ---------- hero ---------- */
.hero { padding-top: clamp(120px, 15vh, 172px); padding-bottom: clamp(48px, 6vw, 84px); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero h1 { margin-bottom: 24px; }
.hero h1 em {
  font-style: normal;
  position: relative;
  white-space: nowrap;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 4px;
  background: var(--blue);
  transform: scaleX(var(--underline, 0));
  transform-origin: left;
  transition: transform 1.1s var(--ease-out) 0.35s;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; align-items: center; }
.guarantee-line {
  margin-top: 22px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-2);
}
.guarantee-line svg { width: 17px; height: 17px; flex: none; margin-top: 3px; color: var(--ochre); }

/* browser + phone composition */
.showcase { position: relative; padding-bottom: 26px; }
.browser {
  border-radius: var(--r-l);
  background: rgba(255, 255, 255, 0.6);
  padding: 7px;
  box-shadow: inset 0 0 0 1px rgba(23, 26, 24, 0.1), 0 40px 70px -40px rgba(23, 26, 24, 0.55),
    0 8px 20px -14px rgba(23, 26, 24, 0.3);
}
.browser-in { border-radius: calc(var(--r-l) - 6px); overflow: hidden; background: var(--card); box-shadow: inset 0 0 0 1px rgba(23,26,24,.07); }
.browser-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-bottom: 1px solid var(--line-2);
  background: rgba(250, 249, 246, 0.9);
}
.url {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: "Clash Display", sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-2);
  background: rgba(23, 26, 24, 0.05);
  border-radius: 999px;
  padding: 5px 12px;
}
.url svg { width: 11px; height: 11px; opacity: 0.55; }
.live {
  font-family: "Clash Display", sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 6px;
  flex: none;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #2f7d5f;
  box-shadow: 0 0 0 0 rgba(47, 125, 95, 0.5);
  animation: pulse 2.6s var(--ease) infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(47, 125, 95, 0.45); }
  70% { box-shadow: 0 0 0 7px rgba(47, 125, 95, 0); }
  100% { box-shadow: 0 0 0 0 rgba(47, 125, 95, 0); }
}
.phone {
  position: absolute;
  left: -50px;
  bottom: -32px;
  width: 23%;
  min-width: 116px;
  border-radius: 26px;
  background: #1b1e1c;
  padding: 6px;
  box-shadow: 0 30px 50px -28px rgba(23, 26, 24, 0.7), inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: rotate(-3deg);
}
.phone img { border-radius: 20px; }
.showcase-tag {
  position: absolute;
  right: 14px;
  bottom: -14px;
  background: var(--card);
  border-radius: 999px;
  padding: 8px 15px;
  font-family: "Clash Display", sans-serif;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-2);
  box-shadow: inset 0 0 0 1px var(--line), 0 12px 24px -16px rgba(23, 26, 24, 0.6);
}

/* ---------- stats band ---------- */
.band-forest { background: var(--forest); color: #f1efe9; }
.band-forest h2, .band-forest h3 { color: #f6f4ef; }
.band-forest .lede { color: rgba(241, 239, 233, 0.76); }
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--forest-line);
}
.stat { padding: 34px 26px 32px 0; border-right: 1px solid var(--forest-line); }
.stat:last-child { border-right: 0; }
.stat b {
  display: block;
  font-family: "Clash Display", sans-serif;
  font-weight: 600;
  font-size: clamp(38px, 4.4vw, 56px);
  letter-spacing: -0.035em;
  line-height: 1;
  color: #f6f4ef;
  font-variant-numeric: tabular-nums;
}
.stat p { margin: 12px 0 10px; font-size: 15.5px; color: rgba(241, 239, 233, 0.78); line-height: 1.45; max-width: 24ch; }

/* ---------- work grid ---------- */
.section-head { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.86fr); gap: 40px; align-items: end; margin-bottom: 54px; }
.work-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 26px 24px; }
.work-card {
  display: block;
  text-decoration: none;
  border-radius: var(--r-m);
  background: rgba(255, 255, 255, 0.5);
  padding: 6px;
  box-shadow: inset 0 0 0 1px rgba(23, 26, 24, 0.09), 0 1px 2px rgba(23, 26, 24, 0.03);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), background-color 0.5s var(--ease);
}
.work-card:hover, .work-card:focus-visible {
  transform: translateY(-3px);
  background: var(--card);
  box-shadow: inset 0 0 0 1px rgba(23, 26, 24, 0.14), 0 26px 42px -28px rgba(23, 26, 24, 0.55);
}
.frame {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: calc(var(--r-m) - 5px);
  background: var(--paper-2);
  box-shadow: inset 0 0 0 1px rgba(23, 26, 24, 0.07);
}
.frame img {
  width: 100%;
  height: auto;
  transform: translateY(0);
  transition: transform 0.85s var(--ease);
  will-change: transform;
}
.work-card:hover .frame img, .work-card:focus-visible .frame img {
  transform: translateY(-58.2%);
  transition: transform 3.4s cubic-bezier(0.3, 0.1, 0.2, 1);
}
.work-meta { display: flex; align-items: baseline; gap: 12px; padding: 14px 10px 10px; }
.work-meta h3 { font-size: 17px; font-weight: 600; letter-spacing: -0.018em; }
.work-meta .go {
  margin-left: auto;
  font-family: "Clash Display", sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.3s var(--ease);
  flex: none;
}
.work-card:hover .go { gap: 9px; }
.work-meta .go svg { width: 10px; height: 10px; }
.work-sub { padding: 0 10px 12px; font-size: 13.5px; color: var(--ink-3); line-height: 1.4; }
.work-foot { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 18px 32px; align-items: center; justify-content: space-between; }

/* ---------- reasons ---------- */
.reason { display: grid; grid-template-columns: 88px minmax(0, 1fr) minmax(0, 0.92fr); gap: clamp(24px, 4vw, 56px); align-items: start; padding-block: clamp(44px, 5vw, 68px); border-top: 1px solid var(--line); }
.reason .idx { font-family: "Clash Display", sans-serif; font-size: 14px; font-weight: 500; letter-spacing: 0.08em; color: var(--ochre); padding-top: 8px; }
.reason h3 { margin-bottom: 18px; }
.reason .facts { display: grid; gap: 14px; }
.fact {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: baseline;
  padding: 16px 18px;
  border-radius: var(--r-m);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 0 0 1px rgba(23, 26, 24, 0.08);
}
.fact b {
  font-family: "Clash Display", sans-serif;
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  line-height: 1;
}
.fact span { font-size: 15px; color: var(--ink-2); line-height: 1.45; }
.reason .we-do {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line-2);
  font-size: 15.5px;
  color: var(--ink-2);
}
.reason .we-do strong { font-weight: 600; color: var(--ink); }

/* ---------- steps ---------- */
.steps { border-top: 1px solid var(--forest-line); }
.step {
  display: grid;
  grid-template-columns: 74px minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 54px);
  padding: 34px 0;
  border-bottom: 1px solid var(--forest-line);
  align-items: baseline;
}
.step .n { font-family: "Clash Display", sans-serif; font-size: 13px; letter-spacing: 0.12em; color: rgba(241, 239, 233, 0.5); }
.step h3 { font-size: clamp(21px, 2.2vw, 27px); }
.step p { color: rgba(241, 239, 233, 0.74); font-size: 16px; margin: 0; }

/* ---------- pricing ---------- */
.promise {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 22px;
  padding: 22px 26px;
  border-radius: var(--r-m);
  background: var(--card);
  box-shadow: inset 0 0 0 1px var(--line);
  margin-bottom: 40px;
}
.promise .h-s { flex: 1 1 420px; }
.plans { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; align-items: start; }
.plan {
  border-radius: var(--r-l);
  background: rgba(255, 255, 255, 0.45);
  padding: 7px;
  box-shadow: inset 0 0 0 1px rgba(23, 26, 24, 0.1);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.plan:hover { transform: translateY(-2px); box-shadow: inset 0 0 0 1px rgba(23, 26, 24, 0.16), 0 22px 44px -30px rgba(23, 26, 24, 0.5); }
.plan-in {
  border-radius: calc(var(--r-l) - 6px);
  background: var(--card);
  padding: 28px 24px 26px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), inset 0 0 0 1px rgba(23, 26, 24, 0.05);
  height: 100%;
}
.plan.featured { background: var(--forest); box-shadow: inset 0 0 0 1px rgba(18,54,44,.9), 0 30px 60px -34px rgba(18, 54, 44, 0.75); }
.plan.featured .plan-in { background: var(--forest-2); color: #f1efe9; box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09), inset 0 0 0 1px rgba(241, 239, 233, 0.08); }
.plan.featured .plan-name, .plan.featured .price b, .plan.featured li { color: #f4f2ed; }
.plan.featured .plan-kicker, .plan.featured .price span, .plan.featured .plan-note { color: rgba(241, 239, 233, 0.66); }
.plan.featured li::before { background: var(--blue-light); }
.plan-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 4px; }
.plan-name { font-family: "Clash Display", sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; }
.tag {
  font-family: "Clash Display", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  flex: none;
}
.plan-kicker { font-size: 14.5px; color: var(--ink-3); font-style: italic; margin: 0 0 22px; }
.price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; }
.price b {
  font-family: "Clash Display", sans-serif;
  font-size: 44px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.price span { font-size: 14.5px; color: var(--ink-3); }
.price-sub { margin-top: 8px; font-size: 15.5px; color: var(--ink-2); }
.plan.featured .price-sub { color: rgba(241, 239, 233, 0.82); }
.plan hr { border: 0; border-top: 1px solid var(--line-2); margin: 22px 0 20px; }
.plan.featured hr { border-color: rgba(241, 239, 233, 0.14); }
.plan ul { list-style: none; margin: 0 0 24px; padding: 0; display: grid; gap: 11px; }
.plan li { position: relative; padding-left: 22px; font-size: 15px; line-height: 1.45; color: var(--ink-2); }
.plan li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--ochre);
  opacity: 0.9;
}
.plan li.inherits { padding-left: 0; font-family: "Clash Display", sans-serif; font-size: 12px; letter-spacing: 0.09em; text-transform: uppercase; color: var(--ink-3); }
.plan li.inherits::before { display: none; }
.plan .btn { width: 100%; justify-content: space-between; }
.plan-note { margin-top: 14px; font-size: 12.5px; color: var(--ink-3); }

.pay-options { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; margin-top: 26px; }
.pay {
  padding: 20px 22px;
  border-radius: var(--r-m);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 0 0 1px rgba(23, 26, 24, 0.08);
}
.pay h4 { font-size: 15px; margin-bottom: 8px; letter-spacing: -0.012em; }
.pay p { font-size: 14.5px; color: var(--ink-2); margin: 0; }
.pay .row { display: flex; justify-content: space-between; font-size: 14.5px; color: var(--ink-2); padding: 4px 0; border-bottom: 1px dotted var(--line); }
.pay .row:last-child { border-bottom: 0; }
.pay .row b { font-family: "Clash Display", sans-serif; font-weight: 500; font-variant-numeric: tabular-nums; color: var(--ink); }

/* ---------- comparison ---------- */
.compare { display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: clamp(28px, 5vw, 64px); align-items: start; }
.tbl { width: 100%; border-collapse: collapse; font-size: 15px; }
.tbl caption { text-align: left; font-family: "Clash Display", sans-serif; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); padding-bottom: 14px; }
.tbl th, .tbl td { text-align: left; padding: 12px 8px; border-bottom: 1px solid var(--line-2); }
.tbl th { font-family: "Clash Display", sans-serif; font-weight: 500; font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3); }
.tbl td:last-child, .tbl th:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.tbl td.name { color: var(--ink); }
.tbl tr.ours td { border-bottom: 0; padding-top: 16px; color: var(--ink); font-weight: 500; }
.tbl tr.ours { background: rgba(31, 78, 216, 0.06); }
.tbl tr.ours td:first-child { border-radius: 8px 0 0 8px; }
.tbl tr.ours td:last-child { border-radius: 0 8px 8px 0; }

/* ---------- faq ---------- */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 46px 24px 0;
  position: relative;
  font-family: "Clash Display", sans-serif;
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
  letter-spacing: -0.018em;
  transition: color 0.3s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--blue); }
.faq summary::after,
.faq summary::before {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 14px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.45s var(--ease), opacity 0.3s var(--ease);
}
.faq summary::before { transform: rotate(90deg); }
.faq details[open] summary::before { transform: rotate(0deg); opacity: 0; }
.faq .answer { padding: 0 12% 26px 0; color: var(--ink-2); font-size: 16.5px; }
.faq details[open] .answer { animation: fadeUp 0.5s var(--ease-out); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: clamp(32px, 5vw, 68px); align-items: start; }
.form-shell { border-radius: var(--r-l); background: rgba(241, 239, 233, 0.08); padding: 8px; box-shadow: inset 0 0 0 1px rgba(241, 239, 233, 0.14); }
.form-in { border-radius: calc(var(--r-l) - 6px); background: var(--card); padding: clamp(22px, 3vw, 32px); }
.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-family: "Clash Display", sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 7px;
}
.field input, .field textarea {
  width: 100%;
  font-family: "Sentient", Georgia, serif;
  font-size: 16.5px;
  color: var(--ink);
  background: rgba(23, 26, 24, 0.035);
  border: 0;
  border-radius: var(--r-s);
  padding: 13px 14px;
  box-shadow: inset 0 0 0 1px rgba(23, 26, 24, 0.1);
  transition: box-shadow 0.3s var(--ease), background-color 0.3s var(--ease);
}
.field input:hover, .field textarea:hover { background: rgba(23, 26, 24, 0.05); }
.field input:focus, .field textarea:focus {
  outline: none;
  background: #fff;
  box-shadow: inset 0 0 0 1.5px var(--blue), 0 0 0 3px rgba(31, 78, 216, 0.14);
}
.field textarea { min-height: 116px; resize: vertical; line-height: 1.5; }
.field.has-error input, .field.has-error textarea { box-shadow: inset 0 0 0 1.5px #b3372a; }
.err { display: none; font-size: 13px; color: #b3372a; margin-top: 6px; }
.field.has-error .err { display: block; }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.form-foot { display: flex; flex-wrap: wrap; gap: 14px 20px; align-items: center; margin-top: 6px; }
.contact-list { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.contact-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 15.5px; color: rgba(241, 239, 233, 0.8); }
.contact-list svg { width: 16px; height: 16px; flex: none; margin-top: 4px; color: var(--blue-light); }
.contact-list a { color: #f4f2ed; text-decoration-color: rgba(241, 239, 233, 0.4); text-underline-offset: 3px; }

/* ---------- footer ---------- */
.site-foot { background: var(--forest-2); color: rgba(241, 239, 233, 0.7); padding: 48px 0 40px; }
.foot-grid { display: flex; flex-wrap: wrap; gap: 22px 40px; align-items: flex-start; justify-content: space-between; }
.foot-brand { display: flex; align-items: center; gap: 11px; }
.foot-brand svg { width: 16px; height: 21px; }
.foot-brand b { font-family: "Clash Display", sans-serif; font-size: 15px; font-weight: 600; color: #f4f2ed; letter-spacing: -0.015em; }
.site-foot a { color: #f4f2ed; text-decoration-color: rgba(241, 239, 233, 0.35); text-underline-offset: 3px; }
.foot-note { font-size: 13px; color: rgba(241, 239, 233, 0.48); margin-top: 30px; padding-top: 22px; border-top: 1px solid rgba(241, 239, 233, 0.12); display: flex; flex-wrap: wrap; gap: 8px 26px; justify-content: space-between; }

/* ---------- reveal ---------- */
.rv { opacity: 0; transform: translateY(22px); filter: blur(6px); }
.rv.in {
  opacity: 1;
  transform: none;
  filter: none;
  transition: opacity 0.8s var(--ease-out) calc(var(--d, 0) * 1ms),
    transform 0.9s var(--ease-out) calc(var(--d, 0) * 1ms),
    filter 0.8s var(--ease-out) calc(var(--d, 0) * 1ms);
}

/* ---------- thanks page ---------- */
.thanks-wrap { min-height: 100dvh; display: grid; place-items: center; padding: 120px 20px 60px; text-align: left; }
.thanks-card { max-width: 620px; }
.thanks-card .h-l { margin-bottom: 20px; }

/* ==========================================================================
   Personaliser — the cog, the sheet, and the personalised states
   ========================================================================== */

.cog {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(241, 239, 233, 0.9);
  color: var(--ink-2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: inset 0 0 0 1px rgba(23, 26, 24, 0.12), 0 6px 18px -12px rgba(23, 26, 24, 0.6);
  display: grid;
  place-items: center;
  cursor: pointer;
  opacity: 0.35;
  transition: opacity 0.35s var(--ease), transform 0.4s var(--ease), box-shadow 0.35s var(--ease);
}
.cog svg { width: 19px; height: 19px; display: block; }
.cog:hover, .cog:focus-visible { opacity: 1; transform: translateY(-1px); box-shadow: inset 0 0 0 1px rgba(23, 26, 24, 0.2), 0 12px 26px -14px rgba(23, 26, 24, 0.7); }
.cog.is-set { opacity: 0.9; color: var(--blue); box-shadow: inset 0 0 0 1px rgba(31, 78, 216, 0.35), 0 8px 22px -14px rgba(31, 78, 216, 0.7); }
.cog[aria-expanded="true"] svg { transform: rotate(45deg); transition: transform 0.5s var(--ease); }

.sheet-back {
  position: fixed;
  inset: 0;
  z-index: 74;
  background: rgba(23, 26, 24, 0.34);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.sheet-back.is-open { opacity: 1; }

.sheet {
  position: fixed;
  z-index: 75;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 84dvh;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border-radius: 20px 20px 0 0;
  box-shadow: inset 0 0 0 1px rgba(23, 26, 24, 0.1), 0 -20px 60px -30px rgba(23, 26, 24, 0.7);
  transform: translateY(100%);
  transition: transform 0.42s var(--ease-out);
}
.sheet.is-open { transform: none; }
/* the hidden attribute has to beat the display above, or the closed sheet
   still occupies the layout and shows up below the fold */
.sheet[hidden], .sheet-back[hidden] { display: none; }
.sheet-head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 20px 12px;
}
.sheet-kicker {
  font-family: "Clash Display", sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--ochre);
  margin: 0 0 6px;
}
.sheet-head .h-s { margin: 0; }
.sheet-x {
  margin-left: auto;
  width: 34px;
  height: 34px;
  flex: none;
  border: 0;
  border-radius: 999px;
  background: rgba(23, 26, 24, 0.06);
  color: var(--ink-2);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background-color 0.3s var(--ease);
}
.sheet-x:hover { background: rgba(23, 26, 24, 0.12); }
.sheet-x svg { width: 15px; height: 15px; }

.sheet-search {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 20px 8px;
  padding: 11px 14px;
  border-radius: var(--r-s);
  background: rgba(23, 26, 24, 0.045);
  box-shadow: inset 0 0 0 1px rgba(23, 26, 24, 0.1);
  transition: box-shadow 0.3s var(--ease), background-color 0.3s var(--ease);
}
.sheet-search:focus-within { background: #fff; box-shadow: inset 0 0 0 1.5px var(--blue), 0 0 0 3px rgba(31, 78, 216, 0.14); }
.sheet-search svg { width: 15px; height: 15px; flex: none; color: var(--ink-3); }
.sheet-search input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: none;
  font-family: "Sentient", Georgia, serif;
  font-size: 16px;
  color: var(--ink);
}
.sheet-search input::-webkit-search-cancel-button { -webkit-appearance: none; }

.sheet-list {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 6px 12px calc(18px + env(safe-area-inset-bottom, 0px));
}
.sheet-group {
  font-family: "Clash Display", sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 16px 8px 8px;
  position: sticky;
  top: 0;
  background: linear-gradient(var(--card) 72%, rgba(251, 250, 247, 0));
}
.sheet-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  padding: 11px 12px;
  border: 0;
  border-radius: var(--r-s);
  background: none;
  cursor: pointer;
  font-family: "Sentient", Georgia, serif;
  color: var(--ink);
  transition: background-color 0.25s var(--ease);
}
.sheet-item:hover { background: rgba(23, 26, 24, 0.05); }
.sheet-item .si-txt { min-width: 0; }
.sheet-item b {
  font-family: "Clash Display", sans-serif;
  font-weight: 500;
  font-size: 15.5px;
  letter-spacing: -0.012em;
  color: var(--ink);
  display: block;
}
.sheet-item .si-sub { display: block; font-size: 13px; color: var(--ink-3); line-height: 1.35; margin-top: 1px; }
.sheet-item .rate {
  margin-left: auto;
  flex: none;
  font-family: "Clash Display", sans-serif;
  font-size: 12.5px;
  font-variant-numeric: tabular-nums;
  color: var(--ink-3);
}
.sheet-item.is-on { background: rgba(31, 78, 216, 0.08); }
.sheet-item.is-on b { color: var(--blue); }
.sheet-item.is-on .rate { color: var(--blue); }
.sheet-item.generic { box-shadow: inset 0 0 0 1px var(--line); margin: 2px 0 4px; }
.sheet-empty { padding: 22px 12px; color: var(--ink-3); font-size: 15px; }

@media (min-width: 700px) {
  .sheet {
    left: auto;
    right: 16px;
    bottom: 68px;
    width: 420px;
    border-radius: var(--r-l);
    max-height: min(76dvh, 640px);
    transform: translateY(14px) scale(0.98);
    opacity: 0;
    transition: transform 0.42s var(--ease-out), opacity 0.3s var(--ease);
  }
  .sheet.is-open { transform: none; opacity: 1; }
}

/* the selected business, promoted in the grid */
.work-card.is-yours {
  background: var(--card);
  box-shadow: inset 0 0 0 2px var(--blue), 0 26px 46px -30px rgba(31, 78, 216, 0.5);
}
.work-card.is-yours .frame { box-shadow: inset 0 0 0 1px rgba(31, 78, 216, 0.28); }
.yours-flag {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 2;
  font-family: "Clash Display", sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #fff;
  background: var(--blue);
  padding: 6px 11px;
  border-radius: 999px;
  box-shadow: 0 8px 20px -10px rgba(31, 78, 216, 0.9);
}

/* when the page is personalised the frame shows only that business:
   the second device would be another business's site, which reads as a mistake */
.showcase.is-personal .phone { display: none; }

/* the personalised hero shot keeps the browser frame's proportions */
#heroShot.is-swapped { aspect-ratio: 900 / 620; object-fit: cover; object-position: top center; }

/* the recommendation line inside the featured plan */
.plan-rec {
  margin: 0 0 20px;
  padding: 12px 14px;
  border-radius: var(--r-s);
  background: rgba(147, 174, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(147, 174, 255, 0.28);
  font-size: 14.5px;
  line-height: 1.45;
  color: #f1efe9;
}
.plan-rec strong { color: #fff; }
.plan-rec span { display: block; color: var(--blue-light); font-size: 13.5px; margin-top: 3px; }

@media (prefers-reduced-motion: reduce) {
  .sheet { transition: none; }
  .cog[aria-expanded="true"] svg { transform: none; }
}

/* ---------- responsive ---------- */
@media (min-width: 1081px) {
  .plan.featured { margin-top: -22px; }
  .plan.featured .plan-in { padding-top: 36px; padding-bottom: 34px; }
}
@media (max-width: 1080px) {
  .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .plans { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .plan.featured { order: -1; }
  .pay-options { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 940px) {
  .nav, .head-cta { display: none; }
  .burger { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .showcase { margin-top: 10px; }
  .section-head { grid-template-columns: 1fr; gap: 22px; align-items: start; }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat { border-right: 0; padding: 26px 20px 24px 0; border-bottom: 1px solid var(--forest-line); }
  .stat:nth-child(odd) { border-right: 1px solid var(--forest-line); padding-right: 22px; }
  .reason { grid-template-columns: 1fr; gap: 22px; }
  .reason .idx { padding-top: 0; }
  .step { grid-template-columns: 1fr; gap: 10px; padding: 26px 0; }
}
@media (max-width: 620px) {
  body { font-size: 17px; }
  .shell, .shell-narrow { width: min(100% - 32px, var(--shell)); }
  .work-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero { padding-top: 108px; }
  .hero-cta .btn { width: 100%; justify-content: space-between; }
  .hero-cta .btn-ghost { justify-content: center; }
  .phone { width: 30%; left: -10px; bottom: -14px; }
  .showcase-tag { right: 8px; font-size: 10.5px; padding: 7px 12px; }
  .two { grid-template-columns: 1fr; }
  .promise { padding: 20px; }
  .faq .answer { padding-right: 0; }
  .foot-note { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .rv { opacity: 1; transform: none; filter: none; }
  .work-card:hover .frame img, .work-card:focus-visible .frame img { transform: none; }
  .hero h1 em::after { transform: scaleX(1); }
}
