/* =========================================================
   digidesign — styles.css
   Single static stylesheet. No build step, no dependencies.
   Sections:
     1. Tokens & reset
     2. Base typography
     3. Background mesh + motion primitives
     4. Layout helpers, buttons, cards
     5. Header
     6. Hero
     7. Process
     8. Portfolio (browser mockups)
     9. Packages
    10. Contact + form
    11. Footer
    12. Responsive
    13. Reduced motion / print
   ========================================================= */

/* ---------- 1. Tokens & reset ---------- */
:root {
  /* Brand: one gradient direction used everywhere — blue (start) to teal (end) */
  --blue-700: #1d4ed8;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --teal-700: #0f766e;
  --teal-600: #0d9488;
  --teal-400: #2dd4bf;
  --grad: linear-gradient(120deg, var(--blue-700) 0%, #1568a8 52%, var(--teal-700) 100%);
  --grad-soft: linear-gradient(120deg, var(--blue-500) 0%, var(--teal-400) 100%);

  /* Ink & surfaces */
  --ink: #0d1b2a;          /* headings — 16.4:1 on white */
  --ink-2: #3f5168;        /* body       — 7.6:1 on white */
  --ink-3: #5a6b81;        /* meta       — 5.2:1 on white */
  --line: #e2e9f2;
  --surface: #ffffff;
  --surface-2: #f4f8fc;
  --page: #f6f9fc;

  /* Shape & depth */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 22px;
  --r-xl: 30px;
  --shadow-sm: 0 1px 2px rgba(15, 43, 70, .05), 0 4px 12px rgba(15, 43, 70, .05);
  --shadow-md: 0 2px 4px rgba(15, 43, 70, .04), 0 12px 28px rgba(15, 43, 70, .08);
  --shadow-lg: 0 4px 8px rgba(15, 43, 70, .04), 0 24px 56px rgba(15, 43, 70, .11);

  /* Rhythm */
  --wrap: 1140px;
  --gutter: clamp(20px, 5vw, 40px);
  --section-y: clamp(72px, 11vw, 140px);

  --font: "Inter", "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI",
          Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;

  --ease: cubic-bezier(.22, .8, .3, 1);
}

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

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

/* Anchor jumps clear the fixed-ish header */
html:focus-within { scroll-behavior: smooth; }
[id] { scroll-margin-top: 88px; }

body {
  margin: 0;
  background: var(--page);
  color: var(--ink-2);
  font-family: var(--font);
  font-size: clamp(16px, .55vw + 15px, 17.5px);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* ---------- 2. Base typography ---------- */
h1, h2, h3 {
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -.022em;
  margin: 0;
  font-weight: 700;
}

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

a { color: var(--blue-700); }

/* Visible, consistent keyboard focus everywhere */
:where(a, button, input, textarea, [tabindex]):focus-visible {
  outline: 3px solid var(--blue-600);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  text-decoration: none;
  font-weight: 600;
  transition: transform .18s var(--ease);
}
.skip-link:focus-visible { transform: translate(-50%, 0); }

.eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: #0c6259;              /* darkened so it clears AA over the blue tint too */
  margin: 0 0 14px;
}

/* ---------- 3. Background mesh + motion primitives ---------- */
.mesh {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
  background: var(--page);
}

/* Each blob is a single radial gradient that fades to fully transparent —
   soft by construction, so no blur filter is needed anywhere. */
.mesh__blob {
  position: absolute;
  display: block;
  border-radius: 50%;
  /* --p (px) is the scroll parallax offset, written by script.js */
  transform: translate3d(0, var(--p, 0px), 0);
  will-change: transform;
  animation: drift 26s var(--ease) infinite alternate;
}
.mesh__blob--1 {
  width: 78vmax; height: 62vmax;
  top: -26vmax; left: -22vmax;
  background: radial-gradient(closest-side, rgba(96, 165, 250, .58), rgba(96, 165, 250, 0));
}
.mesh__blob--2 {
  width: 66vmax; height: 60vmax;
  top: -10vmax; right: -20vmax;
  background: radial-gradient(closest-side, rgba(45, 212, 191, .48), rgba(45, 212, 191, 0));
  animation-duration: 33s; animation-delay: -6s;
}
.mesh__blob--3 {
  width: 80vmax; height: 58vmax;
  bottom: -22vmax; left: 8vmax;
  background: radial-gradient(closest-side, rgba(59, 130, 246, .40), rgba(59, 130, 246, 0));
  animation-duration: 29s; animation-delay: -13s;
}
.mesh__blob--4 {
  width: 54vmax; height: 50vmax;
  bottom: -16vmax; right: -8vmax;
  background: radial-gradient(closest-side, rgba(34, 211, 238, .38), rgba(34, 211, 238, 0));
  animation-duration: 37s; animation-delay: -4s;
}

/* Keeps the middle of the page airy so text always sits on near-white */
.mesh__veil {
  position: absolute;
  inset: 0;
  display: block;
  background:
    radial-gradient(90% 55% at 50% 42%, rgba(255, 255, 255, .92) 0%, rgba(255, 255, 255, 0) 70%),
    linear-gradient(180deg, rgba(255, 255, 255, .35) 0%, rgba(255, 255, 255, 0) 30%);
}

@keyframes drift {
  from { translate: 0 0;        scale: 1; }
  to   { translate: 3vmax -2vmax; scale: 1.09; }
}

/* Scroll reveal — .is-in is set by IntersectionObserver in script.js.
   Gated behind html.js so content is never hidden when JS is off. */
.reveal { transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
}
.js .reveal--delay   { transition-delay: .11s; }
.js .reveal--delay-2 { transition-delay: .22s; }
.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- 4. Layout, buttons, cards ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }

.section__head { max-width: 660px; margin-bottom: clamp(38px, 5vw, 60px); }
.section__title { font-size: clamp(1.85rem, 3.6vw, 2.7rem); }
.section__lead {
  margin-top: 18px;
  font-size: clamp(1rem, .5vw + .92rem, 1.14rem);
  color: var(--ink-2);
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
}

.btn {
  --btn-bg: var(--surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  min-height: 48px;                 /* comfortable touch target */
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: .98rem;
  font-weight: 600;
  letter-spacing: -.005em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease),
              background-color .2s var(--ease), border-color .2s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 6px 16px rgba(21, 76, 150, .28);
}
.btn--primary:hover { box-shadow: 0 12px 26px rgba(21, 76, 150, .34); }

.btn--quiet {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn--quiet:hover { border-color: #c9d8ea; }

.btn--ghost {
  background: rgba(255, 255, 255, .7);
  color: var(--ink);
  border-color: var(--line);
  padding: 10px 20px;
  min-height: 42px;
  font-size: .92rem;
}
.btn--ghost:hover { background: #fff; border-color: #c9d8ea; }

.btn--block { width: 100%; }

/* ---------- 5. Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding-block: 14px;
  /* Transparent at rest so it never draws a band across the gradient;
     the frosted panel only appears once the page has scrolled. */
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: rgba(226, 233, 242, .9);
  background: rgba(250, 252, 254, .82);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  font-size: 1.42rem;
  font-weight: 800;
  letter-spacing: -.045em;
  text-decoration: none;
  line-height: 1;
}
.wordmark__a { color: var(--ink); }
.wordmark__b {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  /* Fallback if background-clip:text is unsupported */
  -webkit-text-fill-color: transparent;
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .wordmark__b { color: var(--teal-700); -webkit-text-fill-color: currentColor; }
}
.wordmark--sm { font-size: 1.22rem; }

/* ---------- 6. Hero ---------- */
.hero { padding-block: clamp(48px, 8vw, 104px) clamp(56px, 8vw, 112px); }

.hero__grid {
  display: grid;
  gap: clamp(36px, 5vw, 56px);
  align-items: center;
}

.hero__title {
  font-size: clamp(2.15rem, 5.6vw, 3.75rem);
  letter-spacing: -.032em;
  max-width: 15ch;
}
.hero__lead {
  margin-top: 22px;
  font-size: clamp(1.04rem, .6vw + .95rem, 1.22rem);
  max-width: 48ch;
  color: var(--ink-2);
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.hero__points {
  list-style: none;
  margin: 34px 0 0;
  padding: 0;
  display: grid;
  gap: 11px;
  font-size: .97rem;
  color: var(--ink-3);
}
.hero__points li {
  position: relative;
  padding-left: 28px;
}
.hero__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .42em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--grad-soft);
  box-shadow: inset 0 0 0 4px #fff, 0 0 0 1px rgba(21, 76, 150, .18);
}

.hero__art {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 460px;
  /* room for the card and accents that hang outside the photo */
  padding: 0 0 clamp(28px, 5vw, 42px) clamp(14px, 3vw, 26px);
}

.hero__photo { margin: 0; position: relative; }
.hero__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg);
  background: var(--surface-2);        /* placeholder tone while decoding */
}
/* Whisper of the brand gradient over the photo so it sits in the palette.
   Kept very low so the photo still reads as a real photo. */
.hero__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  background: linear-gradient(150deg, rgba(29, 78, 216, .14) 0%, rgba(15, 118, 110, .12) 100%);
  pointer-events: none;
}

.hero__card {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 62%;
  max-width: 268px;
  height: auto;
  overflow: visible;
  animation: float 8s var(--ease) infinite alternate;
}

.hero__accent { position: absolute; display: block; border-radius: 50%; }
.hero__accent--ring {
  width: 44px; height: 44px;
  top: 6%; right: -12px;
  border: 6px solid transparent;
  background: var(--grad-soft) border-box;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  animation: float 6.5s var(--ease) -1s infinite alternate;
}
.hero__accent--dot {
  width: 16px; height: 16px;
  bottom: 14%; right: 4%;
  background: var(--teal-400);
  animation: float 5.5s var(--ease) -2.5s infinite alternate;
}

@keyframes float { from { translate: 0 0; } to { translate: 0 -14px; } }

/* ---------- 7. Process ---------- */
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(16px, 2vw, 24px);
}
.step { padding: clamp(26px, 3vw, 34px); }
.step__num {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: 1.02rem;
  margin-bottom: 20px;
  box-shadow: 0 6px 14px rgba(21, 76, 150, .25);
}
.step__title { font-size: 1.2rem; margin-bottom: 10px; }
.step__text { color: var(--ink-2); font-size: .99rem; }

/* ---------- 8. Portfolio ---------- */
.work__grid {
  display: grid;
  gap: clamp(26px, 3.4vw, 42px);
}

.shot { margin: 0; }

.browser {
  border-radius: var(--r-md);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.shot:hover .browser { transform: translateY(-5px); }

.browser__bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: #eef3f9;
  border-bottom: 1px solid #e3ebf4;
}
.browser__dot { width: 9px; height: 9px; border-radius: 50%; background: #cdd8e5; }
.browser__dot:nth-child(1) { background: #ffbdb6; }
.browser__dot:nth-child(2) { background: #ffe0a3; }
.browser__dot:nth-child(3) { background: #bde7c4; }
.browser__url {
  flex: 1;
  margin-left: 8px;
  background: #fff;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: .72rem;
  color: #64748b;
  letter-spacing: -.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* --- Mockup engine ---------------------------------------------------
   Every dimension inside a mockup is in `em`, so the whole fake website
   scales proportionally with one font-size on .mock. -------------------- */
.mock {
  font-size: clamp(8px, 1.05vw, 11.5px);
  aspect-ratio: 16 / 11;
  display: flex;
  flex-direction: column;
  padding: 2.4em 2.6em;
  overflow: hidden;
  line-height: 1.45;
}
.mock__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  margin-bottom: 2.4em;
}
.mock__brand { font-size: 1.15em; font-weight: 700; letter-spacing: -.02em; }
.mock__links { display: flex; align-items: center; gap: .85em; }
.mock__links i { display: block; width: 3.1em; height: .55em; border-radius: .3em; background: currentColor; opacity: .3; }
.mock__pill { display: block; width: 5em; height: 1.9em; border-radius: 1em; background: currentColor; opacity: .9; }
.mock__body { flex: 1; display: flex; gap: 2em; align-items: center; }
.mock__text { flex: 1; min-width: 0; }
.mock__kicker { margin: 0 0 .9em; font-size: .78em; letter-spacing: .14em; text-transform: uppercase; opacity: .7; }
.mock__h { font-size: 2.35em; line-height: 1.08; letter-spacing: -.025em; margin: 0 0 .55em; color: inherit; }
.mock__p { font-size: .96em; margin: 0 0 1.5em; opacity: .8; max-width: 26em; }
.mock__btns { display: flex; align-items: center; gap: .9em; }
.mock__btns b, .mock__btns em {
  display: inline-block;
  font-style: normal;
  font-weight: 600;
  font-size: .88em;
  padding: .85em 1.5em;
  border-radius: 2em;
  white-space: nowrap;
}

/* 8.1 Cafe — deep green, cream serif, photo block */
.mock--cafe {
  background: #123528;
  color: #f3ece0;
  font-family: var(--font);
}
.mock--cafe .mock__brand { font-family: Georgia, "Times New Roman", serif; letter-spacing: .04em; }
.mock--cafe .mock__h {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  color: #f7f1e6;
  letter-spacing: -.01em;
}
.mock--cafe .mock__kicker { color: #c9a86a; opacity: 1; }
.mock--cafe .mock__btns b { background: #d8b479; color: #10281f; }
.mock--cafe .mock__btns em { border: 1px solid rgba(243,236,224,.42); color: #f3ece0; }
/* Photo panel inside a mockup — fills its slot at any frame size */
.mock__img {
  width: 34%;
  flex: none;
  align-self: stretch;
  border-radius: 1em;
  overflow: hidden;
  background: rgba(0, 0, 0, .12);      /* holds the shape while the photo decodes */
}
.mock__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 8.2 Salon — blush, airy, wide-tracked type */
.mock--salon {
  background: linear-gradient(150deg, #fdf3f1 0%, #f7ecf3 100%);
  color: #3a2b33;
}
.mock--salon .mock__brand { letter-spacing: .38em; font-weight: 500; font-size: 1em; }
.mock--salon .mock__h {
  font-weight: 300;
  font-size: 2.1em;
  letter-spacing: -.01em;
  color: #2f2229;
}
.mock--salon .mock__p { max-width: 20em; }
.mock--salon .mock__btns b { background: #2f2229; color: #fdf3f1; border-radius: 0; padding: 1em 1.8em; letter-spacing: .1em; font-size: .78em; text-transform: uppercase; }
.mock__card {
  width: 38%;
  flex: none;
  align-self: center;          /* height follows its rows, never a hollow box */
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(58, 43, 51, .1);
  border-radius: .9em;
  padding: 1.5em;
  display: flex;
  flex-direction: column;
  gap: .95em;
}
.mock__card .mock__kicker { margin-bottom: .3em; font-size: .7em; }
.mock__row { display: flex; align-items: center; justify-content: space-between; gap: 1em; }
.mock__row i { display: block; height: .5em; width: 55%; border-radius: .25em; background: #3a2b33; opacity: .28; }
.mock__row em { display: block; height: .5em; width: 18%; border-radius: .25em; background: #b98da4; opacity: .8; }

/* 8.3 Corporate — white, navy, credential cards */
.mock--corp {
  background: #ffffff;
  color: #16233c;
}
.mock--corp .mock__brand { font-size: .95em; letter-spacing: .16em; font-weight: 700; color: #16233c; }
.mock--corp .mock__pill { background: #16345e; opacity: 1; }
.mock--corp .mock__kicker { color: #4a739f; opacity: 1; }
.mock--corp .mock__h { font-size: 1.95em; max-width: 15em; color: #16233c; }
.mock--corp .mock__p { color: #4c5d75; max-width: 30em; }
.mock--corp .mock__btns b { background: #16345e; color: #fff; }
.mock--corp .mock__btns em { color: #16345e; border: 1px solid #ccd8e6; }
.mock--corp .mock__body { align-items: flex-start; }
.mock__stats { display: flex; gap: .9em; margin-top: 1.6em; }
.mock__stat {
  flex: 1;
  background: #f2f6fb;
  border: 1px solid #e2eaf4;
  border-radius: .7em;
  padding: 1em;
  display: flex;
  flex-direction: column;
  gap: .6em;
}
.mock__stat i { display: block; height: .95em; width: 45%; border-radius: .3em; background: #16345e; opacity: .85; }
.mock__stat em { display: block; height: .5em; width: 80%; border-radius: .25em; background: #16345e; opacity: .22; }

/* 8.4 Consultancy — dark navy, bold, data panel */
.mock--dark {
  background: radial-gradient(120% 130% at 12% 0%, #1b3a63 0%, #0c1a2e 62%);
  color: #dce7f5;
}
.mock--dark .mock__brand { color: #fff; letter-spacing: -.03em; font-size: 1.2em; }
.mock--dark .mock__pill { background: #2dd4bf; opacity: 1; }
.mock--dark .mock__kicker { color: #5eead4; opacity: 1; }
.mock--dark .mock__h { color: #fff; font-size: 2.2em; font-weight: 800; max-width: 12em; }
.mock--dark .mock__p { color: #a9bed6; }
.mock--dark .mock__btns b { background: #2dd4bf; color: #06231f; }
.mock__panel {
  width: 32%;
  flex: none;
  align-self: stretch;
  margin-top: .5em;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: .9em;
  padding: 1.4em;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: .6em;
}
.mock__bar {
  flex: 1;
  height: var(--h);
  border-radius: .3em .3em .12em .12em;
  background: linear-gradient(180deg, #5eead4 0%, #3b82f6 100%);
  opacity: .9;
}

/* Captions */
.shot__cap { padding: 22px 4px 0; }
.shot__name { font-size: 1.14rem; margin-bottom: 8px; }
.shot__desc { color: var(--ink-2); font-size: .96rem; margin-bottom: 12px; }
.shot__tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; }
.shot__tags span {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--teal-700);
  background: #e7f4f3;
  border: 1px solid #cfe9e6;
  border-radius: 999px;
  padding: 4px 11px;
}
.work__note {
  margin-top: clamp(28px, 4vw, 44px);
  font-size: .92rem;
  color: var(--ink-3);
  text-align: center;
}

/* ---------- 9. Packages ---------- */
.tiers {
  display: grid;
  gap: clamp(18px, 2.4vw, 28px);
  align-items: start;
}
.tier { padding: clamp(28px, 3.4vw, 42px); }
.tier--feature {
  position: relative;
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--grad-soft) border-box;
  border: 2px solid transparent;
}
.tier__head { margin-bottom: 18px; }
.tier__badge {
  display: inline-block;
  margin: 0 0 12px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--grad);
  border-radius: 999px;
  padding: 5px 13px;
}
.tier__name { font-size: 1.6rem; letter-spacing: -.03em; }
.tier__for { margin: 8px 0 0; font-size: .93rem; color: var(--ink-3); }
.tier__desc { color: var(--ink-2); font-size: .99rem; margin-bottom: 24px; }
.tier__list { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.tier__list li {
  position: relative;
  padding-left: 32px;
  font-size: .97rem;
  color: var(--ink-2);
}
.tier__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .34em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #e7f4f3;
  border: 1px solid #cfe9e6;
}
.tier__list li::after {
  content: "";
  position: absolute;
  left: 6.5px;
  top: .72em;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--teal-700);
  border-bottom: 2px solid var(--teal-700);
  transform: rotate(-45deg);
}

.pricing-note {
  margin-top: clamp(22px, 3vw, 34px);
  padding: clamp(28px, 3.4vw, 42px);
  text-align: center;
  background:
    radial-gradient(120% 160% at 50% 0%, #f2f8ff 0%, #ffffff 60%);
}
.pricing-note__title { font-size: clamp(1.15rem, 2.2vw, 1.42rem); margin-bottom: 14px; }
.pricing-note p {
  max-width: 62ch;
  margin-inline: auto;
  color: var(--ink-2);
  font-size: 1rem;
}
.pricing-note strong { color: var(--ink); }
.pricing-note .btn { margin-top: 26px; }

/* ---------- 10. Contact ---------- */
.contact__grid {
  display: grid;
  gap: clamp(34px, 4.5vw, 60px);
  align-items: start;
}

.contact__email {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 32px;
  padding: 16px 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  max-width: 100%;
}
.contact__email:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.contact__email-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.contact__email-value {
  font-size: clamp(1.02rem, 2.2vw, 1.2rem);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.02em;
  overflow-wrap: anywhere;
}

.socials { display: flex; gap: 12px; list-style: none; margin: 26px 0 0; padding: 0; }
.social {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
}
.social svg { width: 21px; height: 21px; }
.social:hover { transform: translateY(-2px); color: var(--teal-700); border-color: #cfe9e6; }

.contact__form-wrap { padding: clamp(24px, 3.2vw, 38px); }
.form { display: grid; gap: 18px; }
.field { display: grid; gap: 7px; }
.field label {
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
}
.field__opt { font-weight: 400; color: var(--ink-3); }
.field input,
.field textarea {
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 13px 15px;
  width: 100%;
  transition: border-color .2s var(--ease), background-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; line-height: 1.55; }
.field input::placeholder,
.field textarea::placeholder { color: #6e7d92; }
.field input:hover, .field textarea:hover { border-color: #cdd9e8; }
.field input:focus, .field textarea:focus {
  outline: none;
  background: #fff;
  border-color: var(--blue-600);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, .14);
}
.field input:focus-visible, .field textarea:focus-visible { outline: none; }

.form__note {
  font-size: .84rem;
  color: var(--ink-3);
  margin: 0;
  text-align: center;
}
.form__status {
  margin: 0;
  font-size: .9rem;
  font-weight: 600;
  color: var(--teal-700);
  text-align: center;
  min-height: 0;
}
.form__status:empty { display: none; }

/* ---------- 11. Footer ---------- */
.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, .6);
  padding-block: 40px 32px;
  margin-top: clamp(30px, 6vw, 60px);
}
.site-footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px 28px;
}
.site-footer__nav { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.site-footer__nav a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: .93rem;
  font-weight: 500;
}
.site-footer__nav a:hover { color: var(--blue-700); text-decoration: underline; }
.site-footer__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .93rem;
  color: var(--ink-3);
  margin: 0;
}
.site-footer__meta a { color: var(--ink-2); text-decoration: none; }
.site-footer__meta a:hover { color: var(--blue-700); text-decoration: underline; }
.site-footer__legal {
  max-width: var(--wrap);
  margin: 26px auto 0;
  padding-inline: var(--gutter);
  font-size: .8rem;
  color: var(--ink-3);
}

/* ---------- 12. Responsive ---------- */
@media (max-width: 719px) {
  /* A full-width card is narrower in em terms than a half-width one, so the
     mockups get a slightly taller frame and a smaller base to avoid clipping */
  .mock {
    font-size: clamp(7.5px, 2.25vw, 11.5px);
    aspect-ratio: 16 / 12.5;
    padding: 2em 2.1em;
  }
  .mock__h { font-size: 2em; }
  .site-header__cta { display: none; }        /* hero CTA sits right below anyway */
  .site-footer__inner { flex-direction: column; align-items: flex-start; }
}

@media (min-width: 720px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
  .work__grid { grid-template-columns: repeat(2, 1fr); }
  .tiers { grid-template-columns: repeat(2, 1fr); }
  .mock { font-size: clamp(8px, 1.02vw, 11.5px); }
}

@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1.05fr .95fr; }
  .contact__grid { grid-template-columns: 1fr 1.05fr; }
}

/* ---------- 13. Reduced motion & print ---------- */
@media (prefers-reduced-motion: reduce) {
  html:focus-within { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .mesh__blob { transform: none; }
  .btn:hover, .shot:hover .browser, .contact__email:hover, .social:hover { transform: none; }
}

@media print {
  .mesh, .site-header__cta, .hero__art { display: none; }
  body { background: #fff; }
  .card, .browser { box-shadow: none; border: 1px solid #ccc; }
}
