@font-face {
  font-family: "Space Age ARCI";
  src: url("assets/space-age.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: light dark;
  --black: #000;
  --white: #fff;
  --soft: #f5f5f7;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --line: rgba(0, 0, 0, 0.1);
  --line-dark: rgba(255, 255, 255, 0.16);
  --blue: #0071e3;
  --blue-hover: #147ce5;
  --radius: 8px;
  --max: 1180px;
  --ease: cubic-bezier(0.19, 1, 0.22, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--white);
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  color: var(--white);
  background: var(--blue);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

p {
  line-height: 1.55;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: minmax(164px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 60px;
  padding: 0 clamp(18px, 4vw, 42px);
  color: var(--black);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 64px rgba(0, 0, 0, 0.08);
  backdrop-filter: saturate(180%) blur(24px);
  -webkit-backdrop-filter: saturate(180%) blur(24px);
  transition: color 420ms var(--ease), background 420ms var(--ease), border-color 420ms var(--ease), box-shadow 420ms var(--ease);
}

.site-header.is-light {
  color: var(--black);
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 64px rgba(0, 0, 0, 0.08);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 220ms ease;
}

.brand:hover {
  opacity: 0.82;
}

.brand-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  border-radius: 50%;
}

.brand-wordmark {
  display: inline-block;
  color: currentColor;
  font-family: "Space Age ARCI", Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1;
  transform: translateY(1px);
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  font-size: 13px;
  font-weight: 800;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 11px;
  border-radius: 999px;
  color: currentColor;
  opacity: 1;
  white-space: nowrap;
  transition: opacity 220ms ease, color 220ms ease, background 220ms ease;
}

.primary-nav a:hover,
.primary-nav a.is-current {
  background: rgba(0, 0, 0, 0.07);
}

.site-header.is-light .primary-nav a:hover,
.site-header.is-light .primary-nav a.is-current {
  background: rgba(0, 0, 0, 0.07);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  opacity: 1;
}

.header-tools {
  display: inline-flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
  min-width: max-content;
}

.language-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 34px;
  padding: 0;
  color: currentColor;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  transition: transform 260ms var(--ease), background 260ms var(--ease), border-color 260ms var(--ease), color 260ms var(--ease);
}

.brand,
.primary-nav a,
.language-toggle {
  color: var(--black);
  opacity: 1 !important;
  visibility: visible !important;
}

.site-header.is-light .brand,
.site-header.is-light .primary-nav a,
.site-header.is-light .language-toggle {
  color: var(--black);
  opacity: 1 !important;
  visibility: visible !important;
}

.site-header.is-light .language-toggle {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
}

.language-toggle:hover {
  transform: translateY(-1px);
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.16);
}

.site-header.is-light .language-toggle:hover {
  background: rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.16);
}

.header-action:hover {
  background: var(--blue-hover);
}

.section-black {
  color: var(--white);
  background: var(--black);
}

.section-white {
  color: var(--ink);
  background: var(--white);
}

.section-soft {
  color: var(--ink);
  background: var(--soft);
}

.home-hero,
.page-hero {
  position: relative;
  display: grid;
  place-items: end center;
  min-height: 94svh;
  padding: 136px clamp(18px, 5vw, 54px) 76px;
  overflow: hidden;
  isolation: isolate;
}

.home-hero {
  place-items: center;
  padding-bottom: clamp(230px, 26vw, 360px);
  overflow: hidden;
  z-index: 2;
}

.page-hero {
  min-height: 76svh;
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  transform: scale(1.08);
  will-change: transform;
}

.hero-media::after,
.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.44) 42%, rgba(0, 0, 0, 0.92)),
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.18), transparent 36%);
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.hero-product-stack {
  position: absolute;
  left: 50%;
  bottom: clamp(86px, 9vw, 132px);
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  height: clamp(96px, 12vw, 168px);
  transform: translateX(-50%);
  pointer-events: none;
  will-change: transform, opacity, filter;
}

.floating-shot {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform-origin: center;
  will-change: transform, filter, opacity;
}

.floating-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  transform: translateX(-130%);
  transition: transform 1400ms var(--ease);
}

.home-hero:hover .floating-shot::after {
  transform: translateX(130%);
}

.floating-shot img {
  transform: scale(1.08);
  filter: saturate(0.92) contrast(1.08);
}

.hero-logo-shot {
  inset: 0;
  display: grid;
  place-items: center;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-logo-shot::after {
  display: none;
}

.hero-logo-shot img {
  width: min(100%, 1100px);
  height: 100%;
  object-fit: contain;
  transform: scale(1);
  filter: drop-shadow(0 24px 70px rgba(0, 0, 0, 0.35));
}

.shot-main {
  left: 50%;
  bottom: 0;
  width: min(58vw, 620px);
  height: 100%;
  transform: translateX(-50%);
}

.shot-left {
  left: 0;
  bottom: 12%;
  width: min(32vw, 330px);
  height: 60%;
  transform: rotate(-7deg);
}

.shot-right {
  right: 0;
  bottom: 18%;
  width: min(31vw, 320px);
  height: 56%;
  transform: rotate(7deg);
}

.page-hero-content {
  width: min(1080px, 100%);
}

.eyebrow {
  margin-bottom: 16px;
  color: currentColor;
  opacity: 0.66;
  font-size: 13px;
  font-weight: 900;
}

.home-hero h1,
.page-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.98;
  font-weight: 900;
}

.page-hero h1 {
  font-size: clamp(44px, 7vw, 84px);
}

.hero-lead,
.page-hero p:not(.eyebrow) {
  max-width: 780px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
  font-weight: 500;
}

.button-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  transition: transform 260ms var(--ease), background 260ms var(--ease), color 260ms var(--ease), border-color 260ms var(--ease);
}

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

.button-primary {
  color: var(--white);
  background: var(--blue);
}

.button-primary:hover {
  background: var(--blue-hover);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.14);
}

.text-link {
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 900;
}

.text-link:hover {
  color: var(--blue-hover);
}

.section {
  padding: clamp(88px, 10vw, 132px) clamp(18px, 5vw, 54px);
}

.section-heading,
.split-layout,
.route-grid,
.capability-strip,
.timeline,
.info-grid,
.detail-grid,
.service-stack,
.feature-panel,
.outcome-grid,
.process-list,
.plans-grid,
.faq-list,
.contact-grid,
.checklist-grid,
.cta-panel {
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.section-heading {
  margin-bottom: clamp(40px, 6vw, 70px);
}

.section-heading.compact {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.split-layout h2,
.feature-panel h2,
.cta-panel h2 {
  max-width: 980px;
  margin-bottom: 0;
  font-size: clamp(36px, 5.8vw, 72px);
  line-height: 1.04;
  font-weight: 900;
}

.section-lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.48;
  font-weight: 500;
}

.section-black .section-lead {
  color: rgba(255, 255, 255, 0.66);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.74fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}

.copy-stack {
  display: grid;
  gap: 20px;
}

.copy-stack p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
}

.section-black .copy-stack p {
  color: rgba(255, 255, 255, 0.68);
}

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

.route-card,
.info-card,
.detail-card,
.feature-points article,
.outcome-grid article,
.plan-card,
.faq-list article,
.contact-card,
.checklist-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.route-card,
.info-card,
.detail-card,
.feature-points article,
.plan-card,
.contact-card {
  transition: transform 520ms var(--ease), border-color 520ms var(--ease), background 520ms var(--ease);
  will-change: transform;
}

.route-card:hover,
.info-card:hover,
.detail-card:hover,
.feature-points article:hover,
.plan-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
}

.route-card {
  min-height: 370px;
  padding: 30px;
  color: var(--ink);
  overflow: hidden;
}

.route-card-wide {
  grid-column: span 2;
}

.route-card span,
.info-card span,
.detail-card span,
.service-stack span,
.process-list span {
  display: block;
  margin-bottom: 34px;
  color: currentColor;
  opacity: 0.54;
  font-size: 12px;
  font-weight: 900;
}

.route-card h3,
.detail-card h3 {
  margin-bottom: 12px;
  font-size: clamp(27px, 3.2vw, 42px);
  line-height: 1.05;
}

.route-card p,
.detail-card p,
.info-card p,
.feature-points p,
.outcome-grid p,
.contact-card p,
.checklist-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.52;
  font-weight: 500;
}

.image-card {
  position: relative;
  color: var(--white);
  background: var(--black);
  isolation: isolate;
}

.image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.72)),
    var(--image);
  background-position: center var(--bg-y, 50%);
  background-size: cover;
  transform: scale(1.02);
  transition: transform 820ms var(--ease), filter 820ms var(--ease);
  will-change: transform, filter;
}

.image-card:hover::before {
  filter: blur(1.5px) saturate(0.95);
  transform: scale(1.08);
}

.image-card p,
.image-card .text-link {
  color: rgba(255, 255, 255, 0.76);
}

.project-lab {
  overflow: hidden;
}

.project-showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(var(--max), 100%);
  margin-inline: auto;
}

.project-card {
  position: relative;
  min-height: 440px;
  display: grid;
  align-content: space-between;
  gap: 28px;
  padding: 30px;
  color: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 113, 227, 0.34), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  overflow: hidden;
  transform-style: preserve-3d;
  transition: transform 700ms var(--ease), border-color 700ms var(--ease), background 700ms var(--ease);
  will-change: transform;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.12), transparent 78%);
  transform: translateX(-130%);
  transition: transform 1300ms var(--ease);
}

.project-card:hover {
  border-color: rgba(255, 255, 255, 0.34);
}

.project-card:hover::before {
  transform: translateX(130%);
}

.project-card-large {
  grid-column: span 2;
  min-height: 540px;
  grid-template-columns: minmax(0, 0.86fr) minmax(310px, 0.82fr);
  align-items: end;
}

.project-card-wide {
  grid-column: span 2;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  align-items: end;
}

.project-copy {
  position: relative;
  z-index: 1;
}

.project-copy span {
  display: block;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 900;
}

.project-copy h3 {
  margin-bottom: 14px;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.02;
}

.project-copy p {
  max-width: 620px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  font-weight: 500;
}

.project-copy ul {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.74);
  list-style: none;
  font-size: 14px;
  font-weight: 800;
}

.project-copy li {
  position: relative;
  padding-left: 16px;
}

.project-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.platform-mockup,
.mini-mockup,
.phone-mockup {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.36);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.platform-mockup {
  min-height: 330px;
  padding: 18px;
  border-radius: 8px;
  transform: perspective(900px) rotateY(-8deg) rotateX(5deg);
  transform-origin: center;
}

.platform-mockup.compact {
  min-height: 250px;
}

.mock-topbar {
  height: 34px;
  margin-bottom: 18px;
  border-radius: 6px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 0 58px, transparent 58px),
    rgba(255, 255, 255, 0.08);
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.mock-grid span,
.mock-table i,
.mini-mockup span {
  display: block;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.1);
}

.mock-grid span {
  min-height: 74px;
}

.mock-table {
  display: grid;
  gap: 10px;
}

.mock-table i {
  height: 16px;
}

.mock-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  min-height: 178px;
  padding: 18px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.mock-chart span {
  flex: 1;
  height: var(--h);
  min-height: 34px;
  border-radius: 999px 999px 4px 4px;
  background: linear-gradient(to top, var(--blue), rgba(255, 255, 255, 0.9));
}

.mini-mockup {
  display: grid;
  gap: 12px;
  min-height: 170px;
  padding: 18px;
  border-radius: 8px;
}

.mini-mockup span:nth-child(1) {
  width: 74%;
  height: 34px;
}

.mini-mockup span:nth-child(2) {
  width: 100%;
  height: 64px;
}

.mini-mockup span:nth-child(3) {
  width: 58%;
  height: 22px;
}

.mini-mockup.access span {
  border-radius: 999px;
}

.phone-mockup {
  width: min(180px, 70%);
  min-height: 300px;
  justify-self: center;
  padding: 18px;
  border-radius: 28px;
}

.phone-mockup span,
.phone-mockup i,
.phone-mockup b {
  display: block;
  border-radius: 999px;
}

.phone-mockup span {
  width: 46%;
  height: 7px;
  margin: 0 auto 28px;
  background: rgba(255, 255, 255, 0.28);
}

.phone-mockup i {
  height: 150px;
  margin-bottom: 18px;
  background:
    linear-gradient(140deg, rgba(0, 113, 227, 0.72), rgba(255, 255, 255, 0.14)),
    rgba(255, 255, 255, 0.08);
}

.phone-mockup b {
  height: 42px;
  background: rgba(255, 255, 255, 0.12);
}

.capability-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.capability-strip article {
  min-height: 190px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-strip strong,
.capability-strip span {
  display: block;
}

.capability-strip strong {
  margin-bottom: 18px;
  font-size: 18px;
}

.capability-strip span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
}

.timeline {
  position: relative;
  padding-left: 36px;
}

.timeline-line {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  width: 2px;
  background: rgba(0, 0, 0, 0.1);
}

.timeline-line span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ink);
  transform: scaleY(0);
  transform-origin: top;
}

.timeline ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  opacity: 0.42;
}

.timeline time {
  display: block;
  margin-bottom: 22px;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  font-weight: 900;
}

.timeline h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.15;
}

.timeline p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.info-grid,
.detail-grid,
.contact-grid {
  display: grid;
  gap: 14px;
}

.info-grid.three,
.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.info-grid.dark .info-card,
.section-black .info-card {
  color: var(--white);
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.08);
}

.section-black .info-card p,
.info-grid.dark .info-card p {
  color: rgba(255, 255, 255, 0.66);
}

.info-card {
  min-height: 260px;
  padding: 28px;
}

.info-card h3,
.feature-points h3,
.contact-card h3 {
  margin-bottom: 12px;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.08;
}

.detail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-card {
  min-height: 430px;
  padding: 30px;
}

.detail-card-wide {
  grid-column: span 2;
  min-height: 310px;
}

.service-stack {
  border-top: 1px solid var(--line);
}

.service-stack article {
  display: grid;
  grid-template-columns: minmax(230px, 0.48fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 70px);
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.service-stack h3 {
  margin-bottom: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

.service-stack p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  font-weight: 500;
}

.feature-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.74fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}

.feature-panel-copy p:not(.eyebrow) {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
}

.feature-points {
  display: grid;
  gap: 14px;
}

.feature-points article {
  padding: 28px;
  color: var(--white);
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.08);
}

.feature-points p {
  color: rgba(255, 255, 255, 0.66);
}

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

.outcome-grid article,
.checklist-grid article {
  min-height: 190px;
  padding: 26px;
}

.outcome-grid strong,
.checklist-grid strong {
  display: block;
  margin-bottom: 14px;
  font-size: 22px;
}

.section-black .checklist-grid article {
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.08);
}

.section-black .checklist-grid p {
  color: rgba(255, 255, 255, 0.66);
}

.process-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.process-list article {
  display: grid;
  grid-template-columns: 110px minmax(180px, 0.38fr) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.process-list h3 {
  margin-bottom: 0;
  font-size: 28px;
  line-height: 1.08;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 500;
}

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

.plan-card {
  min-height: 450px;
  padding: 30px;
}

.plan-featured {
  border-color: rgba(0, 113, 227, 0.45);
  box-shadow: inset 0 0 0 1px rgba(0, 113, 227, 0.08);
}

.plan-card small {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 0 10px;
  color: var(--white);
  background: var(--blue);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
}

.price {
  display: block;
  margin: 0 0 12px;
  font-size: clamp(44px, 5vw, 58px);
  line-height: 1;
  font-weight: 900;
}

.plan-featured .price {
  margin-top: 28px;
}

.plan-card h3,
.plan-card h4 {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.08;
}

.plan-speed {
  margin-bottom: 24px;
  color: var(--muted);
  font-weight: 800;
}

.plan-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
  font-weight: 600;
}

.plan-card li {
  position: relative;
  padding-left: 18px;
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--blue);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list article {
  padding: 28px;
}

.faq-list h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.faq-list p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
}

.contact-card {
  min-height: 300px;
  padding: 30px;
}

.contact-card span {
  display: block;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 800;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: var(--radius);
  padding: 14px 14px;
  color: var(--ink);
  background: #fbfbfd;
  font: inherit;
  font-size: 15px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(0, 113, 227, 0.28);
  border-color: var(--blue);
}

.contact-form button:disabled {
  cursor: progress;
  opacity: 0.58;
}

.form-status {
  min-height: 22px;
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.cta-section {
  padding: clamp(88px, 10vw, 132px) clamp(18px, 5vw, 54px);
}

.cta-panel {
  display: grid;
  justify-items: center;
  text-align: center;
  padding: clamp(48px, 8vw, 86px);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transform: translateX(-120%);
  transition: transform 1100ms var(--ease);
}

.cta-panel:hover::before {
  transform: translateX(120%);
}

.cta-panel h2 {
  max-width: 900px;
}

.cta-panel p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px 0 34px;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 500;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 30px clamp(18px, 4vw, 42px);
  color: rgba(255, 255, 255, 0.58);
  background: var(--black);
  border-top: 1px solid var(--line-dark);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  grid-column: 2;
  justify-self: center;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  transition: transform 300ms var(--ease), background 300ms var(--ease), border-color 300ms var(--ease);
}

.back-to-top:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.whatsapp-float {
  position: fixed;
  right: clamp(18px, 3vw, 30px);
  bottom: clamp(18px, 3vw, 30px);
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 10px 16px 10px 10px;
  color: var(--white);
  background: rgba(13, 20, 31, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  transform: translateY(18px);
  opacity: 0;
  transition: transform 520ms var(--ease), opacity 520ms var(--ease), background 320ms var(--ease), box-shadow 320ms var(--ease);
}

.whatsapp-float.is-ready {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-float:hover {
  background: rgba(0, 113, 227, 0.92);
  box-shadow: 0 28px 80px rgba(0, 113, 227, 0.28);
  transform: translateY(-3px);
}

.whatsapp-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
}

.whatsapp-icon svg {
  width: 21px;
  height: 21px;
}

.whatsapp-label {
  display: grid;
  gap: 1px;
  line-height: 1.05;
}

.whatsapp-label strong,
.whatsapp-label span {
  display: block;
}

.whatsapp-label strong {
  font-size: 13px;
}

.whatsapp-label span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .capability-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .timeline ol,
  .info-grid.four,
  .outcome-grid,
  .checklist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand tools"
      "nav nav";
    align-items: center;
    row-gap: 8px;
    min-height: auto;
    padding-top: 10px;
    padding-bottom: 8px;
    background: rgba(255, 255, 255, 0.88);
    border-bottom-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 18px 58px rgba(0, 0, 0, 0.12);
  }

  .brand {
    grid-area: brand;
  }

  .primary-nav {
    grid-area: nav;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    justify-content: stretch;
    gap: 3px;
    width: 100%;
    overflow: visible;
    padding: 4px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.045);
  }

  .primary-nav::-webkit-scrollbar {
    display: none;
  }

  .primary-nav a {
    min-height: 31px;
    padding-inline: 8px;
    color: var(--black);
    font-size: 11px;
  }

  .primary-nav a.is-current {
    color: var(--white);
    background: var(--black);
  }

  .header-tools {
    grid-area: tools;
  }

  .split-layout,
  .feature-panel {
    grid-template-columns: 1fr;
  }

  .route-grid,
  .detail-grid,
  .plans-grid,
  .info-grid.three,
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .route-card-wide,
  .detail-card-wide {
    grid-column: span 2;
  }

  .process-list article {
    grid-template-columns: 72px minmax(160px, 0.35fr) minmax(0, 1fr);
  }
}

@media (max-width: 680px) {
  .home-hero,
  .page-hero {
    min-height: auto;
    padding-top: 158px;
  }

  .site-header {
    row-gap: 8px;
    padding: 8px 14px 10px;
  }

  .primary-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .primary-nav a {
    min-width: 0;
    min-height: 32px;
    padding-inline: 4px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 999px;
    color: var(--black);
    background: rgba(255, 255, 255, 0.64);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
    font-size: 10.5px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
  }

  .primary-nav a:hover {
    background: rgba(0, 0, 0, 0.07);
  }

  .primary-nav a.is-current {
    color: var(--white);
    background: var(--black);
    border-color: var(--black);
    box-shadow: none;
  }

  .home-hero {
    padding-bottom: 132px;
  }

  .hero-product-stack {
    bottom: 74px;
    width: calc(100% - 38px);
    height: 74px;
  }

  .shot-main {
    width: 80%;
  }

  .shot-left,
  .shot-right {
    width: 45%;
    height: 50%;
  }

  .shot-left {
    left: -4%;
  }

  .shot-right {
    right: -4%;
  }

  .header-tools {
    gap: 8px;
  }

  .language-toggle {
    width: 36px;
    height: 32px;
    font-size: 11px;
  }

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

  .route-grid,
  .detail-grid,
  .plans-grid,
  .info-grid.three,
  .info-grid.four,
  .contact-grid,
  .outcome-grid,
  .checklist-grid,
  .timeline ol,
  .capability-strip {
    grid-template-columns: 1fr;
  }

  .route-card-wide,
  .detail-card-wide {
    grid-column: auto;
  }

  .service-stack article,
  .process-list article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .timeline {
    padding-left: 28px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer a {
    grid-column: auto;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    min-height: 52px;
    padding: 8px;
  }

  .whatsapp-label {
    display: none;
  }
}

@media (max-width: 380px) {
  .site-header {
    padding-inline: 10px;
  }

  .primary-nav {
    gap: 5px;
  }

  .primary-nav a {
    min-height: 31px;
    font-size: 10px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo {
    width: 26px;
    height: 26px;
  }

  .brand-wordmark {
    font-size: 16px;
  }

}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.motion-safe-fallback .hero-media,
.motion-safe-fallback .page-hero-media,
.motion-safe-fallback [data-step],
.motion-safe-fallback .timeline-line span {
  transform: none;
  opacity: 1;
}
