:root {
  color-scheme: light;
  --ink: #10151f;
  --muted: #647084;
  --line: #dfe5ee;
  --panel: #ffffff;
  --soft: #f5f7fb;
  --navy: #14213d;
  --blue: #246bfe;
  --green: #00a676;
  --yellow: #ffbf1f;
  --cyan: #00a6d6;
  --purple: #7357ff;
  --pink: #f0449c;
  --orange: #ff6b35;
  --red: #ef4444;
  --lime: #65a30d;
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfcff;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(251, 252, 255, 0.88);
  border-bottom: 1px solid rgba(223, 229, 238, 0.85);
  backdrop-filter: blur(18px);
}

.brand,
.header-actions,
.nav-links,
.hero-actions,
.career-actions,
.trust-row,
.strip,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 1.12rem;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
}

.nav-links {
  gap: 24px;
  color: var(--muted);
  font-size: 0.96rem;
}

.nav-links a:hover {
  color: var(--ink);
}

.header-actions {
  gap: 10px;
}

.primary-button,
.ghost-button {
  min-height: 42px;
  border: 0;
  border-radius: var(--radius);
  font-weight: 800;
}

.primary-button {
  padding: 0 18px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 14px 32px rgba(36, 107, 254, 0.24);
}

.primary-button:hover {
  background: #0f58ee;
}

.ghost-button {
  padding: 0 16px;
  color: var(--ink);
  background: #eef2f7;
}

.header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.large {
  min-height: 54px;
  padding: 0 24px;
  font-size: 1rem;
}

.full {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  padding: clamp(58px, 8vw, 110px) clamp(20px, 5vw, 72px) 44px;
}

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

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

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

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 4.4vw, 4.7rem);
  line-height: 1.02;
}

.hero-text {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.45vw, 1.16rem);
  line-height: 1.62;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 18px;
  margin: 24px 0 26px;
}

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

.hero-metrics div {
  min-height: 94px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  margin-bottom: 8px;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.secondary-link {
  color: var(--ink);
  font-weight: 800;
  border-bottom: 2px solid var(--yellow);
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span,
.strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.trust-row span {
  padding: 8px 12px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: 0 30px 90px rgba(16, 21, 31, 0.22);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  opacity: 0.94;
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, transparent 30%, rgba(16, 21, 31, 0.82)),
    linear-gradient(90deg, rgba(36, 107, 254, 0.22), rgba(255, 191, 31, 0.16));
}

.floating-panel {
  position: absolute;
  z-index: 2;
  min-width: 190px;
  padding: 18px;
  color: #fff;
  background: rgba(16, 21, 31, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  backdrop-filter: blur(18px);
}

.panel-top {
  top: 22px;
  right: 22px;
}

.panel-bottom {
  left: 22px;
  bottom: 22px;
}

.panel-label,
.price-label,
.price-subtitle {
  display: block;
  color: #aeb8c8;
  font-size: 0.82rem;
  font-weight: 800;
}

.floating-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 1.8rem;
}

.strip {
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 22px 20px 70px;
}

.strip span {
  padding: 10px 16px;
}

.decision-grid span,
.value-grid span,
.process-grid span,
.plan-fee {
  display: block;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-intro {
  max-width: 760px;
  padding: 0 clamp(20px, 5vw, 72px) 28px;
}

.section-intro.compact {
  padding-bottom: 18px;
}

.section-intro h2,
.pricing-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(1.9rem, 3.1vw, 3.25rem);
  line-height: 1.05;
}

.section-intro p,
.pricing-copy p,
.steps p,
.benefit-grid p,
.use-case-grid p,
.trust-grid p,
.decision-grid p,
.value-grid p,
.process-grid p,
.faq-grid p,
.conversion-band p,
.platform-card p,
.site-footer p,
.modal-note {
  color: var(--muted);
  line-height: 1.6;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(20px, 5vw, 72px) 82px;
}

.why-section,
.use-case-section,
.trust-section,
.decision-section,
.faq-section,
.activation-section,
.career-values,
.application-checklist,
.hiring-process {
  padding: 0 clamp(20px, 5vw, 72px) 82px;
}

.benefit-grid,
.use-case-grid,
.trust-grid,
.decision-grid,
.activation-grid,
.value-grid,
.checklist-grid,
.process-grid,
.faq-grid {
  display: grid;
  gap: 16px;
}

.benefit-grid,
.decision-grid,
.activation-grid,
.value-grid,
.checklist-grid,
.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.benefit-grid article,
.use-case-grid article,
.trust-grid article,
.decision-grid article,
.activation-grid article,
.value-grid article,
.checklist-grid article,
.process-grid article,
.faq-grid details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.benefit-grid article,
.decision-grid article,
.activation-grid article,
.value-grid article,
.checklist-grid article,
.process-grid article {
  min-height: 260px;
  padding: 26px;
}

.benefit-grid span,
.activation-grid span,
.value-grid span,
.process-grid span {
  display: block;
  margin-bottom: 46px;
  color: var(--blue);
  font-weight: 900;
}

.benefit-grid h3,
.use-case-grid h3,
.trust-grid h3,
.decision-grid h3,
.activation-grid h3,
.checklist-grid h3,
.value-grid h3,
.process-grid h3 {
  margin-bottom: 10px;
}

.decision-section {
  padding-top: 4px;
}

.decision-grid article {
  min-height: 220px;
}

.decision-grid span,
.plan-fee {
  margin-bottom: 12px;
}

.activation-section {
  padding-top: 4px;
}

.activation-grid article,
.checklist-grid article {
  min-height: 210px;
}

.checklist-grid article {
  background: var(--soft);
}

.use-case-section {
  background: var(--soft);
  padding-top: 64px;
}

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

.use-case-grid article {
  min-height: 190px;
  padding: 22px;
}

.platform-card {
  display: grid;
  align-content: start;
  min-height: 230px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(16, 21, 31, 0.1);
}

.platform-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  place-items: center;
  color: #fff;
  background: var(--blue);
  border-radius: var(--radius);
  font-weight: 900;
}

.platform-card h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
}

.platform-link {
  align-self: end;
  margin-top: 18px;
  color: var(--blue);
  font-size: 0.86rem;
  font-weight: 900;
}

.accent-green .platform-icon {
  background: var(--green);
}

.accent-emerald .platform-icon {
  background: linear-gradient(135deg, #16a34a, #0f766e);
}

.accent-yellow .platform-icon {
  color: var(--ink);
  background: var(--yellow);
}

.accent-cyan .platform-icon {
  background: var(--cyan);
}

.accent-purple .platform-icon {
  background: var(--purple);
}

.accent-black .platform-icon {
  background: var(--ink);
}

.accent-red .platform-icon {
  background: var(--red);
}

.accent-pink .platform-icon {
  background: var(--pink);
}

.accent-orange .platform-icon {
  background: var(--orange);
}

.accent-fire .platform-icon {
  background: linear-gradient(135deg, #f97316, #ef4444, #7357ff);
}

.accent-violet .platform-icon {
  background: #8b5cf6;
}

.accent-lime .platform-icon {
  background: var(--lime);
}

.pricing-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(480px, 1.15fr);
  gap: 32px;
  align-items: center;
  margin: 0 clamp(20px, 5vw, 72px) 82px;
  padding: clamp(30px, 5vw, 58px);
  color: #fff;
  background:
    linear-gradient(rgba(16, 21, 31, 0.72), rgba(16, 21, 31, 0.82)),
    url("https://images.unsplash.com/photo-1639322537228-f710d846310a?auto=format&fit=crop&w=1600&q=85")
      center/cover;
  border-radius: var(--radius);
}

.trust-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 28px;
  align-items: start;
}

.trust-section > div:first-child {
  position: sticky;
  top: 110px;
}

.trust-section h2 {
  margin-bottom: 0;
  font-size: clamp(1.75rem, 2.7vw, 2.75rem);
  line-height: 1.06;
}

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

.trust-grid article {
  min-height: 180px;
  padding: 22px;
}

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

.pricing-copy .eyebrow,
.pricing-copy p {
  color: #d9e2f1;
}

.pricing-copy .notice {
  display: inline-block;
  margin: 8px 0 0;
  padding: 10px 14px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.price-card {
  padding: 26px;
  color: var(--ink);
  background: #fff;
  border-radius: var(--radius);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.pricing-cards .fine-print {
  grid-column: 1 / -1;
  margin-top: 0;
  color: #d9e2f1;
}

.pro-card {
  border: 2px solid var(--yellow);
  box-shadow: 0 20px 50px rgba(255, 191, 31, 0.16);
}

.price {
  display: block;
  margin: 10px 0 6px;
  font-size: clamp(2.8rem, 4vw, 3.45rem);
  line-height: 1;
}

.plan-fee {
  color: var(--green);
}

.price-card ul {
  display: grid;
  gap: 12px;
  padding: 18px 0 24px 20px;
  color: var(--muted);
}

.fine-print {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.how-section {
  padding-bottom: 80px;
}

.terms-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 28px;
  align-items: start;
  margin: 0 clamp(20px, 5vw, 72px) 82px;
  padding: clamp(24px, 4vw, 38px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

.faq-grid details {
  padding: 22px;
}

.faq-grid summary {
  color: var(--ink);
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 900;
}

.faq-grid p {
  margin: 14px 0 0;
}

.conversion-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 0 clamp(20px, 5vw, 72px) 82px;
  padding: clamp(26px, 5vw, 48px);
  color: #fff;
  background:
    linear-gradient(rgba(16, 21, 31, 0.82), rgba(16, 21, 31, 0.78)),
    url("https://images.unsplash.com/photo-1674027444485-cec3da58eef4?auto=format&fit=crop&w=1600&q=85")
      center/cover;
  border-radius: var(--radius);
}

.conversion-band .eyebrow,
.conversion-band p {
  color: #d9e2f1;
}

.conversion-band h2 {
  max-width: 820px;
  margin-bottom: 10px;
  font-size: clamp(1.9rem, 3.2vw, 3.2rem);
  line-height: 1.05;
}

.terms-section h2 {
  margin-bottom: 0;
  font-size: clamp(1.75rem, 2.7vw, 2.75rem);
  line-height: 1.06;
}

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

.terms-grid article {
  min-height: 180px;
  padding: 18px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.terms-grid h3 {
  margin-bottom: 10px;
}

.terms-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 clamp(20px, 5vw, 72px);
}

.steps article {
  padding: 26px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.steps span {
  display: block;
  margin-bottom: 34px;
  color: var(--blue);
  font-weight: 900;
}

.site-footer {
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(20px, 5vw, 72px);
  background: var(--ink);
  color: #fff;
}

.site-footer p {
  margin: 8px 0 0;
  color: #aeb8c8;
}

.site-footer address {
  margin-top: 8px;
  color: #d9e2f1;
  font-style: normal;
}

.site-footer .ghost-button {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.careers-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(28px, 5vw, 60px);
  align-items: end;
  padding: clamp(58px, 8vw, 108px) clamp(20px, 5vw, 72px) 64px;
}

.careers-hero h1 {
  max-width: 900px;
  font-size: clamp(2.45rem, 4.25vw, 4.6rem);
}

.careers-hero p {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.65;
}

.careers-hero a,
.apply-band a {
  font-weight: 900;
}

.career-actions {
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
}

.career-hero-card {
  padding: 24px;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
}

.career-hero-card span,
.team-grid span,
.region-heading span,
.job-card span {
  display: block;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.career-hero-card strong {
  display: block;
  margin: 16px 0 10px;
  font-size: 2rem;
  line-height: 1;
}

.career-hero-card p {
  margin: 0;
  color: #d9e2f1;
  font-size: 1rem;
}

.team-section,
.openings-section {
  padding: 0 clamp(20px, 5vw, 72px) 82px;
}

.career-values {
  padding-top: 8px;
}

.team-grid,
.job-grid {
  display: grid;
  gap: 16px;
}

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

.team-grid article,
.job-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

.team-card img {
  align-self: center;
  display: block;
  width: 116px;
  height: 116px;
  margin: 0 auto 18px;
  border-radius: 50%;
  object-fit: cover;
  background: #edf2f7;
}

.team-grid h3,
.job-card h4 {
  margin: 14px 0 10px;
}

.team-actions {
  margin-top: auto;
  padding-top: 14px;
}

.team-grid a {
  display: inline-block;
  color: var(--blue);
  font-weight: 900;
}

.team-grid p,
.job-card p,
.apply-band p {
  color: var(--muted);
  line-height: 1.6;
}

.job-card .job-meta {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 12px;
  padding: 7px 10px;
  color: #14532d;
  background: #dcfce7;
  border: 1px solid #86efac;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
}

.job-details .travel-note {
  margin-top: 12px;
  padding: 12px;
  color: #14532d;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius);
  font-weight: 800;
}

.active-openings {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  padding: 10px 12px;
  color: #14532d;
  background: #dcfce7;
  border: 1px solid #86efac;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1.2;
}

.active-openings span {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  background: #16a34a;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.14);
}

.active-openings time {
  color: #166534;
  font-weight: 800;
}

.team-details,
.job-details {
  margin: 12px 0 4px;
  padding: 12px 0 0;
  border-top: 1px solid var(--line);
}

.team-details summary,
.job-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.team-details summary::-webkit-details-marker,
.job-details summary::-webkit-details-marker {
  display: none;
}

.team-details summary::after,
.job-details summary::after {
  content: "+";
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--blue);
  font-size: 1.1rem;
  line-height: 1;
}

.team-details[open] summary::after,
.job-details[open] summary::after {
  content: "-";
}

.team-details summary em,
.job-details summary em {
  font-style: normal;
}

.team-details p,
.job-details p {
  margin: 8px 0 0;
  font-size: 0.94rem;
}

.job-details {
  margin-top: 14px;
}

.job-details div {
  padding-bottom: 4px;
}

.job-details ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
}

.job-details li::marker {
  color: var(--blue);
}

.job-details h5 {
  margin: 18px 0 0;
  color: var(--ink);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.region-block {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: 24px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.region-heading h3 {
  margin: 12px 0 0;
  font-size: clamp(1.5rem, 3vw, 2.6rem);
  line-height: 1;
}

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

.job-card {
  display: flex;
  flex-direction: column;
  min-height: 245px;
  padding: 22px;
}

.job-card strong {
  display: inline-block;
  margin-top: auto;
  padding-top: 16px;
  color: var(--ink);
}

.apply-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: 0 clamp(20px, 5vw, 72px) 82px;
  padding: clamp(24px, 4vw, 42px);
  color: #fff;
  background: var(--ink);
  border-radius: var(--radius);
}

.hiring-process {
  padding-bottom: 82px;
}

.apply-band .eyebrow,
.apply-band p {
  color: #d9e2f1;
}

.apply-band h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.auth-modal {
  width: min(520px, calc(100vw - 28px));
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(16, 21, 31, 0.28);
}

.auth-modal::backdrop {
  background: rgba(16, 21, 31, 0.58);
  backdrop-filter: blur(8px);
}

.auth-card {
  position: relative;
  display: grid;
  gap: 16px;
  padding: 28px;
  background: #fff;
}

.auth-card h2 {
  margin-bottom: 4px;
  font-size: 2rem;
  line-height: 1.05;
}

.close-button {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: var(--radius);
  background: #eef2f7;
  color: var(--ink);
  font-size: 1.4rem;
}

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

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(36, 107, 254, 0.14);
}

textarea {
  min-height: 92px;
  padding-block: 12px;
  resize: vertical;
  font: inherit;
}

.wallet-box {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.wallet-box[hidden],
#networkLabel[hidden] {
  display: none;
}

.card-notice {
  display: grid;
  gap: 6px;
  padding: 14px;
  background: #fff8e6;
  border: 1px solid rgba(255, 191, 31, 0.5);
  border-radius: var(--radius);
}

.card-notice[hidden] {
  display: none;
}

.card-notice strong {
  color: var(--ink);
}

.card-notice p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.checkbox-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  margin-top: 6px;
  color: var(--ink);
  font-weight: 800;
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
  margin-top: 2px;
}

.payment-summary {
  display: grid;
  gap: 6px;
  padding: 14px;
  background: #f7fbff;
  border: 1px solid rgba(36, 107, 254, 0.22);
  border-radius: var(--radius);
}

.payment-summary span,
.payment-summary small {
  color: var(--muted);
  font-weight: 800;
}

.payment-summary strong {
  color: var(--ink);
  font-size: 1.7rem;
  line-height: 1;
}

.wallet-box span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.wallet-box code {
  overflow-wrap: anywhere;
}

.wallet-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.copy-button {
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  font-weight: 900;
}

.modal-note,
.form-status {
  margin: 0;
}

.next-steps {
  display: grid;
  gap: 8px;
  padding: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.next-steps span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.next-steps ol {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.45;
}

.form-status {
  min-height: 24px;
  color: var(--green);
  font-weight: 800;
}

.submission-toast {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(16, 21, 31, 0.62);
  backdrop-filter: blur(8px);
}

.submission-toast[hidden] {
  display: none;
}

.toast-card {
  position: relative;
  width: min(420px, 100%);
  padding: 28px;
  text-align: center;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(16, 21, 31, 0.28);
}

.toast-card h2 {
  margin: 14px 0 8px;
  font-size: 1.8rem;
}

.toast-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.toast-card a {
  color: var(--blue);
  font-weight: 900;
}

.toast-card .toast-action {
  margin-top: 18px;
  color: #fff;
}

.toast-close {
  top: 12px;
  right: 12px;
}

.toast-done {
  width: 100%;
  margin-top: 10px;
}

.hidden-frame {
  display: none;
}

.support-chat {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 55;
  display: grid;
  justify-items: end;
  gap: 12px;
  pointer-events: none;
}

.support-chat-toggle,
.support-chat-panel {
  pointer-events: auto;
}

.support-chat-toggle {
  display: grid;
  min-width: 184px;
  padding: 12px 16px;
  color: #fff;
  text-align: left;
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 46px rgba(16, 21, 31, 0.24);
}

.support-chat-toggle span {
  color: #b8c3d4;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-chat-toggle strong {
  font-size: 1rem;
}

.support-chat-panel {
  width: min(390px, calc(100vw - 32px));
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(16, 21, 31, 0.22);
}

.support-chat-panel[hidden] {
  display: none;
}

.support-chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  color: #fff;
  background: var(--ink);
}

.support-chat-header span {
  display: block;
  color: #b8c3d4;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-chat-header strong {
  display: block;
  margin-top: 3px;
  font-size: 1.18rem;
}

.support-chat-close {
  width: 34px;
  height: 34px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 0;
  border-radius: 50%;
  font-size: 1.3rem;
}

.support-chat-body,
.support-chat-form {
  display: grid;
  gap: 12px;
}

.support-chat-body {
  max-height: min(72vh, 680px);
  overflow-y: auto;
  padding: 16px;
}

.support-chat-body p,
.support-chat-email {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.support-chat-quick {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.support-chat-quick button {
  min-height: 38px;
  padding: 0 10px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 900;
}

.support-chat-answer {
  padding: 12px;
  background: #f7fbff;
  border: 1px solid rgba(36, 107, 254, 0.18);
  border-radius: var(--radius);
}

.support-chat-status {
  min-height: 21px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 900;
}

.support-chat-email a {
  color: var(--blue);
  font-weight: 900;
}

.loader {
  width: 46px;
  height: 46px;
  margin: 0 auto;
  border: 4px solid #dfe5ee;
  border-top-color: var(--blue);
  border-radius: 999px;
  animation: spin 850ms linear infinite;
}

.loader[hidden] {
  display: none;
}

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

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

  .benefit-grid,
  .use-case-grid,
  .team-grid,
  .decision-grid,
  .activation-grid,
  .value-grid,
  .checklist-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .pricing-band,
  .terms-section,
  .trust-section,
  .careers-hero,
  .region-block,
  .apply-band,
  .conversion-band {
    grid-template-columns: 1fr;
  }

  .trust-section > div:first-child {
    position: static;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 420px;
  }

  .platform-grid,
  .steps,
  .terms-grid,
  .trust-grid,
  .job-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  h1 {
    max-width: 660px;
    font-size: clamp(2.55rem, 9vw, 4.15rem);
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 16px;
  }

  .site-header {
    gap: 12px;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-actions button {
    min-height: 38px;
    padding-inline: 12px;
  }

  h1 {
    font-size: clamp(2.15rem, 9.5vw, 3rem);
    line-height: 1;
  }

  .hero {
    padding: 44px 16px 34px;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.55;
  }

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

  .hero-metrics div {
    min-height: auto;
  }

  .hero-visual,
  .hero-visual img {
    min-height: 320px;
  }

  .floating-panel {
    min-width: 148px;
    padding: 14px;
  }

  .floating-panel strong {
    font-size: 1.28rem;
  }

  .platform-grid,
  .steps,
  .terms-grid,
  .benefit-grid,
  .use-case-grid,
  .trust-grid,
  .decision-grid,
  .activation-grid,
  .value-grid,
  .checklist-grid,
  .process-grid,
  .faq-grid,
  .team-grid,
  .job-grid {
    grid-template-columns: 1fr;
    padding-inline: 16px;
  }

  .why-section,
  .use-case-section,
  .trust-section,
  .decision-section,
  .faq-section,
  .activation-section,
  .career-values,
  .application-checklist,
  .hiring-process,
  .team-section,
  .openings-section {
    padding-inline: 16px;
  }

  .careers-hero {
    padding: 44px 16px 34px;
  }

  .careers-hero h1 {
    font-size: clamp(2.2rem, 9.5vw, 3.1rem);
  }

  .team-grid,
  .job-grid {
    padding-inline: 0;
  }

  .apply-band,
  .conversion-band {
    margin-inline: 16px;
  }

  .section-intro {
    padding-inline: 16px;
  }

  .pricing-band,
  .terms-section,
  .conversion-band {
    margin-inline: 16px;
    padding: 24px;
  }

  .terms-grid {
    padding-inline: 0;
  }

  .wallet-row {
    grid-template-columns: 1fr;
  }

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

  .site-footer .ghost-button {
    width: 100%;
  }

  .support-chat {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .support-chat-toggle,
  .support-chat-panel {
    width: 100%;
  }

  .support-chat-body {
    max-height: 68vh;
  }
}
