:root {
  --ink: #08111f;
  --ink-soft: #17263a;
  --muted: #5d6b7d;
  --line: #dbe4ee;
  --line-dark: #26384f;
  --paper: #ffffff;
  --wash: #f4f8fc;
  --blue: #087cf0;
  --blue-deep: #075fc5;
  --cyan: #2dd4ff;
  --success: #0a8f66;
  --shadow: 0 24px 80px rgba(8, 17, 31, 0.12);
  --radius: 22px;
  --radius-small: 14px;
  --shell: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-underline-offset: 0.2em;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--cyan);
  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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

.section {
  padding: 112px 0;
}

.section-grid {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.section-grid::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(8, 124, 240, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 124, 240, 0.045) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, #000, transparent 92%);
}

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

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 40px rgba(8, 17, 31, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 174px;
  height: 62px;
  overflow: hidden;
  border-radius: 8px;
}

.brand img {
  width: 100%;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.primary-nav > a:not(.button) {
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-nav > a:not(.button):hover {
  color: var(--blue);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  background: var(--ink);
  border: 0;
  border-radius: 12px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--paper);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  color: var(--paper);
  background: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(8, 124, 240, 0.24);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  box-shadow: 0 16px 32px rgba(8, 95, 197, 0.27);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.button-outline {
  color: var(--paper);
  background: transparent;
  border-color: #4b607b;
  box-shadow: none;
}

.button-outline:hover {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--ink);
  box-shadow: none;
}

.button-light {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.button-light:hover {
  color: var(--paper);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.7);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.text-link span {
  color: var(--blue);
  font-size: 1.2em;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue-deep);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow > span {
  position: relative;
  width: 28px;
  height: 2px;
  background: var(--blue);
}

.eyebrow > span::after {
  position: absolute;
  top: -3px;
  right: 0;
  width: 8px;
  height: 8px;
  content: "";
  background: var(--blue);
  border-radius: 50%;
}

.eyebrow-light {
  color: #9fddff;
}

.eyebrow-light > span,
.eyebrow-light > span::after {
  background: var(--cyan);
}

.hero {
  min-height: 760px;
  padding: 100px 0 104px;
  background:
    radial-gradient(circle at 85% 14%, rgba(45, 212, 255, 0.14), transparent 26%),
    linear-gradient(180deg, #fbfdff 0%, #ffffff 100%);
}

.hero::after {
  position: absolute;
  z-index: -1;
  right: -120px;
  bottom: -160px;
  width: 440px;
  height: 440px;
  content: "";
  border: 1px solid rgba(8, 124, 240, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 52px rgba(8, 124, 240, 0.035), 0 0 0 104px rgba(8, 124, 240, 0.025);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(440px, 0.97fr);
  gap: 76px;
  align-items: center;
}

.hero-copy h1,
.contact-hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(3.25rem, 6vw, 5.85rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.98;
}

.hero-copy h1 em {
  position: relative;
  color: var(--blue);
  font-style: normal;
  white-space: nowrap;
}

.hero-copy h1 em::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 99px;
}

.hero-lede {
  max-width: 660px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 1.18rem;
}

.button-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 800;
}

.hero-points li::before {
  position: absolute;
  top: 0.53em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(8, 124, 240, 0.12);
}

.tech-card {
  position: relative;
  padding: 22px;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid #233650;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.tech-card::before {
  position: absolute;
  inset: -8px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(8, 124, 240, 0.22);
  border-radius: 34px;
}

.tech-card-top,
.tech-card-top > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.tech-card-top {
  margin-bottom: 18px;
  color: #b9c8d9;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.signal-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  background: var(--cyan);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(45, 212, 255, 0.12), 0 0 22px rgba(45, 212, 255, 0.7);
}

.status-pill {
  padding: 6px 10px;
  color: #c9fff1;
  background: rgba(10, 143, 102, 0.16);
  border: 1px solid rgba(54, 218, 165, 0.25);
  border-radius: 99px;
  font-size: 0.68rem;
}

.interface-window {
  overflow: hidden;
  background: #0d1a2b;
  border: 1px solid #2a3d55;
  border-radius: 16px;
}

.interface-bar {
  display: flex;
  gap: 7px;
  padding: 12px 14px;
  background: #122238;
  border-bottom: 1px solid #2a3d55;
}

.interface-bar i {
  width: 8px;
  height: 8px;
  background: #4b6078;
  border-radius: 50%;
}

.interface-bar i:first-child {
  background: var(--blue);
}

.interface-body {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  min-height: 240px;
  padding: 30px;
}

.interface-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
}

.wire {
  display: block;
  height: 8px;
  background: #41536a;
  border-radius: 99px;
}

.wire-short { width: 34%; background: var(--cyan); }
.wire-long { width: 84%; height: 14px; background: #e8f1fa; }
.wire-medium { width: 68%; }

.wire-button {
  width: 86px;
  height: 30px;
  margin-top: 12px;
  background: var(--blue);
  border-radius: 7px;
}

.interface-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.core {
  position: relative;
  z-index: 2;
  display: grid;
  width: 80px;
  height: 80px;
  place-items: center;
  color: var(--paper);
  background: linear-gradient(145deg, var(--blue), #0560cb);
  border: 1px solid #66e3ff;
  border-radius: 20px 6px 20px 6px;
  box-shadow: 0 0 38px rgba(8, 124, 240, 0.34);
  font-weight: 900;
  letter-spacing: -0.04em;
}

.orbit {
  position: absolute;
  border: 1px solid #3c5470;
  border-radius: 50%;
}

.orbit-one { width: 142px; height: 142px; }
.orbit-two { width: 112px; height: 112px; border-color: var(--blue); transform: rotate(45deg); border-radius: 24px; opacity: 0.55; }

.build-list {
  display: grid;
  gap: 8px;
  margin-top: 16px;
}

.build-list > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 11px;
}

.build-list > div > span {
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.75rem;
  font-weight: 800;
}

.build-list p,
.build-list small {
  display: block;
  margin: 0;
}

.build-list strong {
  font-size: 0.86rem;
}

.build-list small {
  margin-top: 1px;
  color: #9cadc1;
  font-size: 0.73rem;
}

.capability-strip {
  color: var(--paper);
  background: var(--blue);
}

.capability-strip .shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.capability-strip span {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.79rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.capability-strip span:not(:last-child)::after {
  width: 5px;
  height: 5px;
  content: "";
  background: var(--cyan);
  border-radius: 50%;
}

.section-heading,
.pricing-intro {
  display: grid;
  grid-template-columns: 1.45fr 0.7fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 56px;
}

.section-heading h2,
.pricing-intro h2,
.process-copy h2,
.faq-heading h2,
.final-cta h2,
.form-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.35rem, 4.4vw, 4.25rem);
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.section-heading > p,
.pricing-intro > p {
  margin: 0;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  min-height: 450px;
  padding: 34px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.service-card::after {
  position: absolute;
  right: -62px;
  bottom: -62px;
  width: 150px;
  height: 150px;
  content: "";
  border: 1px solid rgba(8, 124, 240, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 24px rgba(8, 124, 240, 0.025);
}

.service-card:hover {
  border-color: rgba(8, 124, 240, 0.45);
  box-shadow: 0 18px 54px rgba(8, 17, 31, 0.09);
  transform: translateY(-6px);
}

.card-index {
  position: absolute;
  top: 27px;
  right: 30px;
  color: #9aabba;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.78rem;
}

.service-icon {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 68px;
  place-items: center;
  color: var(--paper);
  background: var(--blue);
  border-radius: 16px 5px 16px 5px;
  box-shadow: 0 12px 28px rgba(8, 124, 240, 0.22);
  font-size: 1.45rem;
  font-weight: 900;
}

.service-card h3 {
  margin: 0 0 12px;
  font-size: 1.5rem;
  letter-spacing: -0.035em;
}

.service-card > p {
  margin: 0;
  color: var(--muted);
}

.check-list,
.feature-list,
.care-card ul {
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li,
.feature-list li,
.care-card li {
  position: relative;
  padding: 9px 0 9px 25px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
  font-weight: 700;
}

.check-list li::before,
.feature-list li::before,
.care-card li::before {
  position: absolute;
  top: 14px;
  left: 3px;
  width: 7px;
  height: 7px;
  content: "";
  background: var(--blue);
  border-radius: 50%;
}

.section-dark {
  position: relative;
  color: var(--paper);
  background:
    radial-gradient(circle at 50% 0%, rgba(8, 124, 240, 0.16), transparent 32%),
    var(--ink);
}

.pricing-intro > p {
  color: #aab9ca;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 630px;
  padding: 36px;
  background: #0d1a2b;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
}

.price-card-featured {
  background: linear-gradient(180deg, #122945 0%, #0d1a2b 36%);
  border-color: var(--blue);
  box-shadow: 0 20px 70px rgba(8, 124, 240, 0.17);
}

.popular-label {
  position: absolute;
  top: 18px;
  right: 20px;
  padding: 6px 10px;
  margin: 0;
  color: var(--ink);
  background: var(--cyan);
  border-radius: 99px;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.price-card-head {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-dark);
}

.plan-name,
.plan-fit {
  margin: 0;
}

.plan-name {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.plan-fit {
  margin-top: 4px;
  color: #98a9bd;
  font-size: 0.88rem;
}

.price {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  margin: 26px 0 3px;
}

.price .currency {
  margin-top: 9px;
  color: var(--cyan);
  font-size: 1rem;
  font-weight: 900;
}

.price strong {
  font-size: clamp(3rem, 5vw, 4rem);
  letter-spacing: -0.06em;
  line-height: 1;
}

.price small {
  align-self: flex-end;
  padding-bottom: 6px;
  margin-left: 6px;
  color: #91a4b9;
  font-size: 0.72rem;
}

.benchmark {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-bottom: 24px;
  margin: 0;
  border-bottom: 1px solid var(--line-dark);
  color: #8fa2b8;
  font-size: 0.76rem;
}

.benchmark span {
  color: #85efce;
  font-weight: 900;
}

.feature-list {
  flex: 1;
  margin-bottom: 28px;
}

.feature-list li {
  border-color: rgba(255, 255, 255, 0.08);
  color: #d3deea;
}

.feature-list li::before {
  background: var(--cyan);
}

.pricing-note {
  display: grid;
  grid-template-columns: 1.45fr 0.65fr;
  gap: 60px;
  padding: 28px 30px;
  margin-top: 24px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-small);
}

.pricing-note strong,
.source-links > span {
  color: var(--paper);
  font-size: 0.88rem;
}

.pricing-note p {
  margin: 7px 0 0;
  color: #9fb0c3;
  font-size: 0.82rem;
}

.source-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
}

.source-links a {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 700;
}

.redesign-pricing {
  padding: 34px;
  margin-top: 24px;
  background:
    linear-gradient(135deg, rgba(8, 124, 240, 0.13), rgba(37, 214, 178, 0.045)),
    #0b1726;
  border: 1px solid rgba(99, 179, 255, 0.28);
  border-radius: var(--radius);
}

.redesign-pricing-head {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: end;
}

.redesign-kicker {
  margin: 0 0 8px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.redesign-pricing h3 {
  max-width: 520px;
  margin: 0;
  color: var(--paper);
  font-size: clamp(1.55rem, 2.3vw, 2.2rem);
  line-height: 1.08;
}

.redesign-pricing-head > p,
.redesign-pricing-note {
  color: #aab9ca;
}

.redesign-pricing-head > p {
  max-width: 620px;
  margin: 0;
}

.redesign-tier-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.redesign-tier {
  display: flex;
  min-height: 158px;
  padding: 22px;
  flex-direction: column;
  justify-content: space-between;
  color: inherit;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-small);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.redesign-tier:hover,
.redesign-tier:focus-visible {
  background: rgba(8, 124, 240, 0.1);
  border-color: var(--blue);
  transform: translateY(-3px);
}

.redesign-tier span {
  color: #b9c7d6;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.redesign-tier strong {
  margin: 18px 0 5px;
  color: var(--paper);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1;
}

.redesign-tier small {
  color: #85efce;
  font-size: 0.76rem;
  font-weight: 800;
}

.redesign-pricing-note {
  padding-top: 20px;
  margin: 24px 0 0;
  border-top: 1px solid var(--line-dark);
  font-size: 0.78rem;
}

.work-hero .contact-hero-inner {
  max-width: 920px;
}

.work-section {
  background: var(--wash);
}

.work-project {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
  gap: 54px;
  align-items: start;
}

.work-project-copy {
  position: sticky;
  top: 118px;
}

.work-project-number {
  display: block;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-project-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.7rem, 2.7vw, 2.55rem);
  line-height: 1.08;
}

.work-project-copy > p {
  margin: 20px 0 0;
  color: var(--muted);
}

.work-tags {
  display: flex;
  gap: 8px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.work-tags span {
  padding: 8px 11px;
  color: #164675;
  font-size: 0.7rem;
  font-weight: 850;
  background: #e8f3ff;
  border: 1px solid #c7e1fa;
  border-radius: 999px;
}

.work-facts {
  display: grid;
  gap: 0;
  margin: 0 0 28px;
  border-top: 1px solid var(--line);
}

.work-facts div {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.work-facts dt {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-facts dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.work-project-copy .button-row {
  align-items: flex-start;
  flex-direction: column;
}

.browser-preview {
  overflow: hidden;
  margin: 0;
  background: #ffffff;
  border: 1px solid #cad4df;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(8, 17, 31, 0.16);
}

.browser-preview-bar {
  display: grid;
  grid-template-columns: 70px 1fr 70px;
  min-height: 48px;
  padding: 0 16px;
  align-items: center;
  background: #edf2f7;
  border-bottom: 1px solid #d6dfe8;
}

.browser-preview-dots {
  display: flex;
  gap: 6px;
}

.browser-preview-dots span {
  width: 9px;
  height: 9px;
  background: #a8b4c1;
  border-radius: 50%;
}

.browser-preview-address {
  overflow: hidden;
  padding: 7px 14px;
  color: #667789;
  font-size: 0.72rem;
  font-weight: 700;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
  background: #ffffff;
  border: 1px solid #d8e0e8;
  border-radius: 999px;
}

.browser-preview > a,
.browser-preview img {
  display: block;
  width: 100%;
}

.browser-preview img {
  height: auto;
}

.browser-preview figcaption {
  padding: 13px 18px;
  color: var(--muted);
  font-size: 0.72rem;
  text-align: center;
  border-top: 1px solid var(--line);
}

.care-section {
  background: var(--wash);
}

.care-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.care-card {
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.care-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.care-card h3,
.care-card p {
  margin: 0;
}

.care-card h3 {
  font-size: 1.35rem;
}

.care-card > div p {
  color: var(--muted);
  font-size: 0.78rem;
}

.care-price {
  padding: 22px 0 5px;
  color: var(--muted);
  font-size: 0.86rem;
}

.care-price strong {
  color: var(--ink);
  font-size: 2.25rem;
  letter-spacing: -0.05em;
}

.care-request-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 28px 30px;
  margin-top: 22px;
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--radius);
}

.care-request-strip strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.1rem;
}

.care-request-strip p {
  margin: 0;
  color: #aab9ca;
}

.care-request-strip .button {
  flex: 0 0 auto;
}

.process-section {
  background: var(--paper);
}

.process-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 110px;
  align-items: start;
}

.process-copy {
  position: sticky;
  top: 130px;
}

.process-copy > p:not(.eyebrow) {
  margin: 24px 0;
  color: var(--muted);
}

.process-list {
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 25px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.process-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.process-list li > span {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--blue);
  background: rgba(8, 124, 240, 0.08);
  border: 1px solid rgba(8, 124, 240, 0.18);
  border-radius: 14px 4px 14px 4px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.8rem;
  font-weight: 900;
}

.process-list h3,
.process-list p {
  margin: 0;
}

.process-list h3 {
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.process-list p {
  max-width: 520px;
  margin-top: 5px;
  color: var(--muted);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 130px;
}

.faq-heading > p:not(.eyebrow) {
  margin-top: 24px;
  color: var(--muted);
}

.faq-heading a {
  color: var(--blue-deep);
  font-weight: 800;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 52px 25px 0;
  font-size: 1.08rem;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 23px;
  right: 3px;
  display: grid;
  width: 30px;
  height: 30px;
  content: "+";
  place-items: center;
  color: var(--blue);
  background: rgba(8, 124, 240, 0.08);
  border-radius: 8px;
  font-size: 1.2rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 680px;
  padding: 0 52px 25px 0;
  margin: 0;
  color: var(--muted);
}

.final-cta {
  padding: 90px 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 10% 50%, rgba(45, 212, 255, 0.17), transparent 28%),
    var(--blue-deep);
}

.final-cta::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  mask-image: none;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.65fr;
  gap: 100px;
  align-items: end;
}

.final-cta-inner > div:last-child p {
  margin: 0 0 24px;
  color: #d4efff;
}

.site-footer {
  padding: 72px 0 26px;
  color: #c9d4e1;
  background: #050b14;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 0.55fr 0.75fr;
  gap: 80px;
  padding-bottom: 56px;
}

.footer-brand img {
  display: block;
  width: 174px;
  height: 62px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.footer-brand p {
  margin: 18px 0 0;
  color: #7f92a8;
}

.footer-main h2 {
  margin: 0 0 14px;
  color: var(--paper);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-main a {
  display: block;
  width: fit-content;
  margin: 8px 0;
  color: #9caec1;
  font-size: 0.88rem;
  text-decoration: none;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 24px;
  border-top: 1px solid #1a293c;
  color: #6f8297;
  font-size: 0.76rem;
}

.footer-bottom p {
  margin: 0;
}

.contact-hero {
  padding: 94px 0 100px;
  color: var(--paper);
  background:
    radial-gradient(circle at 80% 0%, rgba(45, 212, 255, 0.18), transparent 28%),
    var(--ink);
}

.contact-hero::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  mask-image: linear-gradient(to right, #000, transparent 88%);
}

.contact-hero h1 {
  max-width: 960px;
  font-size: clamp(3.1rem, 6.2vw, 6rem);
}

.contact-hero-inner > p:last-child {
  max-width: 700px;
  margin: 28px 0 0;
  color: #acbccd;
  font-size: 1.14rem;
}

.contact-section {
  background: var(--wash);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(300px, 0.68fr);
  gap: 34px;
  align-items: start;
}

.form-card {
  padding: clamp(28px, 5vw, 54px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(8, 17, 31, 0.08);
}

.form-heading h2 {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
}

.form-heading > p:last-child {
  margin: 14px 0 34px;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

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

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--ink-soft);
  font-size: 0.84rem;
  font-weight: 850;
}

.optional {
  margin-left: 5px;
  color: #8190a1;
  font-size: 0.7rem;
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  color: var(--ink);
  background: #fbfdff;
  border: 1px solid #cbd6e2;
  border-radius: 11px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field input,
.field select {
  min-height: 52px;
  padding: 0 14px;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  background: var(--paper);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(8, 124, 240, 0.12);
}

.field textarea::placeholder {
  color: #8a98a8;
}

.field-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.field input[type="file"] {
  height: auto;
  min-height: 58px;
  padding: 8px;
}

.field input[type="file"]::file-selector-button {
  padding: 10px 13px;
  margin-right: 12px;
  color: var(--paper);
  font: inherit;
  font-weight: 800;
  background: var(--blue);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

.submission-success {
  padding: 16px 18px;
  margin: 0 0 24px;
  color: #07533e;
  font-weight: 750;
  background: #e9fbf5;
  border: 1px solid #9ee8d2;
  border-radius: 11px;
}

.consent-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 12px;
  align-items: start;
  margin: 24px 0;
  color: var(--muted);
  font-size: 0.78rem;
  cursor: pointer;
}

.consent-row input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.form-submit-row p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.5;
}

.form-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--success);
  font-size: 0.84rem;
  font-weight: 750;
}

.contact-aside {
  display: grid;
  gap: 20px;
}

.aside-panel {
  padding: 34px;
  color: var(--paper);
  background: var(--ink);
  border-radius: var(--radius);
}

.aside-panel ol {
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.aside-panel li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 13px;
  padding: 19px 0;
  border-top: 1px solid var(--line-dark);
}

.aside-panel li > span {
  color: var(--cyan);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.72rem;
  font-weight: 800;
}

.aside-panel strong,
.aside-panel p {
  display: block;
  margin: 0;
}

.aside-panel strong {
  font-size: 0.9rem;
}

.aside-panel p {
  margin-top: 3px;
  color: #95a9be;
  font-size: 0.79rem;
}

.direct-contact,
.response-card {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.direct-label {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.direct-contact a {
  display: block;
  margin-top: 7px;
  color: var(--blue-deep);
  font-size: 1.08rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.direct-contact p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.response-card {
  display: flex;
  align-items: flex-start;
  gap: 17px;
}

.response-card .signal-dot {
  flex: 0 0 auto;
  margin-top: 7px;
}

.response-card strong,
.response-card p {
  margin: 0;
}

.response-card p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1040px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .tech-card {
    width: min(100%, 680px);
  }

  .service-grid,
  .pricing-grid,
  .work-project {
    grid-template-columns: 1fr;
  }

  .work-project-copy {
    position: static;
  }

  .service-card {
    min-height: 0;
  }

  .service-icon {
    margin-bottom: 42px;
  }

  .price-card {
    min-height: 0;
  }

  .pricing-note,
  .redesign-pricing-head,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .redesign-tier-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-aside {
    grid-template-columns: 1fr 1fr;
  }

  .aside-panel {
    grid-row: span 2;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 82px 0;
  }

  .header-inner {
    min-height: 70px;
  }

  .brand {
    width: 150px;
    height: 54px;
  }

  .footer-brand img {
    width: 150px;
    height: 54px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-of-type(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-of-type(3) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] span:nth-of-type(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    top: 70px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 20px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 40px rgba(8, 17, 31, 0.12);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav > a:not(.button) {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }

  .primary-nav .button {
    margin-top: 16px;
  }

  .hero {
    min-height: auto;
    padding: 76px 0 86px;
  }

  .hero-copy h1,
  .contact-hero h1 {
    letter-spacing: -0.055em;
  }

  .capability-strip .shell {
    flex-wrap: wrap;
    justify-content: center;
    padding: 21px 0;
  }

  .capability-strip span:not(:last-child)::after {
    display: none;
  }

  .section-heading,
  .pricing-intro,
  .process-layout,
  .faq-layout,
  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-heading,
  .pricing-intro {
    margin-bottom: 40px;
  }

  .care-grid {
    grid-template-columns: 1fr;
  }

  .care-request-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .process-copy,
  .faq-heading {
    position: static;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 44px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .contact-hero {
    padding: 76px 0 82px;
  }

  .contact-aside {
    grid-template-columns: 1fr;
  }

  .aside-panel {
    grid-row: auto;
  }
}

@media (max-width: 600px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .hero-copy h1,
  .contact-hero h1 {
    font-size: clamp(2.85rem, 14vw, 4.2rem);
  }

  .hero-copy h1 em {
    white-space: normal;
  }

  .button-row,
  .form-submit-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button,
  .form-submit-row .button {
    width: 100%;
  }

  .button-row .text-link {
    justify-content: center;
  }

  .hero-points {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .tech-card {
    padding: 14px;
    border-radius: 20px;
  }

  .interface-body {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: 340px;
    padding: 24px;
  }

  .interface-visual {
    min-height: 160px;
  }

  .build-list small {
    display: none;
  }

  .service-card,
  .price-card,
  .care-card,
  .aside-panel,
  .direct-contact,
  .response-card {
    padding: 25px;
  }

  .price {
    flex-wrap: wrap;
  }

  .price small {
    width: 100%;
    margin: 3px 0 0;
  }

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

  .pricing-note {
    gap: 25px;
    padding: 24px;
  }

  .redesign-pricing {
    padding: 25px;
  }

  .redesign-pricing-head {
    gap: 18px;
  }

  .redesign-tier-grid {
    grid-template-columns: 1fr;
  }

  .process-list li {
    grid-template-columns: 54px 1fr;
    gap: 16px;
  }

  .process-list li > span {
    width: 46px;
    height: 46px;
  }

  .faq-list summary {
    font-size: 1rem;
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

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

  .field-full {
    grid-column: auto;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
