/* ------------------------------------------------------------------
   technologey.com — for-sale landing page
   Single dark theme by design. Every colour is painted explicitly.
------------------------------------------------------------------- */

:root {
  --bg: #090b12;
  --bg-2: #0e111b;
  --surface: #12151f;
  --surface-2: #181c29;
  --line: rgba(232, 234, 242, 0.09);
  --line-strong: rgba(232, 234, 242, 0.18);
  --text: #e8eaf2;
  --muted: #8b90a5;
  --accent: #5b7cff;
  --accent-2: #8a5bff;
  --warm: #b48cff;
  --warm-deep: #8a5bff;

  --display: "Syne", "Avenir Next", "Segoe UI", sans-serif;
  --body: "Manrope", "Segoe UI", system-ui, sans-serif;
  --mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;

  --gutter: clamp(20px, 5vw, 72px);
  --max: 1240px;
  --radius: 22px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
strong, b { font-weight: 600; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 800; line-height: 1.02; letter-spacing: -0.02em; margin: 0; text-wrap: balance; }
h2 { font-size: clamp(2rem, 5vw, 4rem); }
h3 { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.01em; }
p { margin: 0; }
.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }

:focus-visible { outline: 2px solid var(--warm); outline-offset: 3px; border-radius: 4px; }

/* ---------- Atmosphere ---------- */
#orbs {
  position: fixed; inset: 0; width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}
.grain {
  position: fixed; inset: -50%; width: 200%; height: 200%;
  z-index: 3; pointer-events: none; opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 0.7s steps(4) infinite;
}
@keyframes grain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(-3%, 2%); }
  50% { transform: translate(2%, -4%); }
  75% { transform: translate(-1%, 3%); }
  100% { transform: translate(3%, -1%); }
}
.progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 50; background: transparent; }
.progress span { display: block; height: 100%; width: 100%; transform-origin: 0 50%; transform: scaleX(0); background: linear-gradient(90deg, var(--accent), var(--warm)); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 18px var(--gutter);
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  padding: 12px var(--gutter);
  background: rgba(9, 11, 18, 0.62);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav__brand { font-family: var(--display); font-weight: 800; font-size: 1.15rem; letter-spacing: -0.02em; }
.nav__tld { color: var(--muted); font-weight: 500; }
.nav__links { display: flex; gap: 28px; font-size: 0.92rem; color: var(--muted); }
.nav__links a { position: relative; transition: color 0.25s; }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 1px; background: var(--warm); transition: right 0.35s var(--ease); }
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { right: 0; }
.ey { color: var(--warm); }

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 28px; border-radius: 999px;
  font-family: var(--body); font-weight: 600; font-size: 0.98rem; letter-spacing: 0.005em;
  border: 1px solid var(--line-strong); color: var(--text); background: transparent;
  cursor: pointer; overflow: hidden; isolation: isolate; white-space: nowrap;
  transition: color 0.3s, border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
  will-change: transform;
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(120% 120% at 50% 120%, var(--warm-deep), var(--warm) 60%, transparent 100%);
  opacity: 0; transition: opacity 0.35s;
}
.btn--primary { background: var(--text); color: var(--bg); border-color: var(--text); }
.btn--primary:hover { color: #14082e; border-color: var(--warm); box-shadow: 0 10px 40px -10px rgba(180, 140, 255, 0.5); }
.btn--primary:hover::before { opacity: 1; }
.btn--ghost:hover { border-color: var(--text); }
.btn--small { padding: 10px 18px; font-size: 0.88rem; }

/* ---------- Layout helpers ---------- */
main { position: relative; z-index: 2; }
.section { padding: clamp(72px, 10vw, 140px) var(--gutter); max-width: var(--max); margin: 0 auto; }
.section__head { margin-bottom: clamp(40px, 6vw, 72px); max-width: 760px; }
.section__head h2 { margin-top: 14px; }
.eyebrow {
  font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
  display: inline-flex; align-items: center; gap: 10px;
}
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--warm); box-shadow: 0 0 0 0 rgba(180, 140, 255, 0.6); animation: pulse 2.2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(180, 140, 255, 0.6); } 70% { box-shadow: 0 0 0 12px rgba(180, 140, 255, 0); } 100% { box-shadow: 0 0 0 0 rgba(180, 140, 255, 0); } }

/* ---------- Hero ---------- */
.hero {
  position: relative; z-index: 2; isolation: isolate; overflow: hidden;
  min-height: 100svh;
  display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center;
  padding: 140px var(--gutter) 90px;
  /* fallback when WebGL is unavailable */
  background:
    radial-gradient(60% 50% at 80% 20%, rgba(138, 91, 255, 0.35), transparent 70%),
    radial-gradient(50% 45% at 15% 70%, rgba(91, 124, 255, 0.35), transparent 70%),
    radial-gradient(40% 40% at 70% 85%, rgba(180, 140, 255, 0.22), transparent 70%),
    var(--bg);
}
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: -2; display: block; }
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 28%; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(9, 11, 18, 0), var(--bg));
}
.hero__eyebrow { margin-bottom: 28px; }
.hero__title {
  font-size: clamp(2.2rem, 7.3vw, 8.3rem);
  letter-spacing: -0.045em; line-height: 0.95;
  margin-bottom: 36px;
}
.hero__word { display: inline-block; white-space: nowrap; }
.hero__word .char { display: inline-block; will-change: transform, opacity; }
.hero__word .ey { color: var(--warm); text-shadow: 0 0 60px rgba(180, 140, 255, 0.35); }
.hero__tld { color: var(--muted); font-weight: 500; letter-spacing: -0.03em; }
.hero__body { display: flex; flex-direction: column; align-items: center; width: 100%; will-change: transform, opacity; }
.hero__lede { font-size: clamp(1.1rem, 1.8vw, 1.45rem); max-width: 38ch; color: var(--muted); font-weight: 400; margin: 0 auto 40px; text-wrap: balance; }
.hero__lede strong { color: var(--text); }
.hero__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 64px; }
.hero__facts {
  list-style: none; margin: 0; padding: 28px 0 0; border-top: 1px solid var(--line); width: 100%; max-width: 960px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  font-size: 0.92rem; color: var(--muted);
}
.hero__facts li { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero__facts .mono { color: var(--text); font-size: 1.1rem; }
.hero__scroll {
  position: absolute; right: var(--gutter); bottom: 32px;
  display: flex; align-items: center; gap: 12px;
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.hero__scroll span { width: 44px; height: 1px; background: var(--muted); position: relative; overflow: hidden; }
.hero__scroll span::after { content: ""; position: absolute; inset: 0; background: var(--warm); transform: translateX(-100%); animation: slide 1.8s var(--ease) infinite; }
@keyframes slide { to { transform: translateX(100%); } }

/* ---------- Marquee ---------- */
.marquee {
  position: relative; z-index: 2;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; padding: 18px 0;
  background: rgba(14, 17, 27, 0.5);
}
.marquee__track {
  display: flex; align-items: center; gap: 40px; width: max-content;
  font-family: var(--display); font-weight: 700; font-size: clamp(1rem, 2vw, 1.4rem); letter-spacing: -0.01em;
  text-transform: uppercase; color: var(--muted); white-space: nowrap;
}
.marquee__track span:nth-child(8n+1) { color: var(--text); }
.marquee__track i { width: 6px; height: 6px; border-radius: 50%; background: var(--warm); flex: none; }

/* ---------- Twist ---------- */
.twist { position: relative; z-index: 2; }
.twist__pin {
  min-height: 100svh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  padding: 80px var(--gutter); gap: 32px;
}
.twist__word {
  font-family: var(--display); font-weight: 800; letter-spacing: -0.045em; line-height: 1;
  font-size: clamp(2.2rem, 8.8vw, 8.4rem); display: flex; justify-content: center; white-space: nowrap; max-width: 100%;
}
.twist__word span { display: inline-block; }
.twist__e {
  color: var(--warm); overflow: hidden; max-width: 0; opacity: 0; transform: translateY(0.15em);
}
.twist__caption { max-width: 48ch; color: var(--muted); font-size: clamp(1rem, 1.5vw, 1.25rem); }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card {
  position: relative; padding: 36px 32px 40px; border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(24, 28, 41, 0.9), rgba(18, 21, 31, 0.7));
  border: 1px solid var(--line); overflow: hidden;
  transition: transform 0.5s var(--ease), border-color 0.4s;
}
.card::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity 0.5s;
  background: radial-gradient(400px circle at var(--mx, 50%) var(--my, 50%), rgba(91, 124, 255, 0.16), transparent 60%);
}
.card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.card:hover::after { opacity: 1; }
.card__glyph { font-size: 0.85rem; color: var(--warm); letter-spacing: 0.08em; margin-bottom: 44px; }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--muted); max-width: 42ch; }

/* ---------- Brand / horizontal ---------- */
.brand { position: relative; z-index: 2; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.brand__pin { min-height: 100svh; display: flex; flex-direction: column; justify-content: center; overflow: hidden; padding: 100px 0 60px; }
.brand__head { padding: 0 var(--gutter); max-width: var(--max); margin: 0 auto 40px; width: 100%; }
.brand__head h2 { margin-top: 14px; }
.brand__track { display: flex; gap: 32px; padding: 0 var(--gutter); width: max-content; will-change: transform; }
.panel { display: flex; flex-direction: column; gap: 16px; width: clamp(280px, 30vw, 460px); flex: none; }
.panel__label { font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.art { position: relative; width: 100%; aspect-ratio: 4 / 3; display: grid; place-items: center; }
.art > * { position: absolute; inset: 0; margin: auto; max-width: 100%; }
.panel--social .social { top: 50%; bottom: auto; transform: translateY(-50%); }

/* browser mockup */
.browser { width: 100%; height: 100%; border-radius: 18px; overflow: hidden; border: 1px solid var(--line-strong); background: var(--surface); display: flex; flex-direction: column; box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.8); }
.browser__bar { display: flex; align-items: center; gap: 6px; padding: 12px 14px; background: var(--surface-2); border-bottom: 1px solid var(--line); }
.browser__bar i { width: 9px; height: 9px; border-radius: 50%; background: var(--line-strong); }
.browser__url { margin-left: 12px; font-size: 0.7rem; color: var(--muted); background: var(--bg); padding: 5px 12px; border-radius: 6px; flex: 1; }
.browser__body { padding: 18px 22px 20px; display: flex; flex-direction: column; gap: 16px; flex: 1; min-height: 0; }
.browser__nav { display: flex; align-items: center; gap: 14px; }
.browser__nav b { font-family: var(--display); font-weight: 800; font-size: 0.95rem; margin-right: auto; }
.browser__nav em, .bizcard em { font-style: normal; color: var(--warm); }
.browser__nav span { width: 34px; height: 6px; border-radius: 3px; background: var(--line-strong); }
.browser__hero h4 { font-size: clamp(1rem, 1.7vw, 1.4rem); max-width: 14ch; margin-bottom: 10px; }
.browser__btn { width: 84px; height: 24px; border-radius: 999px; background: var(--warm); }
.browser__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: auto; }
.browser__grid div { height: 44px; border-radius: 10px; background: var(--surface-2); border: 1px solid var(--line); }

/* phone mockup */
.phone { height: 100%; width: auto; aspect-ratio: 9 / 18; border-radius: 34px; background: #05060a; border: 1px solid var(--line-strong); padding: 10px; box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.8); }
.phone__screen { height: 100%; border-radius: 26px; background: linear-gradient(180deg, #171b2a, #0c0f18); padding: 26px 14px 14px; display: flex; flex-direction: column; gap: 12px; }
.phone__row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.phone__row i { aspect-ratio: 1; border-radius: 26%; background: var(--surface-2); border: 1px solid var(--line); }
.phone__icon {
  display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-style: normal; font-size: clamp(0.9rem, 1.6vw, 1.4rem);
  background: linear-gradient(145deg, var(--warm), var(--warm-deep)) !important; color: #14082e; border: none !important;
  box-shadow: 0 8px 24px -6px rgba(138, 91, 255, 0.7);
}
.phone__dock { margin-top: auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 8px; border-radius: 18px; background: rgba(255, 255, 255, 0.05); }
.phone__dock i { aspect-ratio: 1; border-radius: 26%; background: var(--surface-2); }

/* business card */
.bizcard { position: relative; width: 100%; height: 100%; }
.bizcard__front, .bizcard__back {
  position: absolute; border-radius: 14px; aspect-ratio: 85 / 55; width: 74%;
  display: flex; flex-direction: column; justify-content: space-between; padding: 22px 24px;
  box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.9);
}
.bizcard__front { left: 0; top: 0; background: linear-gradient(150deg, #1d2131, #0f121b); border: 1px solid var(--line-strong); z-index: 2; }
.bizcard__front b { font-family: var(--display); font-weight: 800; font-size: clamp(1rem, 2vw, 1.5rem); }
.bizcard__front .mono { font-size: 0.68rem; color: var(--muted); }
.bizcard__back { right: 0; bottom: 0; background: linear-gradient(150deg, var(--warm), var(--warm-deep)); color: #14082e; align-items: flex-end; justify-content: flex-end; }
.bizcard__back span { font-family: var(--display); font-weight: 800; font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 0.8; }

/* social profile */
.social { width: 100%; border-radius: 18px; border: 1px solid var(--line-strong); background: var(--surface); overflow: hidden; padding: 0 24px 24px; display: flex; flex-direction: column; gap: 6px; box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.8); }
.social__cover { height: 96px; margin: 0 -24px 0; background: linear-gradient(120deg, var(--accent-2), var(--accent) 55%, var(--warm)); }
.social__avatar { width: 68px; height: 68px; margin-top: -34px; border-radius: 50%; border: 4px solid var(--surface); background: linear-gradient(145deg, var(--warm), var(--warm-deep)); color: #14082e; display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 1.4rem; }
.social__name { font-family: var(--display); font-weight: 800; font-size: 1.2rem; margin-top: 8px; }
.social__handle { font-size: 0.78rem; color: var(--muted); }
.social__bio { margin-top: 10px; font-size: 0.92rem; color: var(--text); }
.social__stats { display: flex; gap: 20px; margin-top: 12px; font-size: 0.82rem; color: var(--muted); }
.social__stats b { color: var(--text); }

/* ---------- Numbers ---------- */
.numbers { padding-block: clamp(60px, 8vw, 110px); }
.numbers__grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.num { padding: 40px 28px; display: flex; flex-direction: column; gap: 6px; border-right: 1px solid var(--line); }
.num:last-child { border-right: none; }
.num__value { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 500; line-height: 1; color: var(--text); }
.num__label { color: var(--muted); font-size: 0.92rem; }

/* ---------- Price ---------- */
.price__grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; align-items: start; }
.price__card {
  position: relative; padding: 44px 44px 40px; border-radius: 28px; overflow: hidden; container-type: inline-size;
  background: linear-gradient(160deg, #1a1e2e, #10131c);
  border: 1px solid var(--line-strong);
}
.price__card::before {
  content: ""; position: absolute; inset: -1px; border-radius: inherit; padding: 1px; pointer-events: none;
  background: conic-gradient(from var(--angle, 0deg), transparent 0 60%, var(--warm) 80%, var(--accent) 90%, transparent 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  animation: spin 6s linear infinite;
}
@property --angle { syntax: "<angle>"; initial-value: 0deg; inherits: false; }
@keyframes spin { to { --angle: 360deg; } }
.price__label { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.price__amount { font-family: var(--display); font-weight: 800; font-size: clamp(2rem, 11.5cqw, 4.8rem); white-space: nowrap; letter-spacing: -0.04em; line-height: 1; margin: 14px 0 20px; }
.price__note { color: var(--muted); max-width: 44ch; }
.price__note strong { color: var(--warm); }
.price__list { list-style: none; margin: 32px 0 36px; padding: 0; display: flex; flex-direction: column; gap: 12px; color: var(--text); font-size: 0.98rem; }
.price__list li { position: relative; padding-left: 26px; }
.price__list li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 12px; height: 12px; border-radius: 50%; background: radial-gradient(circle, var(--warm) 0 35%, transparent 40%), var(--surface-2); border: 1px solid var(--line-strong); }
.price__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.price__side { padding: 44px 40px; border-radius: 28px; border: 1px solid var(--line); }
.price__side h3 { margin-bottom: 28px; }
.steps { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 26px; }
.steps li { display: flex; gap: 18px; }
.steps .mono { flex: none; width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; border: 1px solid var(--line-strong); font-size: 0.8rem; color: var(--warm); }
.steps b { display: block; margin-bottom: 4px; }
.steps p { color: var(--muted); font-size: 0.95rem; }

/* ---------- FAQ ---------- */
.faq__list { display: flex; flex-direction: column; border-top: 1px solid var(--line); max-width: 860px; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary {
  list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 24px;
  padding: 26px 4px; font-family: var(--display); font-weight: 700; font-size: clamp(1.05rem, 1.6vw, 1.35rem); letter-spacing: -0.01em;
  transition: color 0.25s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--warm); }
.faq__item summary i { position: relative; flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line-strong); transition: transform 0.4s var(--ease), background 0.3s; }
.faq__item summary i::before, .faq__item summary i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 10px; height: 1px; background: currentColor; transform: translate(-50%, -50%); }
.faq__item summary i::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform 0.4s var(--ease); }
.faq__item[open] summary i { transform: rotate(45deg); background: var(--surface-2); }
.faq__body { padding: 0 4px 28px; color: var(--muted); max-width: 62ch; }

/* ---------- Offer ---------- */
.offer__inner {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start;
  padding: clamp(36px, 5vw, 64px); border-radius: 32px;
  background: linear-gradient(140deg, rgba(91, 124, 255, 0.12), rgba(138, 91, 255, 0.06) 40%, rgba(180, 140, 255, 0.08));
  border: 1px solid var(--line-strong);
}
.offer__text h2 { margin: 14px 0 16px; font-size: clamp(1.8rem, 3.6vw, 3rem); }
.offer__text p { color: var(--muted); max-width: 36ch; }
.contact { display: flex; flex-direction: column; gap: 14px; }
.contact__card {
  display: flex; flex-direction: column; gap: 6px; padding: 26px 28px; border-radius: 18px;
  background: rgba(9, 11, 18, 0.55); border: 1px solid var(--line-strong);
  transition: border-color 0.3s, transform 0.4s var(--ease), background 0.3s;
}
.contact__card:hover { border-color: var(--warm); background: rgba(9, 11, 18, 0.8); transform: translateY(-3px); }
.contact__label { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.contact__value { font-family: var(--display); font-weight: 700; font-size: clamp(1.15rem, 2vw, 1.5rem); letter-spacing: -0.01em; color: var(--warm); overflow-wrap: anywhere; }
.contact__hint { color: var(--muted); font-size: 0.95rem; }
.footer__links { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.footer {
  position: relative; z-index: 2;
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px;
  padding: 32px var(--gutter); border-top: 1px solid var(--line);
  font-size: 0.85rem; color: var(--muted);
}
.footer > span:first-child { font-family: var(--display); font-weight: 800; color: var(--text); font-size: 1rem; }
.footer a { text-decoration: underline; text-underline-offset: 3px; }
.footer a:hover { color: var(--warm); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav__links { display: none; }
  .cards { grid-template-columns: 1fr; }
  .price__grid, .offer__inner { grid-template-columns: 1fr; }
  .numbers__grid { grid-template-columns: repeat(2, 1fr); }
  .num:nth-child(2) { border-right: none; }
  .num:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .brand__pin { min-height: 0; padding: 72px 0; }
  .brand__track { width: auto; flex-direction: column; align-items: stretch; gap: 40px; }
  .panel { width: 100%; max-width: 520px; margin: 0 auto; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .nav { padding-block: 14px; }
  .nav__brand { font-size: 1rem; }
  .nav .btn--small { padding: 9px 14px; font-size: 0.82rem; }
  .hero { min-height: 100svh; padding-top: 120px; }
  .hero__title { font-size: clamp(1.9rem, 9.4vw, 2.7rem); line-height: 1; }
  .hero__tld { display: block; font-size: 0.7em; margin-top: 0.2em; }
  .hero__actions .btn { width: 100%; max-width: 320px; }
  .twist__pin { min-height: 60svh; }
  .hero__facts { grid-template-columns: 1fr; gap: 18px; }
  .hero__scroll { display: none; }
  .price__card, .price__side { padding: 32px 24px; }
  .nav { padding-inline: 16px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .grain, .dot, .hero__scroll span::after, .price__card::before { animation: none; }
  .twist__e { max-width: 1em; opacity: 1; transform: none; }
  .btn, .card { transition: none; }
}
