:root {
  --bg: #f5f5f7;
  --text: #232327;
  --text-strong: #18181b;
  --text-soft: rgba(24, 24, 27, 0.78);
  --muted: #6d6d76;
  --muted-soft: #80808a;
  --blue: #0071e3;
  --blue-hover: #3f8cff;
  --blue-dark: #0b63ce;
  --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.06);
  --shadow-deep: 0 28px 80px rgba(0, 0, 0, 0.10);
  --radius-xl: 40px;
  --radius-lg: 30px;
  --radius-md: 20px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  background: linear-gradient(180deg, #fbfbfd 0%, #f5f5f7 40%, #f2f2f5 100%);
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

.container {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(54px);
  opacity: 0.62;
  transform: translate3d(0, 0, 0);
}

.orb-one {
  width: 420px;
  height: 420px;
  top: -80px;
  left: -90px;
  background: radial-gradient(circle, rgba(0, 113, 227, 0.16) 0%, rgba(0, 113, 227, 0.02) 72%, transparent 100%);
}

.orb-two {
  width: 520px;
  height: 520px;
  top: 180px;
  right: -180px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(214, 222, 255, 0.18) 48%, transparent 100%);
}

.orb-three {
  width: 480px;
  height: 480px;
  bottom: 40px;
  left: 12%;
  background: radial-gradient(circle, rgba(214, 224, 255, 0.18) 0%, rgba(255, 255, 255, 0.04) 65%, transparent 100%);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(251, 251, 253, 0.5);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 1.06rem;
  font-weight: 650;
  letter-spacing: -0.02em;
  color: var(--text-strong);
}

.brand-mark,
.footer-brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.brand-logo {
  width: auto;
  height: 94px;
  display: block;
  object-fit: contain;
}

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

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.nav a,
.nav button {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
  transition: color 0.2s ease, opacity 0.2s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.nav a:hover,
.nav button:hover {
  color: var(--text-strong);
}

.nav-link-muted {
  opacity: 0.88;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.97rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: #6a8fc4 !important;
  -webkit-text-fill-color: #6a8fc4;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.01em;
  text-decoration: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  opacity: 1;
  transform: none;
}

.nav-cta:hover {
  background: transparent;
  border: none;
  box-shadow: none;
  color: #6a8fc4 !important;
  -webkit-text-fill-color: #6a8fc4;
  transform: none;
}

.button-primary {
  color: #fff !important;
  border: 1px solid rgba(0, 113, 227, 0.35);
  background: linear-gradient(180deg, #1982f0 0%, #0071e3 100%);
  box-shadow: 0 12px 26px rgba(0, 113, 227, 0.18);
}

.button-primary:hover {
  background: linear-gradient(180deg, #2490ff 0%, #0077ed 100%);
  transform: translateY(-1px);
}

.button-secondary {
  color: var(--text-strong);
  border: 1px solid rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.18);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.48);
  transform: translateY(-1px);
}

.section {
  padding: 34px 0;
}

.hero {
  padding-top: 34px;
  padding-bottom: 48px;
}

.hero-shell {
  position: relative;
  min-height: 78vh;
  border-radius: 48px;
  padding: 56px 36px 42px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.54) 0%, rgba(255, 255, 255, 0.28) 100%);
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow: var(--shadow-deep);
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 14%, rgba(0, 113, 227, 0.10) 0%, transparent 18%),
    radial-gradient(circle at 85% 14%, rgba(255, 255, 255, 0.68) 0%, transparent 20%),
    linear-gradient(180deg, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.03) 100%);
  pointer-events: none;
}

.hero-copy-block {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  padding-top: 30px;
  text-align: center;
  z-index: 2;
}

.eyebrow,
.mini-label,
.module-index,
.figure-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.eyebrow {
  margin: 0 auto 18px;
  padding: 8px 14px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--blue);
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.44);
  backdrop-filter: blur(10px);
}

.mini-label {
  margin: 0 auto 14px;
  padding: 7px 12px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.figure-kicker,
.module-index {
  min-width: 44px;
  height: 32px;
  padding: 0 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #53535b;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.40);
  backdrop-filter: blur(12px);
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  line-height: 1.04;
  color: var(--text-strong);
}

h1 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2.5rem, 5vw, 4.65rem);
  font-weight: 500;
  line-height: 1.11;
  letter-spacing: -0.055em;
  color: transparent;
  background: linear-gradient(180deg, rgba(20, 20, 25, 0.84) 0%, rgba(48, 54, 76, 0.72) 55%, rgba(76, 88, 118, 0.58) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-wrap: balance;
  margin-bottom: 18px;
}

h2 {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2rem, 3.8vw, 2.95rem);
  font-weight: 600;
  letter-spacing: -0.04em;
}

h3 {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 590;
  letter-spacing: -0.042em;
}

p {
  margin: 0 0 16px;
  font-size: 1rem;
  color: var(--muted);
}

.hero-copy,
.section-head p,
.flow-copy p,
.modal-copy {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-copy {
  margin-bottom: 34px;
  font-size: clamp(1.03rem, 1.7vw, 1.15rem);
  line-height: 1.72;
  color: #60606a;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  justify-content: center;
  align-items: center;
}

.hero-figure-shell {
  position: relative;
  margin-top: 78px;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 2;
}

.hero-figure-glass {
  width: min(100%, 980px);
  min-height: 300px;
  padding: 30px;
  border-radius: 38px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.40) 0%, rgba(255, 255, 255, 0.22) 100%);
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(34px);
  -webkit-backdrop-filter: blur(34px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.45), 0 24px 60px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

.hero-figure-glass::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.30) 0%, rgba(255,255,255,0.02) 34%, rgba(255,255,255,0.16) 100%);
  pointer-events: none;
}

.hero-figure-content {
  position: relative;
  z-index: 2;
  max-width: 580px;
  margin: 0 auto;
  text-align: center;
}

.hero-slogan-panel {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.hero-slogan-title {
  margin: 0 auto 14px;
  max-width: 720px;
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  font-weight: 650;
  line-height: 1.04;
  letter-spacing: -0.05em;
  color: transparent;
  background: linear-gradient(
    96deg,
    rgba(255, 88, 110, 0.92) 0%,
    rgba(255, 120, 92, 0.88) 24%,
    rgba(132, 120, 255, 0.84) 58%,
    rgba(86, 156, 255, 0.88) 82%,
    rgba(102, 188, 255, 0.9) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-wrap: balance;
  filter: drop-shadow(0 8px 18px rgba(126, 154, 255, 0.08));
}

.hero-slogan-subtitle {
  margin: 78px auto 0;
  max-width: max-content;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  width: 0;
  font-size: clamp(1.48rem, 2.65vw, 2.02rem);
  font-weight: 700;
  font-family: "Trebuchet MS", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-style: italic;
  line-height: 1.28;
  letter-spacing: -0.03em;
  color: transparent;
  background: linear-gradient(
    90deg,
    rgba(255, 112, 112, 0.95) 0%,
    rgba(255, 156, 92, 0.94) 45%,
    rgba(255, 124, 176, 0.9) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: sloganRevealLoop 4.8s steps(17, end) infinite;
}

@keyframes sloganRevealLoop {
  0% {
    width: 0;
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  30% {
    width: 17ch;
    opacity: 1;
  }
  58% {
    width: 17ch;
    opacity: 1;
  }
  68% {
    width: 17ch;
    opacity: 0;
  }
  69% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 0;
    opacity: 0;
  }
}

.modules-flow {
  padding-top: 12px;
  padding-bottom: 54px;
}

.section-head {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 34px;
}

.section-head p {
  font-size: 1.04rem;
  color: var(--muted-soft);
}

.module-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.flow-module {
  position: relative;
  min-height: 440px;
  border-radius: 42px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.30);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.flow-module::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(130deg, rgba(255,255,255,0.24) 0%, rgba(255,255,255,0.03) 38%, rgba(255,255,255,0.14) 100%);
  pointer-events: none;
}

.flow-module::after {
  content: "";
  position: absolute;
  inset: auto -8% -18% auto;
  width: 42%;
  height: 72%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,0.16) 0%, rgba(255,255,255,0.02) 65%, transparent 100%);
  filter: blur(8px);
  pointer-events: none;
}

.flow-module-diy {
  background:
    radial-gradient(circle at 18% 18%, rgba(208, 232, 255, 0.44) 0%, transparent 28%),
    linear-gradient(180deg, rgba(247, 251, 255, 0.52) 0%, rgba(255, 255, 255, 0.20) 100%);
}

.flow-module-lancers {
  background:
    radial-gradient(circle at 84% 24%, rgba(233, 227, 255, 0.34) 0%, transparent 26%),
    linear-gradient(180deg, rgba(250, 248, 255, 0.48) 0%, rgba(255, 255, 255, 0.20) 100%);
}

.flow-module-shops {
  background:
    radial-gradient(circle at 18% 78%, rgba(255, 236, 218, 0.34) 0%, transparent 28%),
    linear-gradient(180deg, rgba(255, 250, 246, 0.48) 0%, rgba(255, 255, 255, 0.20) 100%);
}

.flow-module-pilot {
  background:
    radial-gradient(circle at 82% 74%, rgba(222, 245, 233, 0.32) 0%, transparent 26%),
    linear-gradient(180deg, rgba(247, 255, 250, 0.48) 0%, rgba(255, 255, 255, 0.20) 100%);
}

.flow-inner {
  position: relative;
  z-index: 2;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 42px;
  text-align: center;
}

.flow-copy {
  max-width: 760px;
  margin: 0 auto;
}

.flow-copy .button-primary {
  margin-left: auto;
  margin-right: auto;
}

.flow-copy p {
  margin-bottom: 28px;
  font-size: 1.04rem;
  color: #5d5d65;
}

.footer {
  padding: 14px 0 50px;
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  padding: 24px 26px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255,255,255,0.34);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.footer-brand {
  width: 100%;
}

.footer-brand-mark {
  margin-bottom: 8px;
}

.footer-brand strong {
  display: inline-block;
  color: var(--text-strong);
  font-weight: 650;
}

.footer-brand p {
  margin: 0 auto;
  max-width: 540px;
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  width: 100%;
}

.footer-social a {
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: var(--text-strong);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  background: rgba(12, 12, 16, 0.34);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.modal-overlay.active {
  display: flex;
}

.modal {
  position: relative;
  width: min(100%, 640px);
  padding: 30px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.68) 0%, rgba(255,255,255,0.54) 100%);
  border: 1px solid rgba(255,255,255,0.42);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  box-shadow: 0 28px 80px rgba(0,0,0,0.18);
  overflow: hidden;
  text-align: center;
}

.modal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,0.24) 0%, rgba(255,255,255,0.02) 36%, rgba(255,255,255,0.12) 100%);
  pointer-events: none;
}

.modal > * {
  position: relative;
  z-index: 2;
}

.close-button {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  color: var(--text-strong);
  cursor: pointer;
  font-size: 1.2rem;
  background: rgba(255,255,255,0.32);
  border: 1px solid rgba(255,255,255,0.34);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
  text-align: left;
}

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

label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #3a3a3c;
}

.input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.40);
  border-radius: 16px;
  padding: 15px 16px;
  color: var(--text-strong);
  background: rgba(255,255,255,0.42);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.input:focus,
select:focus,
textarea:focus {
  border-color: rgba(0, 113, 227, 0.30);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.10);
  background: rgba(255,255,255,0.56);
}

.modal-lead-capture {
  width: min(100%, 620px);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.46) 0%, transparent 26%),
    radial-gradient(circle at 82% 22%, rgba(118, 168, 255, 0.14) 0%, transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,0.64) 0%, rgba(255,255,255,0.52) 100%);
}

.interest-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.interest-chip {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 18px;
  color: var(--text-strong);
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.40);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.interest-chip:hover {
  background: rgba(255, 255, 255, 0.52);
  border-color: rgba(0, 113, 227, 0.18);
  transform: translateY(-1px);
}

.interest-chip input {
  margin: 0;
  accent-color: var(--blue);
  transform: scale(1.04);
}

.interest-chip span {
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.modal-overlay.active .modal {
  animation: modalFloatIn 0.35s ease forwards;
}

@keyframes modalFloatIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

.hidden {
  display: none !important;
}

.success-box {
  text-align: center;
  padding: 10px 4px 4px;
}

.success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue);
  background: rgba(255,255,255,0.48);
  border: 1px solid rgba(255,255,255,0.44);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.success-box p {
  margin-bottom: 20px;
}

@media (max-width: 980px) {
  .topbar-inner {
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    gap: 14px;
  }

  .hero-shell {
    min-height: auto;
    padding: 42px 22px 26px;
    border-radius: 34px;
  }

  .hero-figure-shell {
    margin-top: 48px;
    min-height: auto;
  }

  .hero-figure-glass {
    min-height: 240px;
    border-radius: 28px;
  }

  .flow-module,
  .flow-inner {
    min-height: 360px;
  }

  .flow-inner,
  .modal {
    padding: 24px;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 20px), var(--max-width));
  }

  .section {
    padding: 26px 0;
  }

  .hero {
    padding-top: 22px;
  }

  .hero-shell {
    padding: 32px 16px 20px;
    border-radius: 28px;
  }

  .hero-figure-glass,
  .flow-module,
  .footer-shell,
  .modal {
    border-radius: 24px;
  }

  .hero-slogan-title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
    line-height: 1.08;
  }

    .hero-slogan-subtitle {
    margin-top: 56px;
    font-size: 1.26rem;
    line-height: 1.28;
    animation:
      sloganRevealLoopMobile 4.8s steps(17, end) infinite,
      sloganCaretSoft 1s step-end infinite;
  }
  
    .interest-grid {
    grid-template-columns: 1fr;
  }

  .interest-chip {
    min-height: 50px;
    padding: 0 14px;
  }
  
  @keyframes sloganRevealLoopMobile {
  0% {
    width: 0;
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  30% {
    width: 17ch;
    opacity: 1;
  }
  58% {
    width: 17ch;
    opacity: 1;
  }
  68% {
    width: 17ch;
    opacity: 0;
  }
  69% {
    width: 0;
    opacity: 0;
  }
  100% {
    width: 0;
    opacity: 0;
  }
}

  .flow-inner,
  .footer-shell,
  .modal {
    padding: 20px 18px;
  }

  .flow-module,
  .flow-inner {
    min-height: 320px;
  }

  .brand-logo {
    height: 48px;
  }

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

  h1 {
    font-size: clamp(2.15rem, 9.4vw, 3.15rem);
    line-height: 1.14;
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  h3 {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }
}

/*this is for the sub-page diy-html css style*/

/* ====================diy-html==================== */
/* ====================diy-html==================== */
/* ====================diy-html==================== */

.subpage-main {
  position: relative;
  z-index: 2;
}

.diy-hero-apple {
  padding-top: 36px;
  padding-bottom: 12px;
}

.diy-hero-apple-shell,
.diy-apple-card,
.diy-apple-cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: linear-gradient(180deg, rgba(255,255,255,0.48) 0%, rgba(255,255,255,0.24) 100%);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.08);
}

.diy-hero-apple-shell::before,
.diy-apple-card::before,
.diy-apple-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.18) 0%,
    rgba(255,255,255,0.03) 38%,
    rgba(255,255,255,0.1) 100%
  );
  pointer-events: none;
}

.diy-hero-apple-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 24px;
  padding: 30px;
  background:
    radial-gradient(circle at 18% 16%, rgba(255,255,255,0.44) 0%, transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(126, 174, 255, 0.18) 0%, transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.52) 0%, rgba(255,255,255,0.24) 100%);
}

.diy-hero-copy {
  padding: 8px 4px 8px 6px;
}

.diy-hero-copy h1 {
  margin-bottom: 12px;
}

.diy-hero-kicker {
  margin: 0 0 16px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: rgba(48, 66, 96, 0.86);
}

.diy-hero-text {
  max-width: 620px;
  margin: 0 0 14px;
  font-size: 1.06rem;
  line-height: 1.76;
  color: var(--muted);
}

.diy-hero-apple-shell-simple {
  grid-template-columns: 1fr;
  padding: 44px 42px;
  text-align: center;
}

.diy-hero-copy-simple {
  padding: 0;
  max-width: 920px;
  margin: 0 auto;
}

.diy-hero-copy-simple .mini-label,
.diy-hero-copy-simple h1,
.diy-hero-copy-simple .diy-hero-kicker,
.diy-hero-copy-simple .diy-hero-text {
  text-align: center;
}

.diy-hero-kicker-simple {
  margin-bottom: 20px;
  font-size: clamp(1.7rem, 2.8vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: var(--text-strong);
}

.diy-hero-copy-simple .diy-hero-text {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 640px) {
  .diy-hero-apple-shell-simple {
    padding: 26px 18px;
  }

  .diy-hero-kicker-simple {
    font-size: 1.42rem;
  }
}

.diy-visual-screen strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.08rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-strong);
}

.diy-visual-screen span:last-child {
  display: block;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--muted);
}

.diy-apple-grid {
  padding-top: 12px;
  padding-bottom: 14px;
}

.diy-apple-grid-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.diy-apple-card {
  padding: 38px 34px 34px;
  min-height: 380px;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.52) 100%);
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.52);
  box-shadow: none;
}

.diy-apple-card-tall {
  min-height: 430px;
}

.diy-apple-card-feature {
  background:
    radial-gradient(circle at 86% 14%, rgba(126, 174, 255, 0.14) 0%, transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.52) 100%);
}

.diy-apple-card h2 {
  margin: 12px 0 18px;
  max-width: 92%;
  font-size: clamp(1.8rem, 2.4vw, 2.45rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
  text-align: left;
  color: var(--text-strong);
}

.diy-card-lead {
  margin: 0 0 18px;
  font-size: 1.12rem;
  line-height: 1.62;
  letter-spacing: -0.02em;
  color: rgba(44, 60, 87, 0.88);
}

.diy-apple-card p {
  margin: 0 0 14px;
  max-width: 94%;
  text-align: left;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

.diy-apple-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.diy-apple-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 18px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
}

.diy-apple-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 113, 227, 0.65);
}

.diy-apple-cta {
  padding-top: 12px;
  padding-bottom: 24px;
}

.diy-apple-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 32px;
  background:
    radial-gradient(circle at 18% 16%, rgba(255,255,255,0.38) 0%, transparent 24%),
    radial-gradient(circle at 84% 22%, rgba(255, 188, 128, 0.16) 0%, transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.48) 0%, rgba(255,255,255,0.24) 100%);
}

.diy-apple-cta-copy h2 {
  margin: 10px 0 12px;
  max-width: 100%;
  text-align: left;
}

.diy-apple-cta-copy p {
  margin: 0;
  max-width: 100%;
  text-align: left;
}

.diy-apple-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 1100px) {
  .diy-hero-apple-shell {
    grid-template-columns: 1fr;
  }

  .diy-hero-visual {
    min-height: 460px;
  }
}

@media (max-width: 980px) {
  .diy-apple-grid-shell {
    grid-template-columns: 1fr;
  }

  .diy-apple-cta-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .diy-apple-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .diy-apple-card,
  .diy-apple-card-tall {
    min-height: auto;
    padding: 24px 18px 22px;
    border-radius: 24px;
  }

  .diy-apple-card h2 {
    max-width: 100%;
    font-size: 1.58rem;
  }

  .diy-card-lead {
    font-size: 1rem;
    line-height: 1.58;
  }

  .diy-apple-card p,
  .diy-apple-list li {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.66;
  }
}

/*this is for the sub-page lancers-html css style*/
/* ====================lancers-html==================== */
/* ====================lancers-html==================== */
/* ====================lancers-html==================== */

/* =========================
   Lancers page
========================= */

.lancers-hero,
.lancers-grid,
.lancers-cta {
  position: relative;
  z-index: 2;
}

.lancers-hero {
  padding-top: 36px;
  padding-bottom: 12px;
}

.lancers-hero-shell,
.lancers-card,
.lancers-cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: linear-gradient(180deg, rgba(255,255,255,0.48) 0%, rgba(255,255,255,0.24) 100%);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.08);
}

.lancers-hero-shell::before,
.lancers-card::before,
.lancers-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.18) 0%,
    rgba(255,255,255,0.03) 38%,
    rgba(255,255,255,0.1) 100%
  );
  pointer-events: none;
}

.lancers-hero-shell-simple {
  padding: 44px 42px;
  text-align: center;
  background:
    radial-gradient(circle at 18% 16%, rgba(255,255,255,0.44) 0%, transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(126, 174, 255, 0.14) 0%, transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.52) 0%, rgba(255,255,255,0.24) 100%);
}

.lancers-hero-copy-simple {
  max-width: 920px;
  margin: 0 auto;
}

.lancers-hero-copy-simple .mini-label,
.lancers-hero-copy-simple h1,
.lancers-hero-copy-simple .lancers-hero-kicker,
.lancers-hero-copy-simple .lancers-hero-text {
  text-align: center;
}

.lancers-hero-kicker {
  margin: 0 0 16px;
  font-weight: 650;
  letter-spacing: -0.03em;
  color: rgba(48, 66, 96, 0.86);
}

.lancers-hero-kicker-simple {
  margin-bottom: 20px;
  font-size: clamp(1.7rem, 2.8vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: var(--text-strong);
}

.lancers-hero-text {
  max-width: 760px;
  margin: 0 auto 14px;
  font-size: 1.06rem;
  line-height: 1.76;
  color: var(--muted);
}

.lancers-grid {
  padding-top: 12px;
  padding-bottom: 14px;
}

.lancers-grid-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.lancers-card {
  padding: 38px 34px 34px;
  min-height: 380px;
  text-align: left;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.52);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.52) 100%);
  box-shadow: none;
}

.lancers-card-tall {
  min-height: 430px;
}

.lancers-card-feature {
  background:
    radial-gradient(circle at 86% 14%, rgba(126, 174, 255, 0.14) 0%, transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.52) 100%);
}

.lancers-card-wide {
  grid-column: 1 / -1;
  min-height: 300px;
}

.lancers-card h2 {
  margin: 12px 0 18px;
  max-width: 92%;
  font-size: clamp(1.8rem, 2.4vw, 2.45rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
  text-align: left;
  color: var(--text-strong);
}

.lancers-card-lead {
  margin: 0 0 18px;
  max-width: 94%;
  font-size: 1.12rem;
  line-height: 1.62;
  letter-spacing: -0.02em;
  color: rgba(44, 60, 87, 0.88);
}

.lancers-card p {
  margin: 0 0 14px;
  max-width: 94%;
  text-align: left;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

.lancers-list {
  margin: 10px 0 18px;
  padding: 0;
  list-style: none;
}

.lancers-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 18px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
}

.lancers-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(0, 113, 227, 0.65);
}

.lancers-cta {
  padding-top: 12px;
  padding-bottom: 24px;
}

.lancers-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 32px;
  background:
    radial-gradient(circle at 18% 16%, rgba(255,255,255,0.38) 0%, transparent 24%),
    radial-gradient(circle at 84% 22%, rgba(126, 174, 255, 0.12) 0%, transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.48) 0%, rgba(255,255,255,0.24) 100%);
}

.lancers-cta-copy h2 {
  margin: 10px 0 12px;
  max-width: 100%;
  text-align: left;
}

.lancers-cta-copy p {
  margin: 0;
  max-width: 100%;
  text-align: left;
}

.lancers-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .lancers-grid-shell {
    grid-template-columns: 1fr;
  }

  .lancers-card-wide {
    grid-column: auto;
  }

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

  .lancers-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .lancers-hero-shell,
  .lancers-card,
  .lancers-cta-card {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .lancers-hero-shell-simple {
    padding: 26px 18px;
  }

  .lancers-hero-kicker-simple {
    font-size: 1.42rem;
  }

  .lancers-hero-text,
  .lancers-card p,
  .lancers-list li {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .lancers-card,
  .lancers-card-tall,
  .lancers-card-wide {
    min-height: auto;
  }

  .lancers-card h2 {
    max-width: 100%;
    font-size: 1.58rem;
  }

  .lancers-card-lead {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.58;
  }
}

/*this is for the sub-page shop-html css style*/
/* ====================shop-html==================== */
/* ====================shop-html==================== */
/* ====================shop-html==================== */

/* =========================
   Shops page
========================= */

.shops-hero,
.shops-grid,
.shops-cta {
  position: relative;
  z-index: 2;
}

.shops-hero {
  padding-top: 36px;
  padding-bottom: 12px;
}

.shops-hero-shell,
.shops-card,
.shops-cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: linear-gradient(180deg, rgba(255,255,255,0.48) 0%, rgba(255,255,255,0.24) 100%);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.08);
}

.shops-hero-shell::before,
.shops-card::before,
.shops-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.18) 0%,
    rgba(255,255,255,0.03) 38%,
    rgba(255,255,255,0.1) 100%
  );
  pointer-events: none;
}

.shops-hero-shell-simple {
  padding: 44px 42px;
  text-align: center;
  background:
    radial-gradient(circle at 18% 16%, rgba(255,255,255,0.44) 0%, transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(255, 186, 133, 0.14) 0%, transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.52) 0%, rgba(255,255,255,0.24) 100%);
}

.shops-hero-copy-simple {
  max-width: 920px;
  margin: 0 auto;
}

.shops-hero-copy-simple .mini-label,
.shops-hero-copy-simple h1,
.shops-hero-copy-simple .shops-hero-kicker,
.shops-hero-copy-simple .shops-hero-text {
  text-align: center;
}

.shops-hero-kicker {
  margin: 0 0 16px;
  font-weight: 650;
  letter-spacing: -0.03em;
  color: rgba(48, 66, 96, 0.86);
}

.shops-hero-kicker-simple {
  margin-bottom: 20px;
  font-size: clamp(1.7rem, 2.8vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: var(--text-strong);
}

.shops-hero-text {
  max-width: 760px;
  margin: 0 auto 14px;
  font-size: 1.06rem;
  line-height: 1.76;
  color: var(--muted);
}

.shops-grid {
  padding-top: 12px;
  padding-bottom: 14px;
}

.shops-grid-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.shops-card {
  padding: 38px 34px 34px;
  min-height: 380px;
  text-align: left;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.52);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.52) 100%);
  box-shadow: none;
}

.shops-card-tall {
  min-height: 430px;
}

.shops-card-feature {
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 186, 133, 0.16) 0%, transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.52) 100%);
}

.shops-card-wide {
  grid-column: 1 / -1;
  min-height: 300px;
}

.shops-card h2 {
  margin: 12px 0 18px;
  max-width: 92%;
  font-size: clamp(1.8rem, 2.4vw, 2.45rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
  text-align: left;
  color: var(--text-strong);
}

.shops-card-lead {
  margin: 0 0 18px;
  max-width: 94%;
  font-size: 1.12rem;
  line-height: 1.62;
  letter-spacing: -0.02em;
  color: rgba(44, 60, 87, 0.88);
}

.shops-card p {
  margin: 0 0 14px;
  max-width: 94%;
  text-align: left;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

.shops-list {
  margin: 10px 0 18px;
  padding: 0;
  list-style: none;
}

.shops-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 18px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
}

.shops-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 140, 64, 0.75);
}

.shops-cta {
  padding-top: 12px;
  padding-bottom: 24px;
}

.shops-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 32px;
  background:
    radial-gradient(circle at 18% 16%, rgba(255,255,255,0.38) 0%, transparent 24%),
    radial-gradient(circle at 84% 22%, rgba(255, 188, 128, 0.16) 0%, transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.48) 0%, rgba(255,255,255,0.24) 100%);
}

.shops-cta-copy h2 {
  margin: 10px 0 12px;
  max-width: 100%;
  text-align: left;
}

.shops-cta-copy p {
  margin: 0;
  max-width: 100%;
  text-align: left;
}

.shops-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .shops-grid-shell {
    grid-template-columns: 1fr;
  }

  .shops-card-wide {
    grid-column: auto;
  }

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

  .shops-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .shops-hero-shell,
  .shops-card,
  .shops-cta-card {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .shops-hero-shell-simple {
    padding: 26px 18px;
  }

  .shops-hero-kicker-simple {
    font-size: 1.42rem;
  }

  .shops-hero-text,
  .shops-card p,
  .shops-list li {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .shops-card,
  .shops-card-tall,
  .shops-card-wide {
    min-height: auto;
  }

  .shops-card h2 {
    max-width: 100%;
    font-size: 1.58rem;
  }

  .shops-card-lead {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.58;
  }
}

/*this is for the sub-page pilot-html css style*/
/* ====================pilot-html==================== */
/* ====================pilot-html==================== */
/* ====================pilot-html==================== */

/* =========================
   Pilot page
========================= */

.pilot-hero,
.pilot-grid,
.pilot-cta {
  position: relative;
  z-index: 2;
}

.pilot-hero {
  padding-top: 36px;
  padding-bottom: 12px;
}

.pilot-hero-shell,
.pilot-card,
.pilot-cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: linear-gradient(180deg, rgba(255,255,255,0.48) 0%, rgba(255,255,255,0.24) 100%);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.08);
}

.pilot-hero-shell::before,
.pilot-card::before,
.pilot-cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(255,255,255,0.18) 0%,
    rgba(255,255,255,0.03) 38%,
    rgba(255,255,255,0.1) 100%
  );
  pointer-events: none;
}

.pilot-hero-shell-simple {
  padding: 44px 42px;
  text-align: center;
  background:
    radial-gradient(circle at 18% 16%, rgba(255,255,255,0.44) 0%, transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(122, 202, 163, 0.16) 0%, transparent 24%),
    linear-gradient(180deg, rgba(255,255,255,0.52) 0%, rgba(255,255,255,0.24) 100%);
}

.pilot-hero-copy-simple {
  max-width: 920px;
  margin: 0 auto;
}

.pilot-hero-copy-simple .mini-label,
.pilot-hero-copy-simple h1,
.pilot-hero-copy-simple .pilot-hero-kicker,
.pilot-hero-copy-simple .pilot-hero-text {
  text-align: center;
}

.pilot-hero-kicker {
  margin: 0 0 16px;
  font-weight: 650;
  letter-spacing: -0.03em;
  color: rgba(48, 66, 96, 0.86);
}

.pilot-hero-kicker-simple {
  margin-bottom: 20px;
  font-size: clamp(1.7rem, 2.8vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: var(--text-strong);
}

.pilot-hero-text {
  max-width: 760px;
  margin: 0 auto 14px;
  font-size: 1.06rem;
  line-height: 1.76;
  color: var(--muted);
}

.pilot-grid {
  padding-top: 12px;
  padding-bottom: 14px;
}

.pilot-grid-shell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.pilot-card {
  padding: 38px 34px 34px;
  min-height: 380px;
  text-align: left;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.52);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.52) 100%);
  box-shadow: none;
}

.pilot-card-tall {
  min-height: 430px;
}

.pilot-card-feature {
  background:
    radial-gradient(circle at 86% 14%, rgba(122, 202, 163, 0.16) 0%, transparent 22%),
    linear-gradient(180deg, rgba(255,255,255,0.72) 0%, rgba(255,255,255,0.52) 100%);
}

.pilot-card-wide {
  grid-column: 1 / -1;
  min-height: 300px;
}

.pilot-card h2 {
  margin: 12px 0 18px;
  max-width: 92%;
  font-size: clamp(1.8rem, 2.4vw, 2.45rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
  text-align: left;
  color: var(--text-strong);
}

.pilot-card-lead {
  margin: 0 0 18px;
  max-width: 94%;
  font-size: 1.12rem;
  line-height: 1.62;
  letter-spacing: -0.02em;
  color: rgba(44, 60, 87, 0.88);
}

.pilot-card p {
  margin: 0 0 14px;
  max-width: 94%;
  text-align: left;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
}

.pilot-list {
  margin: 10px 0 18px;
  padding: 0;
  list-style: none;
}

.pilot-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 18px;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
}

.pilot-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(51, 166, 112, 0.78);
}

.pilot-cta {
  padding-top: 12px;
  padding-bottom: 24px;
}

.pilot-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px 32px;
  background:
    radial-gradient(circle at 18% 16%, rgba(255,255,255,0.38) 0%, transparent 24%),
    radial-gradient(circle at 84% 22%, rgba(122, 202, 163, 0.16) 0%, transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.48) 0%, rgba(255,255,255,0.24) 100%);
}

.pilot-cta-copy h2 {
  margin: 10px 0 12px;
  max-width: 100%;
  text-align: left;
}

.pilot-cta-copy p {
  margin: 0;
  max-width: 100%;
  text-align: left;
}

.pilot-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 980px) {
  .pilot-grid-shell {
    grid-template-columns: 1fr;
  }

  .pilot-card-wide {
    grid-column: auto;
  }

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

  .pilot-cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .pilot-hero-shell,
  .pilot-card,
  .pilot-cta-card {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .pilot-hero-shell-simple {
    padding: 26px 18px;
  }

  .pilot-hero-kicker-simple {
    font-size: 1.42rem;
  }

  .pilot-hero-text,
  .pilot-card p,
  .pilot-list li {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .pilot-card,
  .pilot-card-tall,
  .pilot-card-wide {
    min-height: auto;
  }

  .pilot-card h2 {
    max-width: 100%;
    font-size: 1.58rem;
  }

  .pilot-card-lead {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.58;
  }
}
