:root {
  --blue: #1288ff;
  --blue-deep: #0056d8;
  --violet: #7a26ff;
  --navy: #06184a;
  --ink: #0b1437;
  --muted: #667097;
  --orange: #ff941e;
  --cyan: #58d7ff;
  --ice: #f5f9ff;
  --white: #ffffff;
  --line: rgba(13, 37, 103, 0.12);
  --shadow: 0 24px 70px rgba(4, 34, 96, 0.16);
  --gradient: linear-gradient(135deg, var(--blue), var(--violet));
  --ignite: linear-gradient(135deg, var(--orange), #ffd46a);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% 8%, rgba(122, 38, 255, 0.12), transparent 28rem),
    radial-gradient(circle at 7% 18%, rgba(18, 136, 255, 0.12), transparent 24rem),
    var(--white);
  line-height: 1.6;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  transition: transform 0.18s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(255, 148, 30, 0.78);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(18, 136, 255, 0.12);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 14px 40px rgba(6, 24, 74, 0.08);
  background: rgba(255, 255, 255, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 184px;
}

.brand-mark-wrap {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(18, 136, 255, 0.14);
}

.brand-mark {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  font-size: 1.26rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0;
  color: var(--navy);
}

.brand-name span + span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.8vw, 26px);
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(6, 24, 74, 0.76);
}

.site-nav a {
  position: relative;
  padding: 10px 2px;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--gradient);
  transition: transform 0.2s ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: var(--gradient);
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 16px 35px rgba(18, 136, 255, 0.28);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-cta:hover,
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(122, 38, 255, 0.28);
}

.btn.secondary {
  background: var(--white);
  color: var(--blue-deep);
  border: 1px solid rgba(18, 136, 255, 0.22);
  box-shadow: none;
}

.btn.ignite {
  background: var(--ignite);
  color: var(--navy);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.section {
  position: relative;
  padding: clamp(70px, 9vw, 120px) clamp(18px, 5vw, 72px);
}

.section.blue {
  background: linear-gradient(180deg, #1489ff 0%, #0878ef 100%);
  color: var(--white);
}

.section.soft {
  background: linear-gradient(180deg, #ffffff 0%, #f3f8ff 100%);
}

.section.purple-soft {
  background: linear-gradient(180deg, #f6f1ff 0%, #ffffff 100%);
}

.container {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--violet);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.blue .eyebrow { color: #dfeeff; }

h1, h2, h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.05;
}

.blue h1,
.blue h2,
.blue h3 { color: var(--white); }

h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 6.2vw, 5.5rem);
  letter-spacing: 0;
  text-wrap: balance;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(1.85rem, 4vw, 3.8rem);
  text-wrap: balance;
  overflow-wrap: break-word;
}

h3 {
  font-size: clamp(1.12rem, 1.7vw, 1.55rem);
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.22rem);
}

.blue .lead { color: rgba(255, 255, 255, 0.82); }

.hero {
  min-height: min(820px, calc(100vh - 76px));
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: clamp(48px, 7vw, 82px);
  padding-bottom: clamp(90px, 10vw, 128px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 0.82fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: center;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 650px;
  margin-top: 44px;
}

.metric {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 40px rgba(18, 136, 255, 0.08);
}

.metric strong {
  display: block;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  color: var(--blue-deep);
}

.metric span {
  color: var(--muted);
  font-size: 0.88rem;
}

.launch-visual {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
}

.asset-hero {
  min-height: 540px;
  isolation: isolate;
}

.asset-hero::before {
  content: "";
  position: absolute;
  inset: 8% 0 4%;
  z-index: -1;
  border-radius: 32px;
  background:
    radial-gradient(circle at 55% 48%, rgba(122, 38, 255, 0.24), transparent 19rem),
    radial-gradient(circle at 35% 72%, rgba(255, 148, 30, 0.16), transparent 14rem);
  filter: blur(2px);
}

.asset-hero img {
  width: min(92%, 420px);
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 28px 54px rgba(6, 24, 74, 0.22));
  animation: floatRocket 5.4s ease-in-out infinite;
}

.orbit-card {
  position: absolute;
  width: min(100%, 510px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.96) 0 36%, transparent 36.5%),
    conic-gradient(from 210deg, var(--blue), var(--blue), var(--violet), var(--violet), var(--blue));
  box-shadow: inset 0 0 0 22px rgba(255, 255, 255, 0.82), 0 34px 90px rgba(18, 136, 255, 0.22);
  animation: slowSpin 14s linear infinite;
}

.rocket {
  position: relative;
  z-index: 2;
  width: 170px;
  animation: floatRocket 4.4s ease-in-out infinite;
}

.flame {
  position: absolute;
  z-index: 1;
  width: 72px;
  height: 190px;
  left: 50%;
  top: 56%;
  transform: translate(-50%, 0) rotate(33deg);
  border-radius: 50% 50% 60% 60%;
  background: linear-gradient(180deg, #fff2ad, var(--orange) 55%, rgba(255, 148, 30, 0));
  filter: blur(0.5px);
  opacity: 0.9;
}

.rocket-body {
  width: 84px;
  height: 230px;
  margin: 0 auto;
  border-radius: 50% 50% 28% 28%;
  background: linear-gradient(90deg, #ffffff 0 28%, #eaf5ff 29% 56%, #07194c 57%);
  transform: rotate(33deg);
  box-shadow: 0 20px 40px rgba(6, 24, 74, 0.24);
}

.rocket-window {
  position: absolute;
  width: 36px;
  height: 36px;
  top: 54px;
  left: 72px;
  border-radius: 50%;
  background: radial-gradient(circle, #eaf6ff 0 35%, var(--blue) 38% 68%, var(--navy) 70%);
}

.fin {
  position: absolute;
  width: 42px;
  height: 78px;
  top: 132px;
  background: var(--navy);
}

.fin.left {
  left: 29px;
  border-radius: 100% 0 0 30%;
  transform: rotate(22deg);
}

.fin.right {
  right: 25px;
  border-radius: 0 100% 30% 0;
  transform: rotate(47deg);
}

.spark {
  position: absolute;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 8px rgba(255, 148, 30, 0.12);
}

.spark.one { width: 10px; height: 10px; left: 9%; top: 22%; }
.spark.two { width: 13px; height: 13px; right: 8%; top: 15%; background: var(--violet); }
.spark.three { width: 8px; height: 8px; right: 15%; bottom: 18%; background: var(--blue); }

.wave-bottom::after,
.wave-top::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: clamp(46px, 7vw, 92px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(245, 249, 255, 0.92)),
    radial-gradient(80% 90% at 50% 100%, rgba(88, 215, 255, 0.16), transparent 70%);
  pointer-events: none;
}

.wave-bottom::after {
  bottom: -1px;
}

.wave-top::before {
  top: -1px;
  transform: rotate(180deg);
}

.blue.wave-bottom::after {
  background:
    linear-gradient(180deg, rgba(8, 120, 239, 0), rgba(245, 249, 255, 0.96)),
    radial-gradient(80% 100% at 50% 100%, rgba(255, 255, 255, 0.18), transparent 70%);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 42px;
}

.section-heading .lead {
  max-width: 520px;
  margin: 0;
}

.grid {
  display: grid;
  gap: 22px;
}

.grid.three { grid-template-columns: repeat(3, 1fr); }
.grid.two { grid-template-columns: repeat(2, 1fr); }
.grid.four { grid-template-columns: repeat(4, 1fr); }

.card,
.service-card,
.price-card,
.post-card,
.job-card {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 20px 60px rgba(6, 24, 74, 0.07);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.card:hover,
.service-card:hover,
.price-card:hover,
.post-card:hover,
.job-card:hover {
  transform: translateY(-5px);
  border-color: rgba(18, 136, 255, 0.3);
  box-shadow: var(--shadow);
}

.icon {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 42%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.62)),
    linear-gradient(135deg, rgba(18, 136, 255, 0.12), rgba(122, 38, 255, 0.13));
  color: var(--violet);
  font-weight: 900;
}

.icon img,
.advantage-card img {
  width: 78%;
  height: 78%;
  object-fit: contain;
}

.advantage-grid {
  align-items: stretch;
}

.advantage-card {
  position: relative;
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(122, 38, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 250, 255, 0.92));
  box-shadow: 0 20px 58px rgba(6, 24, 74, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.advantage-card:hover {
  transform: translateY(-5px);
  border-color: rgba(122, 38, 255, 0.28);
  box-shadow: var(--shadow);
}

.advantage-card img {
  width: 74px;
  height: 74px;
  margin-bottom: 18px;
  filter: drop-shadow(0 16px 20px rgba(91, 75, 227, 0.14));
}

.advantage-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.service-card p,
.card p,
.post-card p,
.job-card p {
  margin: 14px 0 0;
  color: var(--muted);
}

.service-card a {
  display: inline-flex;
  margin-top: 22px;
  color: var(--blue-deep);
  font-weight: 900;
}

.process-line {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.process-step {
  padding: 26px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.process-step strong {
  display: block;
  margin-bottom: 12px;
  font-size: 2.5rem;
  line-height: 1;
  color: #cfe9ff;
}

.testimonial-stage {
  position: relative;
  min-height: 250px;
  padding: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial {
  display: none;
  max-width: 740px;
  margin: 0 auto;
  text-align: center;
}

.testimonial.is-active { display: block; }
.testimonial blockquote { margin: 0; font-size: clamp(1.2rem, 2.4vw, 2rem); line-height: 1.3; }
.testimonial cite { display: block; margin-top: 22px; color: rgba(255, 255, 255, 0.78); font-style: normal; }

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 26px;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.slider-dots button.is-active { background: var(--white); }

.portfolio-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--gradient);
  color: var(--white);
}

.portfolio-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 25%, rgba(255, 148, 30, 0.45), transparent 9rem),
    linear-gradient(180deg, rgba(6, 24, 74, 0.04), rgba(6, 24, 74, 0.55));
  transition: transform 0.35s ease;
}

.portfolio-card:hover::before { transform: scale(1.08); }

.portfolio-card.visual {
  background-color: #111424;
  background-size: cover;
  background-position: center;
}

.portfolio-card.visual::before {
  background:
    linear-gradient(180deg, rgba(6, 24, 74, 0.04), rgba(6, 24, 74, 0.74)),
    radial-gradient(circle at 70% 20%, rgba(122, 38, 255, 0.34), transparent 13rem);
}

.portfolio-card.case-icons {
  background-image: url("../assets/images/brand-icon-grid.png");
}

.portfolio-card.case-rocket {
  background-image: url("../assets/images/rocket-benefits.png");
  background-position: center 26%;
}

.portfolio-card.case-star {
  background-image:
    radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.25), transparent 9rem),
    url("../assets/images/brand-star-orbit.png"),
    var(--gradient);
  background-size: auto, 38%, auto;
  background-repeat: no-repeat;
  background-position: center, center 34%, center;
}

.portfolio-content {
  position: absolute;
  inset: auto 0 0;
  padding: 28px;
}

.portfolio-content h3 {
  max-width: 95%;
}

.portfolio-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: inherit;
  font-size: 0.82rem;
  font-weight: 800;
}

.cta-band {
  overflow: hidden;
  border-radius: 8px;
  padding: clamp(34px, 7vw, 78px);
  background:
    radial-gradient(circle at 85% 22%, rgba(255, 148, 30, 0.44), transparent 13rem),
    linear-gradient(135deg, var(--navy), var(--blue-deep) 58%, var(--violet));
  color: var(--white);
}

.cta-band h2 { color: var(--white); max-width: 780px; }
.cta-band p { max-width: 620px; color: rgba(255, 255, 255, 0.78); }

.page-hero {
  padding-top: clamp(48px, 6vw, 84px);
  padding-bottom: clamp(48px, 6vw, 84px);
  background:
    radial-gradient(circle at 80% 18%, rgba(122, 38, 255, 0.16), transparent 22rem),
    linear-gradient(180deg, #ffffff 0%, #f4f9ff 100%);
}

.page-hero h1 {
  max-width: 680px;
  font-size: clamp(2.15rem, 4.4vw, 3.95rem);
  line-height: 1.05;
}

.page-hero .lead {
  max-width: 610px;
}

.page-hero .split {
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.62fr);
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
}

.image-panel {
  min-height: 320px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.28) 42%, transparent 60%),
    linear-gradient(135deg, rgba(18, 136, 255, 0.88), rgba(122, 38, 255, 0.88));
  display: grid;
  place-items: center;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: min(64%, 285px);
  max-height: 275px;
  object-fit: contain;
  filter: drop-shadow(0 24px 38px rgba(6, 24, 74, 0.2));
}

.values-list {
  display: grid;
  gap: 16px;
}

.value-row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
}

.value-row strong {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
}

.accordion-item {
  border-bottom: 1px solid var(--line);
}

.accordion-item button {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border: 0;
  background: transparent;
  color: var(--navy);
  font-weight: 900;
  cursor: pointer;
}

.accordion-item button::after {
  content: "+";
  font-size: 1.6rem;
  color: var(--violet);
}

.accordion-item.is-open button::after { content: "-"; }

.accordion-panel {
  display: none;
  padding: 0 0 24px;
  color: var(--muted);
}

.accordion-item.is-open .accordion-panel { display: block; }

.price-card.featured {
  color: var(--white);
  background:
    radial-gradient(circle at 86% 15%, rgba(255, 148, 30, 0.34), transparent 10rem),
    var(--gradient);
  transform: translateY(-14px);
}

.price-card.featured h3,
.price-card.featured .price { color: var(--white); }

.price {
  margin: 18px 0;
  color: var(--navy);
  font-size: 2.7rem;
  font-weight: 950;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.price-card.featured .feature-list { color: rgba(255, 255, 255, 0.82); }

.comparison {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(6, 24, 74, 0.07);
}

.comparison th,
.comparison td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.comparison th {
  color: var(--navy);
  background: #eef6ff;
}

.blog-layout,
.contact-layout {
  display: grid;
  grid-template-columns: 1.6fr 0.8fr;
  gap: 26px;
}

.form-grid {
  display: grid;
  gap: 14px;
}

.form-grid.two {
  grid-template-columns: repeat(2, 1fr);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 15px 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea { min-height: 150px; resize: vertical; }

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(18, 136, 255, 0.6);
  box-shadow: 0 0 0 4px rgba(18, 136, 255, 0.1);
}

.phone-group {
  display: grid;
  grid-template-columns: minmax(210px, 0.58fr) minmax(0, 1fr);
  gap: 10px;
}

.phone-group select,
.phone-group input {
  min-width: 0;
}

.map-frame {
  width: 100%;
  min-height: 310px;
  border: 0;
  border-radius: 8px;
  filter: saturate(1.1);
}

.site-footer {
  padding: 70px clamp(18px, 5vw, 72px) 30px;
  background: #06184a;
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr 1fr;
  gap: 34px;
}

.footer-logo .brand-name span:first-child {
  color: var(--white);
}

.footer-logo .brand-mark-wrap {
  background: rgba(255, 255, 255, 0.96);
}

.footer-brand p { max-width: 380px; }
.site-footer h2 { color: var(--white); font-size: 1rem; margin-bottom: 16px; }

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a:hover,
.footer-bottom a:hover { color: var(--cyan); }

.social-row {
  display: flex;
  gap: 10px;
  margin-top: 22px;
}

.social-row a {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-weight: 900;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.newsletter-form button {
  border: 0;
  border-radius: 8px;
  padding: 0 16px;
  background: var(--ignite);
  color: var(--navy);
  font-weight: 900;
}

.form-note {
  min-height: 24px;
  color: #aee5ff;
  font-weight: 700;
}

.footer-bottom {
  width: min(1160px, 100%);
  margin: 44px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@keyframes slowSpin {
  to { transform: rotate(360deg); }
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1180px) {
  .site-header {
    gap: 16px;
  }

  .brand {
    min-width: 170px;
  }

  .site-nav {
    gap: 14px;
    font-size: 0.88rem;
  }

  .nav-cta {
    padding-inline: 16px;
  }

  .hero-grid {
    grid-template-columns: 1fr minmax(280px, 0.7fr);
  }
}

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 78px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav.is-open { display: flex; }
  .nav-cta { display: none; }
  .hero-grid,
  .split,
  .blog-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .launch-visual { min-height: 420px; }
  .asset-hero { min-height: 470px; }
  .asset-hero img { width: min(86%, 350px); }
  .orbit-card { width: min(96%, 410px); }
  .grid.three,
  .grid.four,
  .process-line,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section-heading {
    display: block;
  }
  .section-heading .lead { margin-top: 18px; }
}

@media (max-height: 700px) and (min-width: 761px) {
  .hero {
    min-height: auto;
    padding-top: 54px;
    padding-bottom: 96px;
  }

  .asset-hero {
    min-height: 360px;
  }

  .asset-hero img {
    max-height: 380px;
  }
}

@media (max-width: 760px) {
  .section,
  .page-hero {
    padding-inline: 18px;
  }

  .section {
    padding-block: 64px;
  }

  .page-hero {
    padding-block: 48px;
  }

  .page-hero h1 {
    font-size: clamp(1.95rem, 8vw, 2.9rem);
  }

  .hero {
    padding-top: 46px;
    padding-bottom: 72px;
  }

  .hero-grid {
    gap: 26px;
  }

  .hero-actions,
  .newsletter-form {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 210px;
  }

  .asset-hero::before {
    inset: 10% 4% 8%;
  }

  .brand-mark-wrap {
    width: 34px;
    height: 34px;
  }

  .brand-mark {
    width: 27px;
    height: 27px;
  }

  .icon {
    width: 56px;
    height: 56px;
  }

  .advantage-card {
    min-height: auto;
  }

  .advantage-card img {
    width: 58px;
    height: 58px;
    margin-bottom: 14px;
  }

  .portfolio-card {
    min-height: 300px;
  }

  .portfolio-content {
    padding: 22px;
  }

  .testimonial-stage {
    padding: 26px 20px;
  }

  .image-panel {
    min-height: 240px;
  }

  .image-panel img {
    width: min(60%, 230px);
    max-height: 220px;
  }

  .cta-band {
    padding: 32px 22px;
  }
}

@media (max-width: 640px) {
  .site-header { min-height: 70px; padding-inline: 16px; }
  .brand { min-width: 0; }
  .brand-name { font-size: 1.08rem; }
  .brand-mark-wrap { width: 32px; height: 32px; }
  .brand-mark { width: 25px; height: 25px; }
  .hero { min-height: auto; padding-bottom: 76px; }
  .metric-row,
  .grid.two,
  .grid.three,
  .grid.four,
  .process-line,
  .footer-grid,
  .form-grid.two {
    grid-template-columns: 1fr;
  }
  .launch-visual { min-height: 270px; }
  .asset-hero { min-height: 285px; }
  .asset-hero img { width: min(78%, 215px); }
  .rocket { width: 126px; }
  .rocket-body { width: 62px; height: 172px; }
  .rocket-window { width: 27px; height: 27px; top: 40px; left: 54px; }
  .fin { width: 31px; height: 58px; top: 99px; }
  .flame { width: 50px; height: 135px; }
  .footer-bottom { display: grid; }
  .comparison {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

@media (max-width: 430px) {
  h1 {
    font-size: clamp(2rem, 11vw, 2.85rem);
  }

  h2 {
    font-size: clamp(1.7rem, 9vw, 2.35rem);
  }

  .page-hero h1 {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
  }

  .site-header {
    gap: 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand-name {
    font-size: 0.96rem;
  }

  .metric,
  .card,
  .service-card,
  .post-card,
  .job-card,
  .advantage-card,
  .process-step {
    padding: 22px;
  }

  .metric-row {
    margin-top: 30px;
  }

  .asset-hero {
    min-height: 240px;
  }

  .asset-hero img {
    width: min(76%, 180px);
  }

  .image-panel {
    min-height: 200px;
  }

  .image-panel img {
    width: min(58%, 175px);
    max-height: 170px;
  }

  .icon {
    width: 50px;
    height: 50px;
    margin-bottom: 14px;
  }

  .advantage-card img {
    width: 50px;
    height: 50px;
  }

  .portfolio-card {
    min-height: 270px;
  }

  .portfolio-meta {
    gap: 7px;
  }

  .pill {
    min-height: 28px;
    padding-inline: 10px;
    font-size: 0.76rem;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .newsletter-form button {
    min-height: 44px;
  }

  .phone-group {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 360px) {
  .brand-name {
    display: none;
  }

  .hero-actions .btn,
  .btn {
    width: 100%;
    padding-inline: 16px;
  }

  .section,
  .page-hero {
    padding-inline: 14px;
  }

  .site-nav {
    left: 12px;
    right: 12px;
  }

  .brand-mark-wrap {
    width: 30px;
    height: 30px;
  }

  .brand-mark {
    width: 23px;
    height: 23px;
  }

  .asset-hero img {
    width: min(74%, 165px);
  }
}
