:root {
  --bg: #fbfcfa;
  --paper: #ffffff;
  --soft: #f3faf6;
  --mint: #a8e6c5;
  --mint-action: #6fd99f;
  --mint-soft: #e9f8ef;
  --brand-mist: #F2FBF6;
  --teal-action: #16b8a3;
  --teal-action-dark: #0d8f82;
  --emerald: #22c55e;
  --emerald-dark: #167a3d;
  --emerald-deep: #0f7c3a;
  --ink: #1a1a1a;
  --muted: #6f756f;
  --line: #e1e5dd;
  --shadow: 0 24px 70px rgba(26, 26, 26, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

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

a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.top-note {
  background: var(--mint-soft);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
  font-weight: 650;
  padding: 10px 20px;
  text-align: center;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  padding: 14px 20px 0;
}

.nav-shell {
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 38px rgba(26, 26, 26, 0.08);
  display: flex;
  gap: 26px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 780px;
  padding: 9px 12px 9px 22px;
}

.brand {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
}

.brand img {
  height: 32px;
  width: auto;
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: center;
}

.nav-links a,
.footer a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 750;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.button:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.button.primary {
  background: var(--teal-action);
  color: var(--brand-mist);
  box-shadow: 0 12px 28px rgba(22, 184, 163, 0.24);
}

.button.primary:hover {
  background: var(--teal-action-dark);
}

.button.secondary {
  background: var(--paper);
  border: 1px solid rgba(22, 184, 163, 0.22);
  color: var(--teal-action-dark);
  box-shadow: 0 12px 28px rgba(22, 184, 163, 0.12);
}

.button.secondary:hover {
  background: var(--mint-soft);
}

.button.ghost {
  border: 1px solid var(--line);
  color: var(--ink);
}

.section {
  padding: 108px 24px;
}

.section.tight {
  padding-top: 72px;
}

.container {
  margin: 0 auto;
  max-width: 1180px;
}

.narrow {
  margin: 0 auto;
  max-width: 780px;
}

.hero {
  padding: 122px 24px 78px;
  text-align: center;
}

.eyebrow {
  color: var(--emerald-dark);
  display: block;
  font-size: 15px;
  font-weight: 750;
  margin: 0 auto 22px;
  max-width: 760px;
}

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
  margin: 0;
  text-wrap: balance;
}

h1 {
  font-size: 78px;
  margin: 0 auto 24px;
  max-width: 980px;
}

h2 {
  font-size: 56px;
  margin-bottom: 18px;
}

h3 {
  font-size: 34px;
}

.lead {
  color: var(--muted);
  font-size: 21px;
  line-height: 1.5;
  margin: 0 auto;
  max-width: 780px;
  text-wrap: pretty;
}

.hero-actions,
.actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 34px;
}

.hero-media {
  margin: 64px auto 0;
  max-width: 1020px;
}

.browser-card {
  background: transparent;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
  overflow: hidden;
}

.browser-body {
  padding: 0;
}

.browser-body.flush {
  padding: 0;
}

.browser-card img {
  border-radius: 8px;
}

.powered-by-sui {
  display: block;
  height: auto;
  margin: 38px auto 0;
  max-width: 420px;
  width: 100%;
}

.feature-grid,
.split {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: 1fr 1fr;
}

.feature-grid.reverse .feature-copy {
  order: 2;
}

.feature-copy p,
.card p,
.step p,
.contact-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
  margin: 16px 0 0;
}

.soft-band {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.section-heading {
  margin: 0 auto 44px;
  max-width: 820px;
  text-align: center;
}

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

.logo-tile {
  align-items: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  min-height: 150px;
  padding: 28px;
}

.logo-tile img {
  max-height: 82px;
  max-width: 82%;
  object-fit: contain;
  opacity: 0.9;
}

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

.step,
.card,
.contact-card,
.policy-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.step {
  padding: 28px;
}

.step-number {
  align-items: center;
  background: var(--mint-soft);
  border-radius: 999px;
  color: var(--emerald-dark);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  height: 34px;
  justify-content: center;
  margin-bottom: 18px;
  width: 34px;
}

.card {
  padding: 30px;
}

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

.stats {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 46px;
}

.stat {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.stat strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  font-weight: 500;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  display: block;
  font-weight: 750;
  margin-top: 8px;
}

.showcase-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 40px;
}

.single-showcase {
  margin: 44px auto 0;
  max-width: 1080px;
}

.single-showcase img {
  border-radius: 8px;
  width: 100%;
}

.offer-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.offer-card img {
  background: var(--soft);
  border-radius: 8px;
  height: 150px;
  object-fit: contain;
  padding: 24px;
  width: 100%;
}

.probability {
  color: var(--emerald-dark);
  font-size: 14px;
  font-weight: 800;
  margin-top: 12px;
}

.brand-list {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 36px;
}

.brand-pill {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 750;
  padding: 14px 18px;
  text-align: center;
}

.agency-flow {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 34px;
}

.steps-art {
  margin: 42px auto 0;
  max-width: 1120px;
}

.steps-art img {
  border-radius: 8px;
  width: 100%;
}

.flow-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}

.flow-card img {
  border-radius: 8px;
  height: 132px;
  object-fit: cover;
  width: 100%;
}

.flow-card h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 18px;
}

.cta-panel {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 52px;
}

.cta-window {
  align-items: center;
  background: transparent;
  border-radius: 8px;
  box-shadow: none;
  display: grid;
  gap: 36px;
  grid-template-columns: 0.85fr 1.15fr;
  padding: 0;
}

.cta-window h2 {
  max-width: 760px;
}

.cta-art {
  align-self: stretch;
  background: transparent;
  border-radius: 8px;
  min-height: 280px;
  overflow: hidden;
}

.cta-art img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.agency-hero .hero-media {
  max-width: 760px;
}

.agency-logo-strip {
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.agency-logo {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  min-height: 138px;
  padding: 28px;
}

.agency-logo img {
  max-height: 72px;
  object-fit: contain;
  width: 100%;
}

.agency-designed {
  align-items: stretch;
  background: #f4f4f2;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  overflow: hidden;
}

.agency-designed-copy {
  display: grid;
  gap: 34px;
  padding: 64px 52px;
}

.agency-designed-copy h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 54px;
  font-weight: 500;
  line-height: 1.04;
  margin-bottom: 18px;
}

.agency-designed-copy h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.1;
}

.agency-designed-copy p {
  color: var(--muted);
  font-size: 21px;
  line-height: 1.5;
  margin: 10px 0 0;
}

.agency-designed-art {
  background: var(--mint-soft);
  min-height: 580px;
  overflow: hidden;
}

.agency-designed-art img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

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

.partner-heading h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.02;
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
  text-align: center;
}

.benefit-card {
  align-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  min-height: 180px;
  padding: 28px;
  text-align: center;
}

.benefit-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.18;
  max-width: 260px;
}

.contact-layout {
  align-items: start;
  display: grid;
  gap: 44px;
  grid-template-columns: 0.95fr 1.05fr;
}

.contact-card {
  padding: 34px;
}

.form-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
  margin-top: 26px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
}

input,
textarea {
  background: #fbfcfa;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font: inherit;
  min-height: 48px;
  padding: 12px 14px;
  width: 100%;
}

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

.success-note {
  color: var(--emerald-dark);
  font-size: 14px;
  font-weight: 750;
  margin-top: 16px;
}

.success-note[hidden] {
  display: none;
}

.demo-space {
  min-height: 360px;
}

.policy-card {
  padding: 44px;
}

.policy-card h1 {
  font-size: 56px;
  margin: 0 0 10px;
}

.policy-card h2 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.3;
  margin: 32px 0 10px;
}

.policy-card p,
.policy-card li {
  color: var(--muted);
  font-size: 16px;
}

.policy-card ul {
  padding-left: 20px;
}

.footer {
  padding: 72px 24px 34px;
}

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

.footer-logo {
  height: 36px;
  width: auto;
}

.footer h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 850;
  margin-bottom: 12px;
}

.footer ul {
  display: grid;
  gap: 9px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  font-size: 13px;
  justify-content: space-between;
  margin-top: 46px;
  padding-top: 24px;
}

.socials {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-left: auto;
}

.socials img {
  height: 26px;
  opacity: 0.82;
  width: 26px;
}

@media (max-width: 980px) {
  .nav-shell {
    border-radius: 8px;
    flex-wrap: wrap;
  }

  .nav-links {
    flex: 1 1 100%;
    gap: 16px;
    order: 3;
  }

  h1 {
    font-size: 58px;
  }

  h2,
  .policy-card h1 {
    font-size: 44px;
  }

  .feature-grid,
  .split,
  .contact-layout,
  .cta-window,
  .agency-designed {
    grid-template-columns: 1fr;
  }

  .feature-grid.reverse .feature-copy {
    order: 0;
  }

  .steps,
  .agency-flow,
  .logo-cloud,
    .card-grid,
    .stats,
    .benefit-grid,
    .brand-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .agency-designed-art {
    min-height: 440px;
  }

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

@media (max-width: 640px) {
  .top-note {
    font-size: 13px;
  }

  .site-header {
    top: 0;
    padding: 10px;
  }

  .nav-shell {
    gap: 14px;
    padding: 12px;
  }

  .brand img {
    height: 28px;
  }

  .nav-links {
    align-items: stretch;
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
  }

  .nav-shell .button {
    width: 100%;
  }

  .hero {
    padding-top: 74px;
  }

  h1 {
    font-size: 42px;
  }

  h2,
  .policy-card h1 {
    font-size: 34px;
  }

  h3 {
    font-size: 28px;
  }

  .lead {
    font-size: 18px;
  }

  .section {
    padding: 72px 18px;
  }

  .step,
  .card,
  .contact-card,
  .policy-card,
  .cta-window {
    padding: 24px;
  }

  .steps,
  .agency-flow,
  .logo-cloud,
  .card-grid,
  .stats,
    .showcase-grid,
    .benefit-grid,
    .brand-list,
    .form-grid {
    grid-template-columns: 1fr;
  }

  .cta-panel {
    padding: 24px;
  }

  .agency-designed-copy {
    padding: 34px 24px;
  }

  .agency-designed-art {
    min-height: 320px;
  }

  .footer-grid,
  .footer-bottom {
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
  }
}
