/* ============================================================
   InteractiveWebs — Hosting. Design. Integration.
   ============================================================ */

:root {
  --bg: #06080f;
  --bg-2: #0a0e1a;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.07);
  --line: rgba(255, 255, 255, 0.09);
  --text: #e9edf5;
  --muted: #98a2b8;
  --green: #3dbb4e;
  --blue: #2f86e0;
  --orange: #f5921e;
  --red: #e2483a;
  --radius: 18px;
  --font-display: "Sora", system-ui, -apple-system, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --header-h: 76px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

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

/* subtle grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.02 0'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; margin: 0 0 0.5em; }
p { margin: 0 0 1em; }
a { color: var(--text); text-decoration: none; }
ul { padding: 0; margin: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--blue); color: #fff; padding: 10px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* gradients for headline words */
.grad { -webkit-background-clip: text; background-clip: text; color: transparent; }
.grad-green  { background-image: linear-gradient(100deg, #7ee08a, var(--green) 55%, #1e8c3a); }
.grad-blue   { background-image: linear-gradient(100deg, #8ec4f5, var(--blue) 55%, #1b5fae); }
.grad-orange { background-image: linear-gradient(100deg, #ffc46b, var(--orange) 55%, var(--red)); }
.grad-red    { background-image: linear-gradient(100deg, #ff9d94, var(--red) 55%, #a82c22); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600; font-size: 15.5px; font-family: var(--font-body);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn span { transition: transform 0.18s ease; }
.btn:hover span { transform: translateX(3px); }

.btn-primary {
  background: linear-gradient(120deg, var(--blue), #1b5fae);
  color: #fff;
  box-shadow: 0 8px 28px rgba(47, 134, 224, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(47, 134, 224, 0.45); }

.btn-ghost {
  background: var(--surface);
  border-color: var(--line);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: var(--surface-2); border-color: rgba(255, 255, 255, 0.2); transform: translateY(-2px); }

.btn-sm { padding: 9px 20px; font-size: 14px; }
.btn-lg { padding: 16px 34px; font-size: 16.5px; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 50;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(6, 8, 15, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}
.header-inner { display: flex; align-items: center; gap: 32px; height: var(--header-h); }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { width: 38px; height: 38px; transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1); }
.brand:hover .brand-mark { transform: rotate(90deg); }
.brand-name { font-family: var(--font-display); font-size: 20px; font-weight: 400; letter-spacing: -0.01em; }
.brand-name b { font-weight: 800; }

.site-nav { display: flex; gap: 6px; margin-left: auto; }
.site-nav a {
  padding: 8px 14px; border-radius: 999px;
  color: var(--muted); font-size: 15px; font-weight: 500;
  transition: color 0.15s ease, background 0.15s ease;
}
.site-nav a:hover, .site-nav a.active { color: var(--text); background: var(--surface-2); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 42px; height: 42px;
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
}
.nav-toggle span { display: block; width: 18px; height: 2px; margin: 0 auto; background: var(--text); border-radius: 2px; transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--header-h) + 48px) 0 90px;
  overflow: hidden;
}
#plexus { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(52% 44% at 68% 18%, rgba(47, 134, 224, 0.16), transparent 70%),
    radial-gradient(40% 36% at 12% 78%, rgba(61, 187, 78, 0.10), transparent 70%),
    radial-gradient(34% 30% at 88% 82%, rgba(245, 146, 30, 0.08), transparent 70%);
}
.hero-inner { max-width: 900px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 26px;
}
.pulse-dot { position: relative; width: 9px; height: 9px; border-radius: 50%; background: var(--green); flex: none; }
.pulse-dot::after {
  content: ""; position: absolute; inset: -5px; border-radius: 50%;
  border: 1.5px solid var(--green); opacity: 0.7;
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse { 0% { transform: scale(0.5); opacity: 0.8; } 100% { transform: scale(1.6); opacity: 0; } }

.hero-title {
  font-size: clamp(52px, 9.5vw, 112px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.02;
  margin: 0 0 30px;
}
.hero-title .line { display: block; }

.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 38px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 64px; }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, auto);
  gap: clamp(28px, 6vw, 72px);
  margin: 0; padding: 26px 0 0;
  border-top: 1px solid var(--line);
  width: fit-content;
}
.hero-stats dt {
  font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 38px); font-weight: 700;
  letter-spacing: -0.02em;
}
.hero-stats dd { margin: 2px 0 0; color: var(--muted); font-size: 13.5px; }

.scroll-hint {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 26px; height: 42px; border: 1.5px solid var(--line); border-radius: 999px;
}
.scroll-hint span {
  position: absolute; left: 50%; top: 8px; width: 3px; height: 8px; margin-left: -1.5px;
  border-radius: 3px; background: var(--muted);
  animation: scrollhint 1.8s ease-in-out infinite;
}
@keyframes scrollhint { 0%, 100% { transform: translateY(0); opacity: 1; } 60% { transform: translateY(12px); opacity: 0.2; } }

/* ---------- Marquee ---------- */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
  overflow: hidden;
  position: relative; z-index: 2;
  background: var(--bg-2);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex; gap: 34px; width: max-content;
  animation: marquee 42s linear infinite;
  color: var(--muted); font-size: 15px; font-weight: 500; letter-spacing: 0.02em;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding: clamp(84px, 11vw, 132px) 0; position: relative; }
.section-alt {
  background:
    radial-gradient(60% 90% at 50% 0%, rgba(47, 134, 224, 0.06), transparent 70%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-title {
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 800; letter-spacing: -0.03em;
  margin-bottom: 20px;
  max-width: 760px;
}
.section-sub { color: var(--muted); font-size: 17.5px; max-width: 640px; margin-bottom: 44px; }

/* ---------- Cards ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }

.card {
  --accent: var(--blue);
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 30px 30px;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.card[data-accent="green"]  { --accent: var(--green); }
.card[data-accent="blue"]   { --accent: var(--blue); }
.card[data-accent="orange"] { --accent: var(--orange); }
.card[data-accent="red"]    { --accent: var(--red); }

.card:hover { transform: translateY(-6px); border-color: color-mix(in srgb, var(--accent) 45%, transparent); }
.card::after {
  content: ""; position: absolute; inset: 0 0 auto; height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0; transition: opacity 0.25s ease;
}
.card:hover::after { opacity: 1; }

.card-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 16px;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 13%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
  margin-bottom: 24px;
}
.card-icon svg { width: 28px; height: 28px; }

.card h3 { font-size: 22px; font-weight: 700; }
.card > p { color: var(--muted); font-size: 15.5px; }
.card ul { margin: 18px 0 22px; display: grid; gap: 10px; }
.card ul li {
  position: relative; padding-left: 26px;
  font-size: 15px; color: var(--text);
}
.card ul li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg) scale(0.9);
}
.card-link { font-weight: 600; font-size: 15px; color: var(--accent); }
.card-link span { display: inline-block; transition: transform 0.18s ease; }
.card-link:hover span { transform: translateX(4px); }

/* spotlight cursor effect */
.spotlight { position: relative; }
.spotlight::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.06), transparent 45%);
  opacity: 0; transition: opacity 0.3s ease;
  pointer-events: none;
}
.spotlight:hover::before { opacity: 1; }

/* ---------- Split layout ---------- */
.split {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}
.split-copy .section-sub { margin-bottom: 28px; }

.check-list { display: grid; gap: 16px; margin-bottom: 36px; }
.check-list li {
  position: relative; padding-left: 34px;
  color: var(--muted); font-size: 15.5px;
}
.check-list li b { color: var(--text); display: block; font-weight: 600; }
.check-list li::before {
  content: ""; position: absolute; left: 2px; top: 8px;
  width: 16px; height: 9px;
  border-left: 2.5px solid var(--green); border-bottom: 2.5px solid var(--green);
  transform: rotate(-45deg);
}

/* ---------- Hub diagram ---------- */
.hub-wrap {
  position: relative;
  aspect-ratio: 1;
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}
.hub-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.hub-beams line {
  stroke: rgba(255, 255, 255, 0.14);
  stroke-dasharray: 5 9;
  animation: beam 1.6s linear infinite;
}
@keyframes beam { to { stroke-dashoffset: -14; } }

.hub-core {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 34%; aspect-ratio: 1;
  display: grid; place-items: center; align-content: center; gap: 8px;
  background: rgba(10, 14, 26, 0.92);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: 0 0 0 14px rgba(47, 134, 224, 0.05), 0 0 70px rgba(47, 134, 224, 0.18);
  text-align: center;
}
.hub-logo { width: 44%; animation: hubspin 40s linear infinite; }
@keyframes hubspin { to { transform: rotate(360deg); } }
.hub-core span { font-family: var(--font-display); font-weight: 600; font-size: clamp(11px, 1.4vw, 14px); }

.hub-node {
  position: absolute;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 15px;
  background: rgba(14, 19, 33, 0.94);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: clamp(11.5px, 1.4vw, 13.5px); font-weight: 600;
  white-space: nowrap;
  transform: translate(-50%, -50%);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.4);
  animation: bob 5.5s ease-in-out infinite;
}
.hub-node i { width: 8px; height: 8px; border-radius: 50%; background: var(--c, var(--blue)); box-shadow: 0 0 10px var(--c, var(--blue)); }
@keyframes bob { 0%, 100% { margin-top: 0; } 50% { margin-top: -7px; } }

.hub-node.n1 { left: 50%;    top: 14.5%; animation-delay: 0s; }
.hub-node.n2 { left: 80.5%;  top: 32%;   animation-delay: 0.9s; }
.hub-node.n3 { left: 80.5%;  top: 68%;   animation-delay: 1.8s; }
.hub-node.n4 { left: 50%;    top: 85.5%; animation-delay: 2.7s; }
.hub-node.n5 { left: 19.5%;  top: 68%;   animation-delay: 3.6s; }
.hub-node.n6 { left: 19.5%;  top: 32%;   animation-delay: 4.5s; }

/* ---------- Hosting ---------- */
.hosting-head {
  display: grid; grid-template-columns: 1.3fr 0.7fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  margin-bottom: 40px;
}
.hosting-head .section-sub { margin-bottom: 0; }

.status-panel {
  background: linear-gradient(160deg, rgba(61, 187, 78, 0.07), var(--surface) 55%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  font-size: 14.5px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.status-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 0;
  color: var(--muted);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.07);
}
.status-row b { margin-left: auto; color: var(--text); font-weight: 600; }
.dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }
.dot.ok { background: var(--green); box-shadow: 0 0 10px var(--green); animation: blink 2.4s ease-in-out infinite; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }
.status-uptime { padding-top: 14px; color: var(--muted); }




.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }

.price-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex; flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.price-card:hover { transform: translateY(-6px); border-color: rgba(255, 255, 255, 0.22); }

.price-card.featured {
  background: linear-gradient(170deg, rgba(47, 134, 224, 0.13), rgba(47, 134, 224, 0.03) 55%), var(--surface);
  border-color: rgba(47, 134, 224, 0.45);
  box-shadow: 0 30px 80px rgba(47, 134, 224, 0.14);
}
.flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(120deg, var(--blue), #1b5fae);
  color: #fff; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 5px 16px; border-radius: 999px;
  box-shadow: 0 6px 18px rgba(47, 134, 224, 0.4);
  margin: 0;
}
.price-card h3 { font-size: 21px; margin-bottom: 2px; }
.price-for { color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.price { font-family: var(--font-display); font-size: 54px; font-weight: 800; letter-spacing: -0.03em; margin: 0; line-height: 1; }
.price sup { font-size: 24px; font-weight: 600; margin-right: 2px; }
.price .per { font-size: 17px; font-weight: 500; color: var(--muted); letter-spacing: 0; }
.price-note { color: var(--muted); font-size: 13px; margin: 8px 0 24px; min-height: 1.2em; }

.price-card ul { display: grid; gap: 11px; margin-bottom: 30px; flex: 1; }
.price-card ul li { position: relative; padding-left: 26px; font-size: 15px; }
.price-card ul li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--blue); border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg) scale(0.9);
}
.pricing-fine { margin-top: 30px; color: var(--muted); font-size: 14.5px; }
.pricing-fine a { color: var(--blue); font-weight: 600; }

/* ---------- Process ---------- */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
  margin-top: 12px;
}
.step {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.step-num {
  font-family: var(--font-display); font-weight: 800; font-size: 44px; letter-spacing: -0.03em;
  background-image: linear-gradient(160deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.08));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  display: block; margin-bottom: 14px;
}
.step h3 { font-size: 19px; }
.step p { color: var(--muted); font-size: 14.5px; margin: 0; }
.step:not(:last-child)::after {
  content: "→"; position: absolute; right: -19px; top: 50%; transform: translateY(-50%);
  color: var(--muted); font-size: 18px; z-index: 3;
}

/* ---------- Quotes ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 30px;
  display: flex; flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.quote:hover { transform: translateY(-5px); border-color: rgba(255, 255, 255, 0.2); }
.quote p { font-size: 16.5px; line-height: 1.7; flex: 1; }
.quote footer { display: grid; gap: 1px; padding-top: 18px; border-top: 1px solid var(--line); font-size: 14px; }
.quote footer b { font-weight: 600; }
.quote footer span { color: var(--muted); font-size: 13px; }

/* ---------- Band ---------- */
.band {
  position: relative;
  padding: clamp(72px, 9vw, 110px) 0;
  background:
    radial-gradient(70% 120% at 20% 0%, rgba(47, 134, 224, 0.12), transparent 60%),
    radial-gradient(50% 100% at 90% 100%, rgba(61, 187, 78, 0.08), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.band-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.band-title { font-size: clamp(30px, 4vw, 46px); font-weight: 800; letter-spacing: -0.03em; }
.band-sub { color: var(--muted); font-size: 17px; margin: 0; }
.band-points { display: grid; gap: 22px; }
.band-points li { padding-left: 22px; border-left: 2px solid var(--blue); }
.band-points li:nth-child(1) { border-color: var(--green); }
.band-points li:nth-child(3) { border-color: var(--orange); }
.band-points b { display: block; font-family: var(--font-display); font-size: 17px; font-weight: 700; margin-bottom: 2px; }
.band-points span { color: var(--muted); font-size: 15px; }

/* ---------- Contact ---------- */
.contact-list { display: grid; gap: 20px; margin-top: 8px; }
.contact-list li { display: flex; gap: 16px; align-items: flex-start; }
.ci {
  width: 46px; height: 46px; flex: none;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--blue);
}
.ci svg { width: 22px; height: 22px; }
.contact-list b { display: block; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); margin-bottom: 1px; }
.contact-list a, .contact-list div > span { font-size: 16.5px; font-weight: 500; }
.contact-list a:hover { color: var(--blue); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(28px, 4vw, 42px);
  display: grid; gap: 20px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}
.field { display: grid; gap: 8px; }
.field label { font-size: 13.5px; font-weight: 600; letter-spacing: 0.04em; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  font: inherit; font-size: 15.5px;
  padding: 13px 16px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2398a2b8' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(47, 134, 224, 0.22);
}
.field input::placeholder, .field textarea::placeholder { color: rgba(152, 162, 184, 0.55); }
.form-note { margin: 0; text-align: center; color: var(--muted); font-size: 13px; }
.hp-field { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin: 0; text-align: center; font-size: 14px; color: var(--muted); }
.form-status { min-height: 1.4em; }
.form-status.ok { color: #7ed48a; font-size: 15px; line-height: 1.6; }
.form-status.err { color: #f0938a; }
.form-status a { color: inherit; text-decoration: underline; }

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 820px;
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px;
  font-family: var(--font-display);
  font-size: 17.5px; font-weight: 600;
  transition: color 0.15s ease;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  flex: none;
  width: 30px; height: 30px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--muted);
  font-weight: 400; font-size: 18px;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.faq-list summary:hover { color: var(--blue); }
.faq-list details[open] summary::after {
  transform: rotate(45deg);
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.faq-list details p {
  margin: 0;
  padding: 0 44px 24px 4px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 720px;
}
.faq-list details p a { color: var(--blue); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-2); padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: clamp(36px, 6vw, 80px); padding-bottom: 44px; }
.footer-brand p { color: var(--muted); margin: 16px 0 0; font-size: 15px; }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-nav h4 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); margin-bottom: 16px; }
.footer-nav a { display: block; color: var(--text); font-size: 15px; padding: 5px 0; opacity: 0.85; }
.footer-nav a:hover { opacity: 1; color: var(--blue); }
.footer-legal {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  color: var(--muted); font-size: 13.5px;
}
.footer-legal p { margin: 0; }
.footer-legal a { color: var(--muted); }
.footer-legal a:hover { color: var(--text); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1); }
.reveal.in { opacity: 1; transform: none; }
/* gentle stagger inside grids */
.cards-3 .reveal.in, .pricing .reveal.in, .steps .reveal.in, .quotes .reveal.in { transition-delay: calc(var(--stagger, 0) * 90ms); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001s !important; animation-iteration-count: 1 !important; transition-duration: 0.001s !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1020px) {
  .cards-3, .pricing, .quotes { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:not(:last-child)::after { display: none; }
  .split, .band-inner, .hosting-head { grid-template-columns: 1fr; }
  .hub-wrap { max-width: 440px; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .site-nav {
    position: fixed; inset: var(--header-h) 0 auto;
    flex-direction: column; gap: 4px;
    background: rgba(6, 8, 15, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
    padding: 18px 24px 26px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }
  .site-nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .site-nav a { padding: 12px 14px; font-size: 17px; }
  .nav-toggle { display: flex; }
  .header-actions .btn { display: none; }
}

@media (max-width: 640px) {
  .cards-3, .pricing, .quotes, .steps { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 22px 40px; width: 100%; }
  .hero-cta .btn { width: 100%; }
  .hero { padding-bottom: 70px; }
  .price-card.featured { order: -1; }
  .hub-node { font-size: 11px; padding: 7px 11px; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   Legal pages (/terms/, /privacy-policy/)
   ============================================================ */
.legal-main { padding: calc(var(--header-h) + 56px) 0 80px; }
.legal-main .container { max-width: 840px; }
.legal-main .eyebrow { margin-bottom: 10px; }
.legal-title { font-size: clamp(30px, 5vw, 44px); margin-bottom: 8px; }
.legal-updated { color: var(--muted); font-size: 14px; margin-bottom: 40px; }
.legal-body h2 { font-size: 22px; margin: 44px 0 12px; }
.legal-body h3 { font-size: 17px; margin: 28px 0 8px; }
.legal-body p, .legal-body li { color: var(--muted); }
.legal-body b, .legal-body strong { color: var(--text); }
.legal-body a { color: var(--text); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.3); }
.legal-body a:hover { text-decoration-color: var(--blue); }
.legal-body ul { list-style: disc; padding-left: 22px; margin: 0 0 1em; }
.legal-body ul li { margin-bottom: 6px; }
.legal-body hr { border: 0; border-top: 1px solid var(--line); margin: 40px 0; }
.quotes-note { text-align: center; color: var(--muted); font-size: 14.5px; margin: 28px 0 0; }
.quotes-note a { color: var(--text); }
.quotes-note a:hover { color: var(--blue); }
