:root {
  --pink: #ec1b82;
  --pink-dark: #bc0b61;
  --pink-soft: #ffe7f3;
  --yellow: #ffd731;
  --ink: #111217;
  --muted: #64606d;
  --line: #ece7ee;
  --paper: #ffffff;
  --soft: #fff8fb;
  --shadow: 0 24px 70px rgba(80, 16, 48, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

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

.brand img {
  display: block;
  width: auto;
  height: 54px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--pink-dark);
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-switcher-label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.language-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.language-buttons button {
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 850;
}

.language-buttons button[aria-pressed="true"] {
  background: var(--pink);
  border-color: var(--pink);
  color: #ffffff;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 850;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.nav-cta,
.button.primary {
  color: #ffffff;
  background: var(--ink);
  box-shadow: 0 16px 32px rgba(17, 18, 23, 0.16);
}

.button.secondary {
  background: #ffffff;
  color: var(--ink);
  border-color: var(--line);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  min-height: calc(100vh - 82px);
  padding: clamp(48px, 8vw, 96px) clamp(20px, 5vw, 72px) clamp(36px, 6vw, 72px);
  background:
    linear-gradient(165deg, rgba(236, 27, 130, 0.12), rgba(255, 255, 255, 0) 48%),
    linear-gradient(0deg, var(--paper), var(--soft));
  overflow: hidden;
}

.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(165deg, rgba(236, 27, 130, 0.12), rgba(255, 255, 255, 0) 48%),
    linear-gradient(0deg, var(--paper), var(--soft));
}

.page-hero h1 {
  max-width: 960px;
  font-size: clamp(3.2rem, 8vw, 7rem);
}

.platform-hero {
  background:
    linear-gradient(165deg, rgba(255, 215, 49, 0.28), rgba(255, 255, 255, 0) 46%),
    linear-gradient(0deg, var(--paper), var(--soft));
}

.page-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.page-card h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.page-card p:not(.section-label) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.dark-card {
  background: var(--ink);
  color: #ffffff;
}

.dark-card .section-label {
  color: var(--yellow);
}

.dark-card p:not(.section-label) {
  color: rgba(255, 255, 255, 0.74);
}

.page-phone {
  justify-self: center;
}

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

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--pink-dark);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(4rem, 11vw, 8.7rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4.5vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-lead,
.section > p,
.intro p,
.platform-copy p,
.api p,
.nl-copy p,
.final-cta p {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0;
}

.centered-actions {
  justify-content: center;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 18px;
}

.store-badge-note {
  flex-basis: 100%;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.store-badge {
  display: inline-flex;
  border-radius: 12px;
  box-shadow: 0 16px 32px rgba(17, 18, 23, 0.16);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(17, 18, 23, 0.2);
}

.store-badge img {
  display: block;
  width: min(46vw, 180px);
  height: auto;
}

.centered-store-badges {
  justify-content: center;
  margin: 22px 0 0;
}

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

.trust-strip div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
}

.trust-strip dt {
  margin-bottom: 6px;
  font-weight: 900;
}

.trust-strip dd {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.4;
}

.hero-visual {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: min(84vw, 570px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: inset 0 -60px 0 rgba(255, 215, 49, 0.45);
}

.phone {
  position: relative;
  z-index: 1;
  width: min(78vw, 340px);
  min-height: 610px;
  padding: 18px;
  border: 10px solid var(--ink);
  border-radius: 42px;
  background: #fff9fd;
  box-shadow: var(--shadow);
}

.phone-top {
  width: 86px;
  height: 7px;
  margin: 0 auto 30px;
  border-radius: 999px;
  background: var(--ink);
}

.app-card {
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 35px rgba(80, 16, 48, 0.12);
}

.app-card-main {
  position: relative;
  padding: 22px;
  margin-bottom: 14px;
}

.status-dot {
  display: block;
  width: 14px;
  height: 14px;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 0 0 8px var(--pink-soft);
}

.card-kicker {
  margin-bottom: 8px;
  color: var(--pink-dark);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.app-card-main h2 {
  margin-bottom: 8px;
  font-size: 2.1rem;
}

.app-card-main p {
  color: var(--muted);
}

.reminder-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.mini-card {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  margin-bottom: 14px;
  font-size: 0.95rem;
}

.mini-card span {
  color: var(--muted);
}

.mini-card.yellow {
  background: var(--yellow);
  border-color: rgba(17, 18, 23, 0.08);
}

.mini-card.yellow span {
  color: rgba(17, 18, 23, 0.72);
}

.connector-panel {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 54px;
  width: 245px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.connector-panel p {
  margin-bottom: 14px;
  font-weight: 900;
}

.code-line {
  height: 10px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--pink-soft);
}

.code-line.long {
  width: 100%;
}

.code-line.medium {
  width: 72%;
}

.code-line.short {
  width: 44%;
  background: var(--yellow);
}

.section {
  padding: clamp(56px, 8vw, 112px) clamp(20px, 5vw, 72px);
}

.intro {
  max-width: 1120px;
}

.intro h2,
.intro p {
  max-width: 890px;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 34px;
}

.steps,
.stakeholder-grid,
.intake-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.steps article,
.intake-grid article,
.stakeholder,
.api-card,
.language-card,
.pricing-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(80, 16, 48, 0.08);
}

.steps article {
  min-height: 265px;
  padding: 26px;
}

.intake-grid article {
  min-height: 245px;
  padding: 26px;
}

.step-number {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--pink);
  font-size: 0.9rem;
  font-weight: 950;
}

.steps p,
.intake-grid p,
.stakeholder li,
.pricing-card li {
  color: var(--muted);
  line-height: 1.55;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  align-items: start;
}

.split-section p {
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.6;
}

.feature-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 28px 28px 28px 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(80, 16, 48, 0.08);
  color: var(--muted);
  line-height: 1.55;
}

.pricing-card {
  padding: 28px;
}

.pricing-card h3 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.pricing-card p:not(.section-label) {
  color: var(--muted);
  line-height: 1.6;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding-left: 20px;
}

.pricing-card.highlighted {
  background: var(--ink);
  color: #ffffff;
}

.pricing-card.highlighted .section-label {
  color: var(--yellow);
}

.pricing-card.highlighted p:not(.section-label),
.pricing-card.highlighted li {
  color: rgba(255, 255, 255, 0.74);
}

.travel-panel {
  margin-top: 20px;
  padding: 28px;
  border: 1px solid rgba(236, 27, 130, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(236, 27, 130, 0.08), rgba(255, 215, 49, 0.16)),
    #ffffff;
}

.travel-panel h3 {
  max-width: 860px;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
}

.travel-panel p:not(.section-label) {
  max-width: 980px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.travel-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.travel-items span {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(236, 27, 130, 0.16);
  border-radius: 8px;
  background: #ffffff;
  font-weight: 900;
}

.platform {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
  background: var(--ink);
  color: #ffffff;
}

.platform .section-label {
  color: var(--yellow);
}

.platform-copy p {
  color: rgba(255, 255, 255, 0.72);
}

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

.stakeholder {
  padding: 28px;
  color: var(--ink);
}

.stakeholder ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding-left: 20px;
}

.no-show-panel {
  grid-column: 1 / -1;
  margin-top: 28px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.no-show-panel h3 {
  max-width: 760px;
  color: #ffffff;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
}

.no-show-panel p:not(.section-label) {
  max-width: 980px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.08rem;
  line-height: 1.6;
}

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

.metric-row span {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 16px;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 950;
}

.api {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 36px;
  align-items: center;
}

.api-card {
  overflow: hidden;
  background: #121217;
  color: #ffffff;
}

.api-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.api-card-header span {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 950;
}

pre {
  margin: 0;
  padding: 22px;
  overflow-x: auto;
  color: #f8eafa;
  font-size: clamp(0.78rem, 1.4vw, 1rem);
  line-height: 1.65;
}

.integrations {
  background: var(--soft);
}

.intake {
  background: var(--soft);
}

.integration-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.integration-list span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(236, 27, 130, 0.18);
  border-radius: 999px;
  background: #ffffff;
  font-weight: 850;
}

.nl {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 36px;
  align-items: center;
}

.language-card {
  padding: 24px;
}

.language-card button {
  min-width: 58px;
  min-height: 42px;
  margin: 0 8px 22px 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 950;
}

.language-card button.active {
  background: var(--pink);
  color: #ffffff;
  border-color: var(--pink);
}

.language-card .muted {
  color: var(--muted);
  line-height: 1.55;
}

.final-cta {
  text-align: center;
  background: var(--pink);
  color: #ffffff;
}

.final-cta .section-label,
.final-cta p {
  color: rgba(255, 255, 255, 0.86);
}

.final-cta h2,
.final-cta p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta .button {
  margin-top: 14px;
  background: #ffffff;
  color: var(--ink);
}

.legal-hero {
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px) clamp(36px, 6vw, 64px);
  background:
    linear-gradient(165deg, rgba(236, 27, 130, 0.12), rgba(255, 255, 255, 0) 48%),
    linear-gradient(0deg, var(--paper), var(--soft));
}

.legal-hero h1 {
  max-width: 980px;
  font-size: clamp(3.1rem, 8vw, 7rem);
}

.legal-updated {
  color: var(--muted);
  font-weight: 850;
}

.legal-page {
  padding: 0 clamp(20px, 5vw, 72px) clamp(56px, 8vw, 112px);
}

.legal-card {
  max-width: 980px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(80, 16, 48, 0.08);
}

.legal-card h2 {
  margin-top: 34px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.legal-card ul,
.legal-card ol {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding-left: 24px;
}

.legal-card a {
  color: var(--pink-dark);
  font-weight: 850;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 1040px) {
  .nav {
    display: none;
  }

  .language-switcher-label {
    display: none;
  }

  .hero,
  .page-hero,
  .platform,
  .api,
  .nl,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-visual {
    min-height: 560px;
  }

  .steps,
  .intake-grid,
  .stakeholder-grid,
  .pricing-grid,
  .travel-items,
  .metric-row {
    grid-template-columns: 1fr;
  }
}

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

  .brand {
    min-width: 66px;
  }

  .brand img {
    height: 44px;
  }

  .nav-cta {
    display: none;
  }

  .language-switcher {
    flex: 1 1 100%;
    order: 3;
  }

  .language-buttons {
    width: 100%;
  }

  .language-buttons button {
    flex: 1 1 auto;
  }

  .hero {
    padding-top: 38px;
  }

  h1 {
    font-size: clamp(3.35rem, 17vw, 5rem);
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 470px;
    justify-content: flex-start;
  }

  .phone {
    width: min(92vw, 320px);
    min-height: 520px;
    border-radius: 34px;
  }

  .connector-panel {
    right: 2px;
    bottom: 10px;
    width: min(68vw, 220px);
  }

  .app-card-main h2 {
    font-size: 1.75rem;
  }

  .mini-card {
    flex-direction: column;
  }

  .section {
    padding: 52px 18px;
  }

  .site-footer {
    flex-direction: column;
  }
}
