:root {
  --bg: #06101e;
  --bg-deep: #030914;
  --panel: #0b1b2f;
  --panel-soft: #102844;
  --text: #f6f9ff;
  --muted: #aab8cc;
  --muted-strong: #d9e5f3;
  --line: rgba(255, 255, 255, 0.14);
  --line-soft: rgba(255, 255, 255, 0.08);
  --cyan: #21d4fd;
  --mint: #44f1c4;
  --green: #35d779;
  --blue: #237bff;
  --danger: #ff8585;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
  --header-height: 76px;
  --radius: 8px;
}

* { box-sizing: border-box; }

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

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 0%, rgba(35, 123, 255, 0.2), transparent 30rem),
    radial-gradient(circle at 85% 12%, rgba(68, 241, 196, 0.13), transparent 28rem),
    linear-gradient(180deg, var(--bg), var(--bg-deep));
  color: var(--text);
  font: 16px/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 78%);
}

body::after {
  z-index: -1;
  background-image:
    radial-gradient(circle, rgba(33, 212, 253, 0.38) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(68, 241, 196, 0.28) 0 1px, transparent 1.5px);
  background-position: 0 0, 34px 28px;
  background-size: 120px 120px, 150px 150px;
  opacity: 0.2;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
svg { display: block; max-width: 100%; }

.wrap {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--mint);
  color: #04111b;
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid rgba(68, 241, 196, 0.9); outline-offset: 3px; }

.site-header,
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 16, 30, 0.62);
  backdrop-filter: blur(22px);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(6, 16, 30, 0.88);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
}

.nav {
  position: relative;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-size: 0.93rem;
  font-weight: 850;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark,
.brand i {
  position: relative;
  display: inline-grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--mint), var(--cyan), var(--blue));
  box-shadow: 0 0 34px rgba(33, 212, 253, 0.52);
}

.brand-mark span,
.brand i::before {
  content: "";
  width: 13px;
  height: 13px;
  border: 2px solid rgba(5, 15, 28, 0.88);
  border-radius: 50%;
}

.primary-nav,
.nav nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.nav-link,
.nav nav a,
.nav > a:not(.brand) {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 0 13px;
  border-radius: 999px;
  color: #d4dfed;
  font-size: 0.92rem;
  font-weight: 760;
  letter-spacing: 0;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-link:hover,
.nav-link.active,
.nav nav a:hover,
.nav nav a.active,
.nav > a:not(.brand):hover {
  background: rgba(33, 212, 253, 0.13);
  color: #ffffff;
}

.menu-toggle,
.menu {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  border-radius: 999px;
  background: var(--text);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  overflow: hidden;
  padding: 116px 0 96px;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 14% 22%, rgba(33, 212, 253, 0.2), transparent 24rem),
    radial-gradient(circle at 80% 10%, rgba(68, 241, 196, 0.16), transparent 24rem),
    radial-gradient(circle at 68% 76%, rgba(35, 123, 255, 0.19), transparent 27rem);
}

.hero-backdrop::before,
.hero-backdrop::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-backdrop::before {
  inset: 7% 5% 12%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: 0.32;
}

.hero-backdrop::after {
  width: 420px;
  height: 420px;
  right: 4%;
  top: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(68, 241, 196, 0.17), transparent 66%);
  filter: blur(5px);
  animation: haloFloat 12s ease-in-out infinite alternate;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.82fr);
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #c0d3e7;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 16px rgba(68, 241, 196, 0.85);
}

h1, h2, h3, p { overflow-wrap: anywhere; }

h1 {
  max-width: 820px;
  margin: 22px 0 24px;
  color: #ffffff;
  font-size: 4.85rem;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy p,
.section-heading p,
.lead,
.company-layout p,
.contact-copy p,
.legal-content p,
.legal-content li {
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-copy p {
  max-width: 690px;
  margin: 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 30px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 850;
  letter-spacing: 0;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover { transform: translateY(-2px); }

.btn.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--mint), var(--cyan));
  color: #03111c;
  box-shadow: 0 18px 44px rgba(33, 212, 253, 0.22);
}

.btn.ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
}

.hero-signals {
  display: grid;
  max-width: 680px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.hero-signals span {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 16px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.hero-signals strong { color: #ffffff; font-size: 0.96rem; }
.hero-signals small { color: var(--muted); font-size: 0.78rem; }

.studio-panel,
.company-card,
.contact-form,
.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(16, 40, 68, 0.93), rgba(6, 15, 29, 0.93));
  box-shadow: var(--shadow);
}

.studio-panel {
  position: relative;
  overflow: hidden;
  padding: 30px;
}

.studio-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: radial-gradient(circle at 100% 0, rgba(33, 212, 253, 0.18), transparent 38%);
}

.studio-panel > * { position: relative; }

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.panel-topline strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted-strong);
  text-transform: none;
}

.panel-topline strong::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 15px rgba(53, 215, 121, 0.8);
}

.studio-panel h2 {
  margin: 18px 0 24px;
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: 0;
}

.workflow { display: grid; gap: 12px; }

.workflow article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 17px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.workflow article > span,
.card-index {
  color: var(--cyan);
  font-weight: 900;
}

.workflow h3,
.workflow p { margin: 0; }
.workflow h3 { color: #ffffff; font-size: 1rem; }
.workflow p { color: var(--muted); font-size: 0.88rem; }
.panel-tags,
.feature-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.panel-tags { margin-top: 20px; }

.panel-tags span,
.feature-cloud span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 6px 11px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #dce8f6;
  font-size: 0.84rem;
  font-weight: 760;
}

.brand-strip {
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.035);
}

.brand-strip .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 26px;
  padding: 20px 0;
  color: #8fa0b7;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.brand-strip span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-strip span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(68, 241, 196, 0.76);
}

.section {
  position: relative;
  padding: 98px 0;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading h2,
.contact-copy h2,
.legal-hero h1 {
  margin: 14px 0 16px;
  color: #ffffff;
  font-size: 3.35rem;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.section-heading p {
  max-width: 720px;
  margin: 0;
}

.centered p {
  margin-right: auto;
  margin-left: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.service-card,
.why-grid article,
.tech-grid span {
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.038));
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 24px;
}

.service-card:hover,
.why-grid article:hover,
.tech-grid span:hover {
  transform: translateY(-4px);
  border-color: rgba(33, 212, 253, 0.34);
  background: linear-gradient(180deg, rgba(33, 212, 253, 0.09), rgba(255, 255, 255, 0.045));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.28);
}

.service-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  place-items: center;
  border: 1px solid rgba(33, 212, 253, 0.22);
  border-radius: var(--radius);
  background: rgba(33, 212, 253, 0.1);
  color: var(--cyan);
}

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

.card-index { font-size: 0.78rem; }

.service-card h3,
.why-grid h3 {
  margin: 10px 0;
  color: #ffffff;
  font-size: 1.22rem;
  line-height: 1.22;
}

.service-card p,
.service-card li,
.why-grid p {
  color: var(--muted);
  font-size: 0.96rem;
}

.service-card p { margin: 0 0 18px; }

.service-card ul {
  display: grid;
  gap: 7px;
  margin: auto 0 0;
  padding-left: 19px;
}

.service-card li::marker { color: var(--mint); }

.product-section,
.why-section { background: rgba(255, 255, 255, 0.035); }

.product-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.74fr);
  gap: 54px;
  align-items: center;
  overflow: hidden;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 100% 0%, rgba(33, 212, 253, 0.19), transparent 32rem),
    radial-gradient(circle at 0% 100%, rgba(68, 241, 196, 0.13), transparent 28rem),
    linear-gradient(145deg, rgba(9, 32, 57, 0.94), rgba(5, 12, 24, 0.94));
  box-shadow: var(--shadow);
}

.product-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.24;
}

.product-showcase > * { position: relative; }

.product-content h2 {
  margin: 10px 0 12px;
  color: #ffffff;
  font-size: 4.6rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.lead { max-width: 650px; margin: 0; }
.feature-cloud { margin: 28px 0 30px; }

.feature-cloud span:first-child,
.feature-cloud span:nth-child(2),
.feature-cloud span:nth-child(3) {
  border-color: rgba(68, 241, 196, 0.22);
  background: rgba(68, 241, 196, 0.08);
}

.store-button {
  display: inline-flex;
  min-height: 58px;
  min-width: 192px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  cursor: not-allowed;
  opacity: 1;
}

.store-button span { color: var(--muted); font-size: 0.78rem; }
.store-button strong { font-size: 1.03rem; }

.phone-stage { display: grid; place-items: center; }

.phone-frame {
  position: relative;
  width: min(330px, 100%);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 34px;
  background: linear-gradient(160deg, #050b14, #111e31);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.38), 0 0 70px rgba(33, 212, 253, 0.18);
}

.phone-speaker {
  position: absolute;
  top: 21px;
  left: 50%;
  z-index: 2;
  width: 74px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.17);
  transform: translateX(-50%);
}

.phone-screen {
  min-height: 560px;
  overflow: hidden;
  padding: 34px 18px 18px;
  border-radius: 25px;
  background:
    radial-gradient(circle at 30% 0%, rgba(68, 241, 196, 0.22), transparent 20rem),
    linear-gradient(180deg, #092447, #071222 62%, #06101e);
}

.phone-screen header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: #ffffff;
  font-weight: 850;
}

.phone-screen header strong {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(68, 241, 196, 0.15);
  color: var(--mint);
  font-size: 0.76rem;
}
.challenge-card {
  margin: 24px 0 16px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(33, 212, 253, 0.28), rgba(35, 123, 255, 0.22));
}

.challenge-card small {
  color: #d9fbff;
  font-size: 0.74rem;
  font-weight: 850;
}

.challenge-card h3 {
  margin: 10px 0 8px;
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1.1;
}

.challenge-card p {
  margin: 0;
  color: #d7e8f7;
  font-size: 0.9rem;
}

.app-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.app-tiles span,
.progress-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.app-tiles span {
  display: flex;
  min-height: 92px;
  flex-direction: column;
  justify-content: center;
  padding: 15px;
}

.app-tiles b { color: #ffffff; font-size: 1rem; }
.app-tiles small,
.progress-card span { color: var(--muted); font-size: 0.78rem; }

.progress-card {
  display: flex;
  margin-top: 14px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
}

.progress-card strong {
  max-width: 140px;
  color: #ffffff;
  line-height: 1.22;
  text-align: right;
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.tech-grid span {
  display: grid;
  min-height: 88px;
  place-items: center;
  padding: 16px;
  color: #f7fbff;
  font-weight: 850;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.why-grid article { padding: 24px; }
.why-grid p { margin: 0; }

.company-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.85fr);
  gap: 50px;
  align-items: start;
}

.company-card { padding: 28px; }

.company-card h3,
.legal-card h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 1.35rem;
}

dl { margin: 0; }

.company-card dl div,
.legal-card dl div {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-soft);
}

.company-card dl div:last-child,
.legal-card dl div:last-child { border-bottom: 0; }

dt { color: #91a2b8; font-weight: 760; }
dd { margin: 0; color: #f4f8ff; }

.contact-section { padding-bottom: 112px; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: 42px;
  align-items: start;
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 0% 0%, rgba(68, 241, 196, 0.18), transparent 24rem),
    linear-gradient(135deg, rgba(7, 63, 86, 0.88), rgba(12, 38, 78, 0.9));
  box-shadow: var(--shadow);
}

.contact-copy h2 { margin-top: 14px; }

.mail-link {
  display: inline-flex;
  margin-top: 16px;
  color: #ffffff;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(68, 241, 196, 0.75);
  text-underline-offset: 6px;
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 24px;
  background: rgba(6, 16, 30, 0.72);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.field { display: grid; gap: 7px; }

.field label {
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 760;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field input {
  min-height: 48px;
  padding: 0 14px;
}

.field textarea {
  min-height: 132px;
  resize: vertical;
  padding: 12px 14px;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(68, 241, 196, 0.7);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 4px rgba(68, 241, 196, 0.12);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: var(--danger); }

.form-submit { width: 100%; cursor: pointer; }

.form-status {
  min-height: 22px;
  margin: 0;
  color: #d8f7ea;
  font-size: 0.9rem;
}

.form-status.error { color: #ffd4d4; }

.site-footer,
footer {
  padding: 64px 0 26px;
  background: #030914;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid,
.foot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: 42px;
  align-items: start;
}

.footer-grid p,
.foot p {
  max-width: 440px;
  color: var(--muted);
}

.footer-links,
.foot > div:last-child {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.footer-links a,
.foot a:not(.brand) {
  color: #aebbd0;
  font-weight: 720;
}

.footer-links a:hover,
.foot a:not(.brand):hover { color: #ffffff; }

.footer-bottom,
.bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 42px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
  color: #8394ad;
  font-size: 0.88rem;
}

.legal-main { padding: 82px 0 98px; }
.legal-hero { margin-bottom: 32px; }
.legal-hero h1 { max-width: 780px; }
.legal-content { max-width: 900px; }

.legal-content h2 {
  margin: 34px 0 10px;
  color: #ffffff;
  font-size: 1.35rem;
}

.legal-content a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-card { padding: 28px; }

.legal-note {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}
.enhanced [data-load] {
  opacity: 0;
  transform: translateY(18px);
  animation: revealUp 720ms ease forwards;
}

.enhanced [data-load]:nth-child(2) { animation-delay: 80ms; }
.enhanced [data-load]:nth-child(3) { animation-delay: 160ms; }
.enhanced [data-load]:nth-child(4) { animation-delay: 240ms; }
.enhanced [data-load]:nth-child(5) { animation-delay: 320ms; }

.enhanced [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.enhanced [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes revealUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes haloFloat {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-28px, 24px, 0) scale(1.05); }
}

@media (max-width: 1180px) {
  h1 { font-size: 4.1rem; }
  .service-grid,
  .why-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tech-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 920px) {
  :root { --header-height: 70px; }

  .menu-toggle,
  .menu { display: grid; }

  .primary-nav,
  .nav nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(340px, calc(100vw - 32px));
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border-radius: var(--radius);
    background: rgba(7, 17, 31, 0.96);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .primary-nav.is-open,
  .nav nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-link,
  .nav nav a,
  .nav > a:not(.brand) {
    width: 100%;
    justify-content: flex-start;
    min-height: 44px;
    padding: 0 14px;
  }

  .hero {
    min-height: auto;
    padding: 88px 0 72px;
  }

  .hero-grid,
  .product-showcase,
  .company-layout,
  .contact-layout { grid-template-columns: 1fr; }

  .studio-panel,
  .product-showcase,
  .contact-layout { padding: 30px; }

  .section-heading h2,
  .contact-copy h2,
  .legal-hero h1 { font-size: 2.75rem; }

  .product-content h2 { font-size: 3.9rem; }
  .phone-stage { order: 2; }
}

@media (max-width: 680px) {
  .wrap { width: calc(100% - 28px); }

  .brand {
    gap: 9px;
    font-size: 0.82rem;
  }

  .brand-mark,
  .brand i {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  h1 { font-size: 2.7rem; }

  .hero-copy p,
  .section-heading p,
  .lead,
  .company-layout p,
  .contact-copy p,
  .legal-content p,
  .legal-content li { font-size: 1rem; }

  .actions,
  .hero-signals {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn { width: 100%; }
  .brand-strip .wrap { justify-content: flex-start; }
  .section { padding: 74px 0; }

  .section-heading h2,
  .contact-copy h2,
  .legal-hero h1 { font-size: 2.25rem; }

  .service-grid,
  .why-grid,
  .tech-grid { grid-template-columns: 1fr; }

  .service-card,
  .why-grid article,
  .company-card,
  .legal-card,
  .contact-form { padding: 20px; }

  .product-showcase,
  .studio-panel,
  .contact-layout { padding: 22px; }

  .product-content h2 { font-size: 3rem; }

  .phone-frame {
    width: min(292px, 100%);
    border-radius: 30px;
  }

  .phone-screen {
    min-height: 520px;
    padding: 32px 14px 14px;
    border-radius: 22px;
  }

  .company-card dl div,
  .legal-card dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-grid,
  .foot { grid-template-columns: 1fr; }

  .footer-links,
  .foot > div:last-child { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  h1 { font-size: 2.35rem; }

  .section-heading h2,
  .contact-copy h2,
  .legal-hero h1 { font-size: 2rem; }

  .product-content h2 { font-size: 2.65rem; }

  .progress-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .progress-card strong {
    max-width: none;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .enhanced [data-load],
  .enhanced [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
@media (max-width: 920px) {
  .primary-nav,
  .nav nav {
    visibility: hidden;
  }

  .primary-nav.is-open,
  .nav nav.open {
    visibility: visible;
  }
}