:root {
  --green: #00574a;
  --green-deep: #003f37;
  --yellow: #fcc62e;
  --orange: #ff9217;
  --mint: #ecf8f6;
  --paper: #fffaf0;
  --ink: #050505;
  --muted: rgba(0, 0, 0, 0.62);
  --line: rgba(0, 0, 0, 0.12);
  --white-line: rgba(255, 255, 255, 0.052);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.18);
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

:where(body, button, input, textarea, select) {
  font-family: "Montserrat", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 56px));
  margin: 0 auto;
}

.section-grid {
  background-image:
    linear-gradient(var(--white-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--white-line) 1px, transparent 1px);
  background-size: 46.08px 46.08px;
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 40;
  width: 100%;
  min-height: 128px;
  color: #ffffff;
}

.header-inner {
  display: grid;
  width: min(var(--container), calc(100% - 56px));
  min-height: 128px;
  margin: 0 auto;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-weight: 900;
}

.brand-logo {
  width: 147px;
  height: auto;
  max-height: 57px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.2vw, 42px);
  font-size: 15px;
  font-weight: 800;
}

.main-nav a,
.nav-actions a {
  position: relative;
  white-space: nowrap;
}

.main-nav a::after,
.nav-actions > a:first-child::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--yellow);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.nav-actions > a:first-child:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
}

.language-pill,
.login-cta {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
}

.language-pill {
  min-width: 92px;
  background: rgba(255, 255, 255, 0.04);
}

.language-pill::before {
  width: 10px;
  height: 10px;
  margin-right: 9px;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.language-pill::after {
  margin-left: 9px;
  content: "⌄";
}

.login-cta {
  min-width: 136px;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.02);
}

.nav-cta {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  color: #000000;
  background: var(--yellow);
  border-radius: 100px;
}

@media (max-width: 1320px) {
  .language-pill {
    display: none;
  }

  .main-nav {
    font-size: 14px;
  }

  .login-cta {
    min-width: 122px;
  }

  .nav-cta {
    padding: 0 24px;
  }
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 0;
  background: #000000;
  border: 0;
  border-radius: 100px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: #ffffff;
}

.hero {
  min-height: 910px;
  padding: 188px 0 84px;
  overflow: hidden;
  color: #ffffff;
  background-color: var(--green);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(420px, 0.86fr);
  align-items: start;
  gap: 42px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  margin: 0 0 24px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: none;
}

.eyebrow span {
  display: inline-flex;
  min-height: 32px;
  max-width: 100%;
  align-items: center;
  padding: 0 16px;
  color: #000000;
  background: var(--yellow);
  border-radius: 100px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.hero h1 {
  position: relative;
  max-width: 760px;
  margin: 0;
  font-size: 73px;
  font-weight: 900;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.paint-highlight {
  position: relative;
  display: inline-block;
  padding: 0.02em 0.15em 0.08em;
  color: #000000;
  background: var(--yellow);
  border-radius: 0.16em;
  white-space: nowrap;
}

.hero-lede {
  max-width: 620px;
  margin: 34px 0 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 23px;
  font-weight: 600;
  line-height: 1.45;
}

.auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.official-auth-button {
  display: inline-flex;
  width: 320px;
  height: 48px;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 500;
  line-height: 20px;
}

.auth-icon {
  display: inline-flex;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.auth-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.official-apple-button {
  color: #ffffff;
  background: #000000;
  border: 0;
  font-weight: 400;
}

.official-apple-button:hover {
  background: #1a1a1a;
}

.official-apple-button:active {
  background: #333333;
}

.official-google-button {
  color: #1f1f1f;
  background: #ffffff;
  border: 1px solid #747775;
}

.official-google-button:hover {
  background: #f8f9fa;
}

.official-google-button:active {
  background: #f1f3f4;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 30px 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 15px;
  font-weight: 600;
}

.hero-proof p {
  margin: 0;
}

.avatar-stack {
  display: flex;
}

.avatar-stack img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border: 3px solid var(--green);
  border-radius: 999px;
}

.avatar-stack img + img {
  margin-left: -12px;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.store-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.store-actions .app-store-link {
  height: 50px;
}

.store-actions .google-play-link {
  height: 66px;
  margin: -8px 0;
}

.store-actions img {
  width: auto;
  height: 100%;
  object-fit: contain;
}

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

.phone-profile-image {
  width: min(460px, 100%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 34px 70px rgba(0, 0, 0, 0.28));
}

.phone-mockup {
  position: relative;
  width: min(440px, 100%);
  min-height: 720px;
  padding: 16px;
  background: linear-gradient(145deg, #161b1c, #050808);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 58px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}

.phone-mockup::before {
  position: absolute;
  inset: 9px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50px;
  content: "";
}

.phone-island {
  position: absolute;
  top: 26px;
  left: 50%;
  z-index: 3;
  width: 112px;
  height: 31px;
  background: #050505;
  border-radius: 999px;
  transform: translateX(-50%);
}

.phone-screen {
  position: relative;
  height: 688px;
  overflow: hidden;
  color: #111827;
  background:
    radial-gradient(circle at 12% 26%, rgba(198, 31, 255, 0.16), transparent 26%),
    radial-gradient(circle at 86% 52%, rgba(17, 144, 255, 0.16), transparent 30%),
    #ffffff;
  border-radius: 44px;
}

.app-topbar {
  display: flex;
  height: 96px;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 28px 20px;
}

.app-topbar img {
  width: 116px;
  height: auto;
}

.app-icons {
  display: flex;
  gap: 14px;
}

.app-icons span {
  width: 22px;
  height: 22px;
  border: 2px solid #111827;
  border-radius: 999px;
}

.app-icons span:nth-child(2) {
  border-radius: 5px;
  transform: rotate(45deg);
}

.app-icons span:nth-child(3) {
  position: relative;
  width: 28px;
  border: 0;
  border-radius: 0;
}

.app-icons span:nth-child(3)::before,
.app-icons span:nth-child(3)::after {
  position: absolute;
  left: 0;
  width: 28px;
  height: 2px;
  background: #111827;
  content: "";
}

.app-icons span:nth-child(3)::before {
  top: 6px;
}

.app-icons span:nth-child(3)::after {
  top: 15px;
}

.app-profile-card {
  position: relative;
  margin: 0 20px;
  padding: 48px 24px 26px;
  overflow: hidden;
  text-align: center;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 24, 39, 0.11);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(37, 57, 88, 0.11);
}

.app-profile-card::before,
.app-profile-card::after {
  position: absolute;
  top: 74px;
  width: 190px;
  height: 120px;
  border-top: 2px dotted rgba(153, 62, 255, 0.36);
  content: "";
}

.app-profile-card::before {
  left: -44px;
  transform: rotate(25deg);
}

.app-profile-card::after {
  right: -44px;
  border-top-color: rgba(39, 148, 255, 0.36);
  transform: rotate(-25deg);
}

.edit-profile {
  position: absolute;
  top: 20px;
  right: 18px;
  z-index: 2;
  width: 48px;
  height: 48px;
  color: #111827;
  background: #eef1ff;
  border: 0;
  border-radius: 12px;
  font-size: 23px;
}

.profile-avatar {
  position: relative;
  z-index: 1;
  width: 132px;
  height: 132px;
  margin: 0 auto 22px;
  object-fit: cover;
  border: 5px solid transparent;
  background: linear-gradient(135deg, #c833ff, #229bff) border-box;
  border-radius: 999px;
}

.app-profile-card h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 7px;
  font-size: 28px;
  line-height: 1;
  letter-spacing: 0;
}

.app-profile-card p,
.app-profile-card span {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0;
  color: #4b5563;
  font-size: 17px;
  font-weight: 500;
}

.profile-socials {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 26px 0 22px;
}

.profile-socials span {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: #111827;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, #ff4bd8, #278fff) border-box;
  border: 2px solid transparent;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 900;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-bottom: 24px;
}

.profile-stats div {
  border-right: 1px solid rgba(17, 24, 39, 0.1);
}

.profile-stats div:last-child {
  border-right: 0;
}

.profile-stats span {
  color: #4b5563;
  font-size: 12px;
}

.profile-stats strong {
  display: block;
  margin-top: 6px;
  font-size: 26px;
  line-height: 1;
}

.send-message {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, #b735f7, #2494ff);
  border-radius: 16px;
  font-size: 20px;
  font-weight: 600;
}

.app-link-list {
  display: grid;
  gap: 0;
  margin: 18px 24px 0;
}

.app-link-list a {
  display: grid;
  grid-template-columns: 42px 1fr;
  min-height: 64px;
  align-items: center;
  gap: 16px;
  color: #273044;
  border-bottom: 1px solid rgba(17, 24, 39, 0.1);
  font-size: 18px;
  font-weight: 500;
}

.app-link-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.app-link-icon.instagram {
  background: radial-gradient(circle at 30% 108%, #feda75 0 24%, #fa7e1e 25% 42%, #d62976 43% 60%, #962fbf 61% 78%, #4f5bd5 79%);
}

.app-link-icon.tiktok {
  background: linear-gradient(135deg, #111827, #111827 45%, #25f4ee 46% 58%, #fe2c55 59%);
}

.app-tabbar {
  position: absolute;
  right: 20px;
  bottom: 18px;
  left: 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  color: #6b7280;
  font-size: 11px;
  text-align: center;
}

.app-tabbar .active {
  color: #8f35ff;
}

.floating-card {
  position: absolute;
  z-index: 3;
  color: #000000;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.16);
}

.profile-card {
  right: 245px;
  bottom: 80px;
  display: grid;
  width: 390px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 100px;
}

.profile-card img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 999px;
}

.profile-card strong,
.profile-card span {
  display: block;
}

.profile-card strong {
  font-size: 15px;
  font-weight: 900;
}

.profile-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.profile-card a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 18px;
  color: #ffffff;
  background: #000000;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.message-card {
  top: 340px;
  left: -120px;
  width: 360px;
  padding: 18px 20px 18px 50px;
  border-radius: 100px;
}

.message-card p {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.status-dot {
  position: absolute;
  top: 26px;
  left: 22px;
  width: 14px;
  height: 14px;
  background: var(--orange);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(255, 146, 23, 0.14);
}

.metric-card {
  top: 190px;
  left: -150px;
  width: 230px;
  padding: 22px;
  border-radius: 24px;
}

.metric-card span,
.metric-card small {
  display: block;
  color: rgba(0, 0, 0, 0.58);
  font-size: 11px;
  font-weight: 800;
}

.metric-card strong {
  display: block;
  margin: 8px 0;
  color: var(--green);
  font-size: 31px;
  line-height: 1;
}

.channel-strip {
  padding: 34px 0;
  color: #000000;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.channel-strip-inner {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  align-items: center;
  gap: 40px;
}

.channel-strip p {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.45;
}

.channel-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.channel-pills span,
.integration-rail span {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: var(--mint);
  border: 1px solid rgba(0, 87, 74, 0.14);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 900;
}

.agent-section {
  padding: 118px 0 132px;
  background: #ffffff;
}

.agent-layout {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 34px 70px;
  align-items: start;
}

.agent-copy {
  grid-column: 1 / -1;
  max-width: 1120px;
}

.agent-copy h2,
.steps-copy h2,
.integrations-section h2,
.section-heading-row h2,
.messages-copy h2,
.pricing-copy h2 {
  margin: 0;
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  overflow-wrap: anywhere;
}

.agent-copy p:not(.section-kicker),
.steps-copy p:not(.section-kicker),
.section-heading-row p:not(.section-kicker),
.messages-copy p:not(.section-kicker),
.pricing-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.65;
}

.agent-copy p:not(.section-kicker) {
  max-width: 860px;
}

.section-kicker {
  color: rgba(0, 0, 0, 0.42);
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column: 1 / -1;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
}

.stat-grid article {
  min-height: 180px;
  padding: 32px;
  background: var(--mint);
}

.stat-grid strong {
  display: block;
  font-size: 70px;
  font-weight: 900;
  line-height: 1;
}

.stat-grid span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.analytics-board {
  grid-column: 1 / -1;
  padding: 18px;
  background: #000000;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.board-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.board-tabs button {
  min-height: 44px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.board-tabs button.is-active {
  color: #000000;
  background: var(--yellow);
}

.board-panel {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: 18px;
  min-height: 250px;
  padding: 26px;
  background: #ffffff;
  border-radius: 20px;
}

.board-panel strong {
  display: block;
  margin-top: 16px;
  color: var(--green);
  font-size: 52px;
  font-weight: 900;
}

.panel-label,
.board-panel small {
  display: block;
  color: rgba(0, 0, 0, 0.54);
  font-size: 13px;
  font-weight: 800;
}

.board-panel ul,
.price-card ul,
.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.board-panel li {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  font-weight: 800;
}

.board-panel li strong {
  margin: 0;
  color: #000000;
  font-size: 16px;
}

.steps-section {
  padding: 118px 0;
  background-color: var(--yellow);
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.08) 1px, transparent 1px);
}

.steps-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  gap: 70px;
  align-items: start;
}

.pill-cta {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 0 28px;
  color: #ffffff;
  background: #000000;
  border-radius: 100px;
  font-weight: 900;
}

.pill-cta.light {
  color: #000000;
  background: #ffffff;
}

.step-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 24px;
}

.step-list article {
  display: grid;
  min-height: 172px;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 12px 28px;
  align-items: start;
  padding: 36px 46px;
  background: rgba(255, 255, 255, 0.48);
}

.step-list span {
  grid-row: 1 / span 2;
  font-size: 40px;
  font-weight: 900;
}

.step-list h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.1;
}

.step-list p {
  grid-column: 2;
  margin: 0;
  max-width: 680px;
  color: rgba(0, 0, 0, 0.62);
  font-weight: 700;
  line-height: 1.5;
}

.integrations-section {
  padding: 110px 0;
  overflow: hidden;
  background: #ffffff;
}

.integrations-section h2 {
  max-width: 860px;
  margin-bottom: 48px;
}

.integration-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.integration-rail span {
  min-height: 82px;
  min-width: 152px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.07);
}

.reasons-section {
  padding: 96px 0 118px;
  background: var(--mint);
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.75fr);
  gap: 24px 64px;
  align-items: start;
  margin-bottom: 42px;
}

.section-heading-row .section-kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.section-heading-row h2 {
  max-width: 900px;
}

.section-heading-row p:not(.section-kicker) {
  margin-top: 10px;
  max-width: 560px;
}

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

.reason-grid article {
  min-height: 430px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid rgba(0, 87, 74, 0.12);
  border-radius: 24px;
  box-shadow: 0 18px 54px rgba(0, 87, 74, 0.08);
}

.reason-grid img,
.mini-inbox {
  width: 100%;
  height: 210px;
  object-fit: cover;
  border-radius: 18px;
}

.reason-grid h3 {
  margin: 24px 0 12px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}

.reason-grid p {
  margin: 0;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.55;
}

.mini-inbox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  color: #ffffff;
  background: var(--green);
}

.mini-inbox span,
.mini-inbox small {
  font-size: 13px;
  font-weight: 900;
}

.mini-inbox p {
  margin: 16px 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
}

.messages-section {
  padding: 118px 0;
  color: #ffffff;
  background-color: var(--green);
}

.messages-section .section-kicker,
.messages-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.messages-layout {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 70px;
  align-items: center;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  color: #000000;
  background: var(--yellow);
  border-radius: 100px;
  content: "✓";
  font-size: 13px;
  font-weight: 900;
  line-height: 20px;
  text-align: center;
}

.gift-board {
  padding: 24px;
  color: #000000;
  background: #ffffff;
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.gift-header {
  display: grid;
  min-height: 190px;
  align-content: center;
  padding: 26px;
  background: var(--yellow);
  border-radius: 22px;
}

.gift-header span,
.gift-header small {
  color: rgba(0, 0, 0, 0.62);
  font-size: 14px;
  font-weight: 900;
}

.gift-header strong {
  display: block;
  margin: 8px 0;
  font-size: 82px;
  font-weight: 900;
  line-height: 1;
}

.gift-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.gift-grid span {
  display: grid;
  min-height: 92px;
  align-content: center;
  gap: 6px;
  padding: 16px;
  background: var(--mint);
  border-radius: 16px;
  font-size: 13px;
  font-weight: 900;
}

.gift-grid strong {
  color: var(--green);
  font-size: 18px;
}

.pricing-section {
  padding: 118px 0 128px;
  background: var(--paper);
}

.pricing-layout {
  display: grid;
  grid-template-columns: 0.75fr 0.62fr;
  gap: 50px 70px;
  align-items: start;
}

.pricing-copy {
  grid-column: 1 / -1;
}

.price-card {
  padding: 34px;
  color: #ffffff;
  background: #000000;
  border-radius: 28px;
}

.price-card span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  color: #000000;
  background: var(--yellow);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 900;
}

.price-card h3 {
  margin: 28px 0 12px;
  font-size: 72px;
  line-height: 1;
}

.price-card p {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  line-height: 1.6;
}

.price-card li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 800;
}

.price-cta {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  margin-top: 26px;
  color: #000000;
  background: #ffffff;
  border-radius: 100px;
  font-weight: 900;
}

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

.faq-list details {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.06);
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 24px;
  font-size: 18px;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 24px 24px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.6;
}

.site-footer {
  padding: 110px 0 34px;
  color: #ffffff;
  background-color: var(--green);
}

.footer-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.1fr;
  gap: 80px;
}

.footer-brand p {
  max-width: 480px;
  margin: 24px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.22;
}

.footer-layout nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.footer-layout nav div {
  display: grid;
  gap: 14px;
  align-content: start;
}

.footer-layout nav strong {
  margin-bottom: 8px;
  color: var(--yellow);
  font-size: 14px;
  text-transform: uppercase;
}

.footer-layout nav a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.footer-stores a {
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  margin-top: 84px;
  padding-top: 26px;
  color: rgba(255, 255, 255, 0.68);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 1180px) {
  .site-header {
    gap: 22px;
  }

  .header-inner {
    gap: 22px;
  }

  .main-nav {
    gap: 24px;
  }

  .hero-layout,
  .steps-layout,
  .messages-layout,
  .pricing-layout,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 55px;
  }

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

  .phone-mockup {
    width: min(420px, 100%);
  }

  .message-card {
    left: 0;
  }

  .metric-card {
    left: auto;
    right: 0;
  }

  .agent-copy h2,
  .steps-copy h2,
  .integrations-section h2,
  .section-heading-row h2,
  .messages-copy h2,
  .pricing-copy h2 {
    font-size: 58px;
  }

  .analytics-board {
    grid-column: 1;
  }

  .section-heading-row,
  .agent-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .site-header {
    top: 0;
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 72px;
  }

  .brand-logo {
    width: 111px;
    max-height: 44px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav,
  .nav-actions {
    position: fixed;
    right: 16px;
    left: 16px;
    z-index: 60;
    display: none;
    color: #000000;
    background: #ffffff;
    border: 1px solid var(--line);
  }

  .main-nav {
    top: 86px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px;
    border-radius: 22px 22px 0 0;
  }

  .main-nav a {
    padding: 14px 8px;
  }

  .nav-actions {
    top: 299px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 0 18px 18px;
    border-top: 0;
    border-radius: 0 0 22px 22px;
  }

  .nav-actions a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .language-pill,
  .login-cta,
  .nav-cta {
    width: 100%;
  }

  body.nav-open .main-nav,
  body.nav-open .nav-actions {
    display: flex;
  }

  .hero {
    min-height: 0;
    padding-top: 104px;
    padding-bottom: 58px;
    text-align: center;
  }

  .hero h1 {
    max-width: 620px;
    margin: 0 auto;
    font-size: clamp(42px, 8.5vw, 56px);
    line-height: 1.18;
  }

  .hero-lede {
    max-width: 560px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.5;
  }

  .hero-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .hero-copy {
    display: contents;
  }

  .eyebrow {
    order: 1;
    width: 100%;
    justify-content: center;
    margin: 0;
  }

  .hero h1 {
    order: 2;
  }

  .hero-lede {
    order: 3;
  }

  .hero-visual {
    order: 4;
  }

  .auth-actions {
    order: 5;
    justify-content: center;
  }

  .hero-proof {
    order: 6;
    justify-content: center;
  }

  .store-actions {
    order: 7;
    justify-content: center;
  }

  .auth-actions,
  .official-auth-button {
    width: 100%;
  }

  .store-actions {
    width: 100%;
  }

  .hero-proof {
    align-items: center;
    flex-direction: column;
    margin: 0;
  }

  .hero-visual {
    width: 100%;
    min-height: auto;
    align-items: center;
    margin-top: 4px;
  }

  .message-card {
    top: 420px;
    left: 0;
    width: 290px;
  }

  .metric-card {
    top: 38px;
    right: 0;
    left: auto;
    width: 190px;
  }

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

  .channel-pills {
    justify-content: flex-start;
  }

  .stat-grid,
  .reason-grid,
  .gift-grid,
  .footer-layout nav {
    grid-template-columns: 1fr;
  }

  .board-panel {
    grid-template-columns: 1fr;
  }

  .step-list article {
    grid-template-columns: 1fr;
  }

  .step-list span,
  .step-list p {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: clamp(40px, 10.8vw, 46px);
  }

  .hero {
    padding-top: 94px;
  }

  .hero-layout {
    gap: 20px;
  }

  .eyebrow span {
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    font-size: 12px;
  }

  .hero-lede {
    font-size: 19px;
  }

  .agent-copy h2,
  .steps-copy h2,
  .integrations-section h2,
  .section-heading-row h2,
  .messages-copy h2,
  .pricing-copy h2 {
    font-size: 38px;
    line-height: 1.08;
  }

  .agent-section,
  .steps-section,
  .integrations-section,
  .reasons-section,
  .messages-section,
  .pricing-section,
  .site-footer {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .hero-visual {
    min-height: auto;
    align-items: center;
    flex-direction: column;
    gap: 14px;
  }

  .phone-mockup {
    width: min(100%, 340px);
    min-height: 560px;
    padding: 12px;
    border-radius: 42px;
  }

  .phone-mockup::before {
    border-radius: 35px;
  }

  .phone-island {
    top: 20px;
    width: 88px;
    height: 25px;
  }

  .phone-screen {
    height: 536px;
    border-radius: 32px;
  }

  .app-topbar {
    height: 76px;
    padding: 0 20px 14px;
  }

  .app-topbar img {
    width: 94px;
  }

  .app-icons {
    gap: 9px;
  }

  .app-icons span {
    width: 17px;
    height: 17px;
  }

  .app-profile-card {
    margin: 0 14px;
    padding: 34px 16px 18px;
    border-radius: 22px;
  }

  .edit-profile {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .profile-avatar {
    width: 96px;
    height: 96px;
    margin-bottom: 15px;
  }

  .app-profile-card h2 {
    font-size: 22px;
  }

  .app-profile-card p,
  .app-profile-card span {
    font-size: 13px;
  }

  .profile-socials {
    gap: 10px;
    margin: 18px 0 16px;
  }

  .profile-socials span {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .profile-stats strong {
    font-size: 20px;
  }

  .send-message {
    min-height: 48px;
    font-size: 16px;
  }

  .app-link-list a {
    min-height: 52px;
    font-size: 15px;
  }

  .app-tabbar {
    font-size: 9px;
  }

  .message-card,
  .metric-card {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: 100%;
    margin-bottom: 12px;
  }

  .profile-card {
    grid-template-columns: auto 1fr;
    border-radius: 22px;
  }

  .profile-card a {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .stat-grid strong,
  .price-card h3,
  .gift-header strong {
    font-size: 48px;
  }

  .board-tabs {
    grid-template-columns: 1fr;
  }

  .footer-brand p {
    font-size: 22px;
  }

  .footer-bottom {
    display: grid;
  }
}
