:root {
  --bg: #f7f9fc;
  --bg-alt: #eef3f9;
  --dark: #07152f;
  --darker: #050b18;
  --blue: #145cff;
  --electric: #168bff;
  --cyan: #18d9e8;
  --white: #ffffff;
  --text: #526078;
  --muted: #7d899d;
  --border: #e5eaf2;
  --heading: #07152f;
  --shadow: 0 12px 40px rgba(7, 21, 47, 0.08);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --radius-btn: 12px;
  --space: 16px;
  --container: 1200px;
  --hero-max: 1320px;
  --font: Inter, system-ui, sans-serif;
  --display: "Space Grotesk", Inter, sans-serif;
  --grad: linear-gradient(135deg, #145cff 0%, #168bff 52%, #18d9e8 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(900px 420px at 100% 0%, rgba(22, 139, 255, 0.08), transparent 55%),
    radial-gradient(700px 380px at 0% 18%, rgba(24, 217, 232, 0.06), transparent 50%),
    var(--bg);
  line-height: 1.65;
}

img {
  max-width: 100%;
  height: auto;
}

h1, h2, h3 {
  font-family: var(--display);
  color: var(--heading);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.75rem); }
h3 { font-size: 1.25rem; margin-bottom: 8px; }

p { margin: 0 0 16px; }

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover { color: var(--electric); }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  background: var(--white);
  padding: 8px 16px;
  z-index: 100;
}

.skip-link:focus { left: 8px; }

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

.narrow { width: min(100% - 40px, 760px); }

.section {
  padding: 72px 0;
  background-image: radial-gradient(rgba(20, 92, 255, 0.07) 1px, transparent 1px);
  background-size: 24px 24px;
}

.section-alt {
  background-color: var(--bg-alt);
  background-image: radial-gradient(rgba(7, 21, 47, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}

.section-dark {
  background-image: none;
  background-color: var(--dark);
  color: #c5d0e0;
  position: relative;
  overflow: hidden;
}

.section-dark h2,
.section-dark h3 { color: var(--white); }

.section-dark .lede { color: #b7c4d8; }

.section-header { max-width: 720px; margin-bottom: 48px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--grad);
}

.section-dark .eyebrow { color: var(--cyan); }

.lede {
  font-size: 1.05rem;
  color: var(--text);
}

.muted { color: var(--muted); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 22px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--grad);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(20, 92, 255, 0.28);
}

.btn-primary:hover {
  color: var(--white);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  border-color: var(--border);
  color: var(--heading);
}

.btn-secondary:hover { color: var(--heading); border-color: #c9d4e6; }

.text-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--blue);
}

.text-cta.on-dark { color: var(--cyan); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 249, 252, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.page-home .site-header {
  background: transparent;
  backdrop-filter: none;
  border-bottom-color: transparent;
}

.page-home .site-header.is-scrolled {
  background: rgba(5, 11, 24, 0.9);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(24, 217, 232, 0.14);
}

.site-nav {
  position: relative;
  width: min(100% - 40px, var(--hero-max));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.brand { display: flex; align-items: center; }

.brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.brand-logo-footer { height: 64px; }

.nav-panel {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  color: var(--heading);
  font-weight: 500;
}

.nav-links a:hover { color: var(--blue); }

.page-home .nav-links a { color: #dce8ff; }
.page-home .nav-links a:hover { color: var(--cyan); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 6px 10px;
  background: var(--heading);
}

.page-home .nav-toggle span { background: #e8f0ff; }

/* Hero band: one continuous dark field through lifecycle */
.hero-band {
  position: relative;
  overflow: hidden;
}

.page-home .hero-band {
  background:
    radial-gradient(ellipse 70% 55% at 82% 18%, rgba(22, 139, 255, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 45% at 8% 70%, rgba(24, 217, 232, 0.14), transparent 50%),
    #050b18;
  margin-top: -76px;
  color: #c5d4ea;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-home .hero-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(24, 217, 232, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 217, 232, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, #000 35%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}

.page-home .hero-band::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: 4%;
  top: 8%;
  background: radial-gradient(circle, rgba(24, 217, 232, 0.22), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
}

.hero {
  position: relative;
  z-index: 1;
  padding: 32px 0 48px;
}

.page-home .hero {
  background: none;
  padding: 108px 0 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.page-home .hero h1 { color: #fff; }
.page-home .hero .lede { color: #b7c6dc; }
.page-home .hero .eyebrow { color: var(--cyan); }
.page-home .hero .btn-secondary {
  border-color: rgba(232, 240, 255, 0.22);
  color: #e8f0ff;
  background: rgba(255, 255, 255, 0.04);
}

.hero-motto {
  margin-top: 28px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: rgba(24, 217, 232, 0.7);
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--hero-max));
  margin-inline: auto;
  display: grid;
  gap: 48px;
  align-items: center;
}

.hero-copy h1 { max-width: 16ch; }

.arch {
  position: relative;
  min-height: 420px;
  background:
    radial-gradient(circle at 78% 18%, rgba(24, 217, 232, 0.16), transparent 34%),
    linear-gradient(165deg, rgba(20, 92, 255, 0.18), transparent 42%),
    linear-gradient(180deg, #0d1c38 0%, #071226 100%);
  border: 1px solid rgba(24, 217, 232, 0.28);
  border-radius: 28px;
  padding: 28px 22px 32px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(20, 92, 255, 0.12),
    0 28px 70px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.arch-orbit {
  position: absolute;
  width: 240px;
  height: 240px;
  right: -40px;
  top: -50px;
  border: 1px dashed rgba(24, 217, 232, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.arch-orbit-2 {
  width: 320px;
  height: 320px;
  right: -80px;
  top: -90px;
  border-style: solid;
  border-color: rgba(20, 92, 255, 0.12);
}

.arch-mark {
  position: absolute;
  right: 18px;
  top: 22px;
  width: 92px;
  opacity: 0.45;
  filter: drop-shadow(0 0 18px rgba(24, 217, 232, 0.35));
}

.arch-wires {
  position: absolute;
  inset: 18px 10px 10px;
  width: calc(100% - 20px);
  height: calc(100% - 28px);
  stroke: rgba(24, 217, 232, 0.38);
  stroke-width: 1.4;
  pointer-events: none;
}

.arch-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas:
    ". product ."
    "web api cloud"
    ". deploy .";
  gap: 28px 10px;
  align-items: center;
  justify-items: center;
  min-height: 340px;
}

.n-product { grid-area: product; }
.n-web { grid-area: web; }
.n-api { grid-area: api; }
.n-cloud { grid-area: cloud; }
.n-deploy { grid-area: deploy; }

.arch-node {
  position: relative;
  z-index: 1;
  min-width: 108px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(8, 18, 40, 0.92);
  border: 1px solid rgba(24, 217, 232, 0.32);
  color: #e8f4ff;
  text-align: center;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.28),
    0 0 20px rgba(22, 139, 255, 0.16);
  backdrop-filter: blur(8px);
}

.arch-node strong {
  display: block;
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.arch-node small {
  display: block;
  margin-top: 4px;
  color: #8ea4c0;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
}

.n-product {
  min-width: 168px;
  padding: 14px 16px 16px;
  animation: float 6s ease-in-out infinite;
}

.win-dots {
  display: flex;
  gap: 5px;
  margin-bottom: 10px;
}

.win-dots::before,
.win-dots::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #18d9e8;
}

.win-dots::after { background: #168bff; box-shadow: 12px 0 0 #145cff; }

.n-web { animation: float 7s ease-in-out infinite 0.4s; }
.n-api { animation: float 5.5s ease-in-out infinite 0.8s; }
.n-cloud { animation: float 6.5s ease-in-out infinite 0.2s; }
.n-deploy { animation: float 6s ease-in-out infinite 1s; }

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: var(--cyan);
  opacity: 0.7;
}

.p1 { top: 28%; left: 18%; animation: float 6s ease-in-out infinite; }
.p2 { top: 58%; right: 16%; animation: float 7s ease-in-out infinite 0.6s; }
.p3 { bottom: 18%; left: 42%; animation: float 5s ease-in-out infinite 1s; }

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

.pixel-cluster {
  position: absolute;
  top: 18px;
  right: 88px;
  display: grid;
  grid-template-columns: repeat(3, 7px);
  gap: 4px;
}

.pixel-cluster span {
  width: 7px;
  height: 7px;
  border-radius: 1px;
  background: var(--cyan);
  opacity: 0.85;
}

.pixel-cluster span:nth-child(2) { width: 5px; height: 5px; opacity: 0.5; margin-top: 2px; }
.pixel-cluster span:nth-child(4) { background: var(--electric); opacity: 0.7; }
.pixel-cluster span:nth-child(5) { width: 4px; height: 4px; opacity: 0.35; }

/* Lifecycle */
.lifecycle {
  position: relative;
  z-index: 2;
  padding: 0 0 48px;
  margin: 0;
}

.lifecycle-kicker {
  font-family: var(--display);
  font-weight: 600;
  color: #f2f6ff;
  margin-bottom: 24px;
}

.lifecycle-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(170px, 1fr);
  gap: 12px;
  overflow-x: auto;
  list-style: none;
  margin: 0;
  padding: 0 0 8px;
}

.lifecycle-track li {
  background: #fff;
  border: 1px solid rgba(229, 234, 242, 0.9);
  border-radius: var(--radius);
  padding: 20px;
  min-width: 170px;
  box-shadow: 0 18px 50px rgba(5, 11, 24, 0.28);
  position: relative;
}

.lifecycle-track li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 20px;
  right: 20px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--grad);
}

.lifecycle-track em {
  display: block;
  font-style: normal;
  font-family: var(--display);
  color: var(--blue);
  font-size: 0.78rem;
  margin-bottom: 6px;
}

.lifecycle-track strong {
  display: block;
  font-family: var(--display);
  color: var(--heading);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.lifecycle-track span {
  color: var(--muted);
  font-size: 0.92rem;
}

/* Services */
.service-grid,
.why-grid {
  display: grid;
  gap: 20px;
}

.service-card,
.why-card,
.audience-card,
.corp-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 32px rgba(7, 21, 47, 0.05);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: 260px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad);
  opacity: 0.7;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: #bdd0f8;
  box-shadow: 0 18px 40px rgba(20, 92, 255, 0.12);
}

.service-card:hover .service-icon { background: var(--grad); color: white; }
.service-card:hover .card-arrow { transform: translateX(4px); }

.service-num {
  font-family: var(--display);
  color: transparent;
  background: var(--grad);
  background-clip: text;
  -webkit-background-clip: text;
  font-weight: 700;
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  color: var(--blue);
  background: #eef4ff;
  margin: 12px 0;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-arrow {
  justify-self: end;
  color: var(--blue);
  transition: transform 0.2s ease;
}

/* Partner */
.partner .watermark {
  position: absolute;
  right: -2%;
  bottom: -18%;
  font-family: var(--display);
  font-size: 28rem;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
}

.partner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(20, 92, 255, 0.18), transparent 40%, rgba(24, 217, 232, 0.12));
  animation: wash 12s ease-in-out infinite alternate;
}

@keyframes wash {
  from { opacity: 0.55; }
  to { opacity: 1; }
}

.partner .container { position: relative; z-index: 1; }

.partner-grid {
  display: grid;
  gap: 20px;
}

.partner-col {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(24, 217, 232, 0.16);
  border-radius: var(--radius);
  padding: 24px;
  backdrop-filter: blur(8px);
}

.partner-col h3 {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.partner-col h3::after {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  margin-top: 10px;
  border-radius: 2px;
  background: var(--grad);
}

/* Process */
.process-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 24px;
}

.process-timeline li {
  position: relative;
  padding-left: 28px;
  border-left: 1px solid var(--border);
}

.process-timeline span {
  font-family: var(--display);
  color: var(--white);
  font-weight: 700;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--grad);
  margin-bottom: 12px;
  box-shadow: 0 8px 20px rgba(20, 92, 255, 0.28);
  position: relative;
  z-index: 1;
}

/* Audience */
.audience-grid { display: grid; gap: 20px; }

.audience-card {
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
}

.audience-startup {
  background:
    linear-gradient(180deg, rgba(20, 92, 255, 0.06), transparent 40%),
    var(--white);
}

.audience-sme {
  background:
    linear-gradient(180deg, rgba(24, 217, 232, 0.1), transparent 40%),
    var(--white);
}

.audience-card .text-cta { margin-top: 8px; }

/* Tech */
.tech-section {
  position: relative;
  overflow: hidden;
  background-image: none;
  background-color: #07152f;
  color: #c5d4ea;
}

.tech-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(24, 217, 232, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 217, 232, 0.07) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 20%, transparent 75%);
  pointer-events: none;
}

.tech-section::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -80px;
  top: -120px;
  background: radial-gradient(circle, rgba(22, 139, 255, 0.28), transparent 65%);
  pointer-events: none;
}

.tech-section .container { position: relative; z-index: 1; }

.tech-section h2 { color: #fff; }

.tech-section .lede { color: #b7c6dc; }

.tech-section .eyebrow { color: var(--cyan); }

.tech-cats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.tech-cats li {
  border: 1px solid rgba(24, 217, 232, 0.18);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  padding: 18px 16px;
  font-weight: 600;
  color: #e8f0ff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-family: var(--display);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}

/* About */
.about-grid,
.contact-grid {
  display: grid;
  gap: 32px;
}

.corp-card { border-radius: var(--radius-lg); }

.corp-logo { height: 88px; width: auto; margin-bottom: 16px; }

.corp-name {
  font-weight: 600;
  color: var(--heading);
  letter-spacing: 0.01em;
}

.section-dark .corp-name,
.site-footer .corp-name { color: var(--white); }

/* CTA band */
.why-index {
  display: block;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}

.cta-band {
  text-align: center;
  padding: 96px 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(22, 139, 255, 0.35), transparent 55%),
    var(--dark);
}

.cta-band .container { position: relative; z-index: 1; }

.cta-band .lede { margin-inline: auto; max-width: 560px; }

.cta-band .hero-actions { justify-content: center; }

.cta-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(52vw, 420px);
  transform: translate(-50%, -50%);
  opacity: 0.12;
  pointer-events: none;
}

/* Form */
.enquiry-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.field { margin: 0; display: flex; flex-direction: column; gap: 8px; }

.field label { font-weight: 600; color: var(--heading); font-size: 0.92rem; }

.field-input,
select.field-input,
textarea.field-input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font: inherit;
  background: var(--white);
  color: var(--heading);
}

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

.field-input:focus {
  outline: 2px solid rgba(22, 139, 255, 0.35);
  border-color: var(--electric);
}

.field-input.is-invalid { border-color: #d64545; }

.errorlist {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #b42318;
  font-size: 0.85rem;
}

.form-success {
  background: #e8fbf4;
  color: #0f6b4c;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}

.form-error {
  background: #fdecec;
  color: #9b1c1c;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
}

/* Map */
.map-card {
  min-height: 220px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 46%, rgba(24, 217, 232, 0.35), transparent 22%),
    linear-gradient(160deg, #0b1c3d, #07152f);
  color: #d7e6f7;
  display: grid;
  place-content: center;
  text-align: center;
  position: relative;
}

.map-label {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--white);
  margin: 0 0 12px;
}

.map-pin {
  width: 12px;
  height: 12px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 8px rgba(24, 217, 232, 0.18);
}

address { font-style: normal; }

/* Footer */
.site-footer {
  background:
    radial-gradient(600px 240px at 80% 0%, rgba(20, 92, 255, 0.18), transparent 60%),
    var(--darker);
  color: #9aabc2;
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-tagline { color: #d5e2f2; }

.site-footer a { color: #d5e2f2; }

.site-footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }

.footer-bottom {
  border-top: 1px solid #15233c;
  padding-top: 24px;
  display: grid;
  gap: 8px;
  font-size: 0.85rem;
}

.footer-legal a { color: var(--cyan); }

.legal-page { padding-top: 48px; }

.legal-page h2 { font-size: 1.35rem; margin-top: 32px; }

/* Reveal */
.reveal {
  animation: rise 0.7s ease both;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

@media (min-width: 768px) {
  .container { width: min(100% - 64px, var(--container)); }
  .section { padding: 88px 0; }
  .hero-grid { grid-template-columns: 1.05fr 0.95fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr 1fr; }
  .field-full { grid-column: 1 / -1; }
  .about-grid,
  .contact-grid,
  .audience-grid,
  .partner-grid,
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.2fr 0.8fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .tech-cats { grid-template-columns: repeat(4, 1fr); }
  .process-timeline {
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    position: relative;
  }
  .process-timeline::before {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    height: 2px;
    background: linear-gradient(90deg, #145cff, #18d9e8);
    opacity: 0.35;
  }
  .process-timeline li {
    border-left: 0;
    padding-left: 0;
  }
}

@media (min-width: 1024px) {
  .section { padding: 112px 0; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 767px) {
  .nav-toggle { display: block; }
  .nav-panel {
    display: none;
    position: absolute;
    left: 20px;
    right: 20px;
    top: 72px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    box-shadow: var(--shadow);
  }
  .page-home .nav-panel {
    background: #0b1730;
    border-color: rgba(24, 217, 232, 0.18);
  }
  .page-home .nav-panel a { color: #e8f0ff; }
  .nav-panel.is-open { display: flex; }
  .nav-links { flex-direction: column; gap: 12px; }
  .hero-actions .btn { width: 100%; }
  .brand-logo { height: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { animation: none; }
  .particle, .partner::before, .arch-node { animation: none; }
  .btn, .service-card, .card-arrow { transition: none; }
}
