/* ==========================================================================
   Pure Time — Wear OS watch face landing page
   Dark theme, vivid gradients, accent-driven theming
   ========================================================================== */

:root {
  /* Accent — overridden by [data-accent] on <html> */
  --accent: #14c4e4;
  --accent-2: #7c4dff;
  --accent-rgb: 20, 196, 228;

  /* Surfaces */
  --bg: #05060a;
  --bg-soft: #0a0c13;
  --surface: rgba(255, 255, 255, 0.035);
  --surface-strong: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);

  /* Type */
  --text: #f2f4f8;
  --text-dim: #a2a9bb;
  --text-faint: #6a7185;

  --font: "Inter", "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

  --radius: 20px;
  --radius-sm: 12px;
  --maxw: 1140px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* Accent themes (mirroring the six watch face colors) */
[data-accent="cyan"]    { --accent: #14c4e4; --accent-2: #2f7cf6; --accent-rgb: 20, 196, 228; }
[data-accent="magenta"] { --accent: #e8175d; --accent-2: #9333ea; --accent-rgb: 232, 23, 93; }
[data-accent="violet"]  { --accent: #7c4dff; --accent-2: #22d3ee; --accent-rgb: 124, 77, 255; }
[data-accent="green"]   { --accent: #22d882; --accent-2: #14c4e4; --accent-rgb: 34, 216, 130; }
[data-accent="amber"]   { --accent: #f79009; --accent-2: #e8175d; --accent-rgb: 247, 144, 9; }
[data-accent="steel"]   { --accent: #a3b5bc; --accent-2: #6b8ea0; --accent-rgb: 163, 181, 188; }

* { box-sizing: border-box; }

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

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

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color 0.25s var(--ease); }
a:hover { color: var(--text); }

h1, h2, h3 {
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 0.5em;
  font-weight: 800;
}

h1 { font-size: clamp(2.6rem, 7vw, 4.6rem); }
h2 { font-size: clamp(1.9rem, 4.4vw, 3rem); }
h3 { font-size: 1.15rem; letter-spacing: -0.02em; }

p { margin: 0 0 1em; }

::selection { background: var(--accent); color: #05060a; }

/* --------------------------------------------------------------------------
   Animated background
   -------------------------------------------------------------------------- */

.backdrop {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(120% 90% at 50% -10%, #0d1020 0%, #05060a 55%),
    var(--bg);
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  will-change: transform;
  transition: background 1.2s var(--ease);
}

.blob--1 {
  width: 46vw; height: 46vw; min-width: 380px; min-height: 380px;
  top: -12vw; left: -8vw;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.85), transparent 68%);
  animation: drift-a 26s ease-in-out infinite;
}

.blob--2 {
  width: 40vw; height: 40vw; min-width: 320px; min-height: 320px;
  top: 22vh; right: -12vw;
  background: radial-gradient(circle, rgba(124, 77, 255, 0.7), transparent 68%);
  animation: drift-b 32s ease-in-out infinite;
}

.blob--3 {
  width: 44vw; height: 44vw; min-width: 340px; min-height: 340px;
  bottom: -14vw; left: 22vw;
  background: radial-gradient(circle, rgba(232, 23, 93, 0.5), transparent 68%);
  animation: drift-c 38s ease-in-out infinite;
}

.grain {
  position: absolute;
  inset: -50%;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.backdrop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 6, 10, 0.85) 100%);
}

@keyframes drift-a {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(8vw, 10vh, 0) scale(1.18); }
}
@keyframes drift-b {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1.1); }
  50%      { transform: translate3d(-10vw, 12vh, 0) scale(0.9); }
}
@keyframes drift-c {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(10vw, -12vh, 0) scale(1.15); }
}

/* --------------------------------------------------------------------------
   Layout helpers
   -------------------------------------------------------------------------- */

.wrap {
  width: min(100% - 2.5rem, var(--maxw));
  margin-inline: auto;
}

section { padding: clamp(4.5rem, 10vw, 8rem) 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}

.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.section-head { max-width: 620px; margin-bottom: 3.2rem; }
.section-head p { color: var(--text-dim); font-size: 1.05rem; margin-bottom: 0; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow::before { display: none; }

.grad-text {
  background: linear-gradient(105deg, var(--accent), var(--accent-2) 55%, var(--accent));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 8s linear infinite;
}

@keyframes shimmer {
  to { background-position: 220% 0; }
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0;
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease), border-color 0.35s var(--ease);
  border-bottom: 1px solid transparent;
}

.site-header.is-stuck {
  background: rgba(5, 6, 10, 0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.02em;
  font-size: 1.05rem;
}

.brand img {
  width: 38px; height: 38px;
  border-radius: 11px;
  box-shadow: 0 0 0 1px var(--border), 0 8px 24px rgba(var(--accent-rgb), 0.28);
  transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}

.brand:hover img { transform: rotate(-6deg) scale(1.05); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--text-dim);
  font-size: 0.94rem;
  font-weight: 500;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease);
}

.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--text);
  padding: 0.5rem;
  cursor: pointer;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease),
              background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}

.btn--primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-2));
  color: #05060a;
  box-shadow: 0 10px 34px -10px rgba(var(--accent-rgb), 0.75);
}

.btn--primary:hover {
  color: #05060a;
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -12px rgba(var(--accent-rgb), 0.9);
}

.btn--ghost {
  background: var(--surface);
  border-color: var(--border-strong);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  background: var(--surface-strong);
  border-color: rgba(var(--accent-rgb), 0.6);
  color: var(--text);
  transform: translateY(-2px);
}

.btn--wide { width: 100%; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; transform: none; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  padding-top: clamp(2.5rem, 6vw, 4.5rem);
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.95rem 0.4rem 0.5rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 1.6rem;
  backdrop-filter: blur(10px);
}

.badge b {
  color: #05060a;
  background: var(--accent);
  border-radius: 999px;
  padding: 0.1rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-lead {
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: var(--text-dim);
  max-width: 34ch;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2.6rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--border);
}

.hero-stats dt {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero-stats dd {
  margin: 0.1rem 0 0;
  font-size: 0.8rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Watch showcase */

.showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.watch {
  position: relative;
  width: min(400px, 78vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  animation: float 7s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

.watch::before {
  content: "";
  position: absolute;
  inset: -14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.42), transparent 62%);
  filter: blur(42px);
  transition: background 0.8s var(--ease);
}

.watch::after {
  content: "";
  position: absolute;
  inset: -3%;
  border-radius: 50%;
  border: 1px solid rgba(var(--accent-rgb), 0.35);
  animation: pulse-ring 3.6s ease-out infinite;
}

@keyframes pulse-ring {
  0%   { transform: scale(0.96); opacity: 0.9; }
  70%  { transform: scale(1.1);  opacity: 0; }
  100% { transform: scale(1.1);  opacity: 0; }
}

.watch-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 0 0 6px #14161d,
    0 0 0 8px rgba(255, 255, 255, 0.07),
    0 40px 90px -30px rgba(0, 0, 0, 0.95),
    0 0 90px -20px rgba(var(--accent-rgb), 0.5);
  transition: box-shadow 0.8s var(--ease);
}

.watch-frame img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 0.55s var(--ease), transform 0.7s var(--ease);
}

.watch-frame img.is-active {
  opacity: 1;
  transform: scale(1);
}

.watch-glare {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14), transparent 42%);
  pointer-events: none;
  mix-blend-mode: screen;
}

/* Color switcher */

.swatches {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.7rem;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.swatch {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: var(--dot);
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.swatch:hover { transform: scale(1.14); }

.swatch::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid var(--dot);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}

.swatch[aria-pressed="true"]::after { opacity: 1; transform: scale(1); }
.swatch[aria-pressed="true"] { box-shadow: 0 0 22px -2px var(--dot); }

/* --------------------------------------------------------------------------
   Marquee
   -------------------------------------------------------------------------- */

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  padding: 1.1rem 0;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}

.marquee-track {
  display: flex;
  gap: 3.5rem;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee span {
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 3.5rem;
}

.marquee span::after {
  content: "";
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  transition: background 0.6s var(--ease);
}

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

/* --------------------------------------------------------------------------
   Features
   -------------------------------------------------------------------------- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}

.card {
  position: relative;
  padding: 2rem 1.8rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), background 0.45s var(--ease);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 0%), rgba(var(--accent-rgb), 0.16), transparent 70%);
  opacity: 0;
  transition: opacity 0.45s var(--ease);
  pointer-events: none;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(var(--accent-rgb), 0.45);
  background: var(--surface-strong);
}

.card:hover::before { opacity: 1; }

.card-icon {
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 1.3rem;
  color: var(--accent);
  background: rgba(var(--accent-rgb), 0.12);
  border: 1px solid rgba(var(--accent-rgb), 0.25);
  transition: color 0.5s var(--ease), background 0.5s var(--ease), border-color 0.5s var(--ease);
}

.card-icon svg { width: 22px; height: 22px; }

.card p {
  color: var(--text-dim);
  font-size: 0.95rem;
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   Palette gallery
   -------------------------------------------------------------------------- */

.palette-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.4rem;
}

.palette-item {
  position: relative;
  padding: 1.6rem 1.2rem 1.4rem;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--border);
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.palette-item::before {
  content: "";
  position: absolute;
  top: -40%; left: 50%;
  translate: -50% 0;
  width: 150%; aspect-ratio: 1;
  background: radial-gradient(circle, var(--dot), transparent 62%);
  opacity: 0.16;
  filter: blur(30px);
  transition: opacity 0.45s var(--ease);
}

.palette-item:hover {
  transform: translateY(-8px);
  border-color: var(--dot);
  box-shadow: 0 26px 60px -30px var(--dot);
}

.palette-item:hover::before { opacity: 0.38; }

.palette-item img {
  position: relative;
  border-radius: 50%;
  margin: 0 auto 1.1rem;
  width: 78%;
  box-shadow: 0 0 0 4px #12141b, 0 18px 40px -18px rgba(0, 0, 0, 0.9);
  transition: transform 0.5s var(--ease);
}

.palette-item:hover img { transform: scale(1.05); }

.palette-item .p-title {
  position: relative;
  display: block;
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.palette-item .p-sub {
  position: relative;
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 0.2rem;
}

/* --------------------------------------------------------------------------
   Steps
   -------------------------------------------------------------------------- */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 2rem 1.6rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease);
}

.steps li:hover { border-color: rgba(var(--accent-rgb), 0.45); transform: translateY(-4px); }

.steps li::before {
  content: "0" counter(step);
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 0.8rem;
  transition: color 0.5s var(--ease);
}

.steps h3 { margin-bottom: 0.35rem; }
.steps p { color: var(--text-dim); font-size: 0.93rem; margin: 0; }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.contact-aside ul {
  list-style: none;
  margin: 2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.contact-aside li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  color: var(--text-dim);
  font-size: 0.95rem;
}

.contact-aside svg {
  width: 18px; height: 18px;
  flex: none;
  margin-top: 0.28rem;
  color: var(--accent);
  transition: color 0.5s var(--ease);
}

.contact-aside strong { color: var(--text); display: block; font-weight: 600; }

.form {
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  display: grid;
  gap: 1.1rem;
}

.field { display: grid; gap: 0.45rem; }

.field label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.32);
  color: var(--text);
  font: inherit;
  font-size: 0.95rem;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.field textarea { resize: vertical; min-height: 130px; }

.field input::placeholder,
.field textarea::placeholder { color: var(--text-faint); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(var(--accent-rgb), 0.7);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb), 0.14);
  background: rgba(0, 0, 0, 0.5);
}

.field select { appearance: none; cursor: pointer; }
.field select option { background: #0a0c13; color: var(--text); }

.field-select { position: relative; }
.field-select::after {
  content: "";
  position: absolute;
  right: 1.1rem; bottom: 1.25rem;
  width: 8px; height: 8px;
  border-right: 2px solid var(--text-faint);
  border-bottom: 2px solid var(--text-faint);
  transform: rotate(45deg);
  pointer-events: none;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.consent {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.consent input {
  width: 17px; height: 17px;
  margin-top: 0.22rem;
  flex: none;
  accent-color: var(--accent);
  cursor: pointer;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-faint);
  margin: 0;
  text-align: center;
}

.form-status {
  display: none;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  border: 1px solid transparent;
}

.form-status.is-visible { display: block; }
.form-status.is-pending { background: rgba(255, 255, 255, 0.05); border-color: var(--border-strong); color: var(--text-dim); }
.form-status.is-success { background: rgba(34, 216, 130, 0.1); border-color: rgba(34, 216, 130, 0.4); color: #7ff0bb; }
.form-status.is-error   { background: rgba(232, 23, 93, 0.1);  border-color: rgba(232, 23, 93, 0.4);  color: #ff9ab8; }

.honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.4);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 2.5rem;
}

.footer-brand p {
  color: var(--text-faint);
  font-size: 0.9rem;
  max-width: 34ch;
  margin: 1rem 0 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.8rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a { color: var(--text-dim); font-size: 0.92rem; }
.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  color: var(--text-faint);
  font-size: 0.84rem;
}

/* --------------------------------------------------------------------------
   Legal pages
   -------------------------------------------------------------------------- */

.legal { padding-top: clamp(3rem, 7vw, 5rem); }

.legal-head { text-align: center; margin-bottom: 3rem; }
.legal-head p { color: var(--text-faint); font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; }

.legal-body {
  max-width: 780px;
  margin-inline: auto;
  padding: clamp(1.8rem, 4vw, 3rem);
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.legal-body p { color: var(--text-dim); }
.legal-body h2 {
  font-size: 1.28rem;
  margin-top: 2.4rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--border);
}
.legal-body h2:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.legal-body h2 .num { color: var(--accent); margin-right: 0.5rem; transition: color 0.5s var(--ease); }
.legal-body strong { color: var(--text); }

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  font-size: 0.92rem;
  color: var(--text-dim);
}
.legal-back:hover { color: var(--accent); }

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible { opacity: 1; transform: none; }

.reveal[data-delay="1"] { transition-delay: 0.09s; }
.reveal[data-delay="2"] { transition-delay: 0.18s; }
.reveal[data-delay="3"] { transition-delay: 0.27s; }
.reveal[data-delay="4"] { transition-delay: 0.36s; }
.reveal[data-delay="5"] { transition-delay: 0.45s; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions, .hero-stats { justify-content: center; }
  .eyebrow::before { display: none; }
  .section-head { margin-inline: auto; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero-grid .showcase { order: -1; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }

  .nav-toggle { display: inline-flex; }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 1.25rem;
    left: 1.25rem;
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    padding: 0.8rem;
    border-radius: var(--radius);
    background: rgba(10, 12, 19, 0.96);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.9);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.3s var(--ease), transform 0.3s var(--ease), visibility 0.3s;
  }

  .nav-links.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav-links li a { display: block; padding: 0.7rem 0.8rem; border-radius: 10px; }
  .nav-links li a::after { display: none; }
  .nav-links li a:hover { background: var(--surface); }
  .nav-links .btn { margin-top: 0.4rem; }

  .site-header { position: sticky; }
  .nav { position: relative; }

  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.6rem 2rem; }
}

@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;
  }
  .reveal { opacity: 1; transform: none; }
}
