:root {
  --ink: #06140f;
  --text: #182c25;
  --muted: #62736d;
  --line: #dbe8e1;
  --soft: #f5faf7;
  --green: #0e9f6e;
  --green-2: #7ee2b8;
  --blue: #1677ff;
  --yellow: #f2b705;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(6, 20, 15, .1);
  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;
  min-width: 320px;
  color: var(--text);
  background: #fbfdfb;
}

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

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

.topbar {
  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(255, 255, 255, .86);
  border-bottom: 1px solid rgba(219, 232, 225, .78);
  backdrop-filter: blur(18px);
}

.brand img {
  display: block;
  width: 188px;
  max-width: 45vw;
  height: auto;
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.topbar nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 750;
}

.topbar nav a:hover,
.topbar nav a:focus-visible {
  color: var(--ink);
  background: var(--soft);
  outline: none;
}

.hero,
.section,
.request-section,
.footer {
  width: min(1180px, calc(100vw - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 48px;
  align-items: end;
  min-height: 74vh;
  padding: 84px 0 72px;
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 7vw, 6.9rem);
  line-height: .91;
  letter-spacing: -.055em;
}

.hero p {
  max-width: 690px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.6;
}

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

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

.button,
.package-card button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.button:hover,
.button:focus-visible,
.package-card button:hover,
.package-card button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.primary {
  color: var(--ink);
  background: var(--green-2);
  border-color: var(--green-2);
  box-shadow: 0 18px 36px rgba(14, 159, 110, .23);
}

.secondary,
.package-card button {
  color: var(--ink);
  background: var(--white);
}

.status-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(14, 159, 110, .12), transparent 52%),
    var(--white);
  box-shadow: var(--shadow);
}

.status-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 74px;
  padding: 0 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(219, 232, 225, .75);
}

.status-card span {
  color: var(--muted);
  font-size: .85rem;
  font-weight: 750;
}

.status-card strong {
  color: var(--ink);
  font-size: 1.6rem;
  letter-spacing: -.04em;
}

.section,
.request-section {
  padding: 74px 0;
  border-top: 1px solid var(--line);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.section h2,
.request-section h2 {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1;
  letter-spacing: -.045em;
}

.muted,
.request-intro p {
  color: var(--muted);
  line-height: 1.65;
}

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

.use-grid article,
.package-card,
.social-card,
.request-form {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--white);
  box-shadow: 0 14px 42px rgba(6, 20, 15, .055);
}

.use-grid article {
  min-height: 230px;
  padding: 24px;
}

.use-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--green-2);
  border-radius: 14px;
  font-weight: 900;
}

.use-grid h3,
.package-card h3 {
  margin: 22px 0 10px;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1.1;
}

.use-grid p,
.package-card span,
.package-card li {
  color: var(--muted);
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: .84fr 1fr;
  gap: 46px;
  align-items: start;
}

.steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  counter-reset: step;
  list-style: none;
}

.steps li {
  position: relative;
  padding: 22px 22px 22px 76px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--soft);
}

.steps li::before {
  content: counter(step, decimal-leading-zero);
  counter-increment: step;
  position: absolute;
  left: 20px;
  top: 20px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--ink);
  border-radius: 14px;
  font-size: .78rem;
  font-weight: 900;
}

.steps span {
  color: var(--ink);
  font-weight: 900;
}

.steps p {
  margin: 5px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

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

.package-card {
  display: flex;
  flex-direction: column;
  min-height: 380px;
  padding: 26px;
}

.package-card.featured {
  background:
    radial-gradient(circle at 88% 0%, rgba(126, 226, 184, .32), transparent 36%),
    var(--ink);
  border-color: rgba(6, 20, 15, .2);
}

.package-card p {
  margin: 0;
  color: var(--green);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.package-card.featured p,
.package-card.featured h3,
.package-card.featured li,
.package-card.featured span {
  color: var(--white);
}

.package-card h3 {
  margin-top: 20px;
  font-size: 2.2rem;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
  padding-left: 18px;
}

.package-card button {
  width: 100%;
  margin-top: auto;
}

.package-card.featured button {
  border-color: var(--green-2);
  background: var(--green-2);
}

.social-section {
  position: relative;
}

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

.social-card {
  display: grid;
  align-content: start;
  min-height: 230px;
  padding: 24px;
  overflow: hidden;
}

.social-card.large {
  color: var(--white);
  background:
    radial-gradient(circle at 84% 12%, rgba(126, 226, 184, .34), transparent 34%),
    linear-gradient(135deg, #071911, #0b3325 58%, #0d805a);
}

.social-card span {
  color: var(--green);
  font-size: .74rem;
  font-weight: 950;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.social-card.large span,
.social-card.large p {
  color: rgba(255, 255, 255, .74);
}

.social-card h3 {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 1.32rem;
  line-height: 1.08;
  letter-spacing: -.035em;
}

.social-card.large h3 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  max-width: 520px;
}

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

.platform-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.platform-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(14, 159, 110, .2);
  border-radius: 999px;
  background: rgba(126, 226, 184, .14);
  color: var(--ink);
  font-size: .86rem;
  font-weight: 850;
}

.request-section {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.request-intro {
  position: sticky;
  top: 104px;
}

.request-form {
  display: grid;
  gap: 22px;
  padding: 28px;
}

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

label,
fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  color: var(--ink);
  font-size: .9rem;
  font-weight: 850;
}

fieldset {
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 12px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--soft);
  color: var(--ink);
}

input,
select {
  height: 52px;
  padding: 0 14px;
}

textarea {
  min-height: 128px;
  padding: 14px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(14, 159, 110, .14);
}

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

.check-grid label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--soft);
  font-size: .86rem;
}

.check-grid input {
  width: 17px;
  height: 17px;
  accent-color: var(--green);
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
}

.form-footer p {
  margin: 0;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.4;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 32px 0 46px;
  border-top: 1px solid var(--line);
}

.footer img {
  width: 188px;
  height: auto;
}

.footer p {
  margin: 0;
  color: var(--muted);
}

.footer a {
  color: var(--ink);
  font-weight: 850;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.legal-page {
  width: min(920px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 76px 0 84px;
}

.legal-page h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  line-height: .92;
  letter-spacing: -.055em;
}

.legal-updated {
  margin: 18px 0 34px;
  color: var(--muted);
  font-weight: 800;
}

.legal-page section {
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.legal-page h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.35rem;
  letter-spacing: -.025em;
}

.legal-page p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.legal-page a {
  color: var(--green);
  font-weight: 900;
}

.setup-list {
  display: grid;
  gap: 10px;
}

.setup-list p {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--soft);
  overflow-wrap: anywhere;
}

.setup-list strong {
  color: var(--ink);
}

.permission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.permission-grid span {
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(14, 159, 110, .1);
  border: 1px solid rgba(14, 159, 110, .18);
  color: var(--ink);
  font-size: .86rem;
  font-weight: 900;
}

@media (max-width: 960px) {
  .hero,
  .split,
  .request-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .request-intro {
    position: static;
  }

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

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

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

  .social-card.large {
    grid-column: 1 / -1;
  }
}

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

  .topbar nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero,
  .section,
  .request-section,
  .footer {
    width: min(100vw - 28px, 1180px);
  }

  .hero h1 {
    font-size: 3.1rem;
  }

  .section,
  .request-section {
    padding: 48px 0;
  }

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

  .request-form {
    padding: 20px;
  }

  .form-footer,
  .footer {
    align-items: stretch;
    flex-direction: column;
  }

  .section-head {
    align-items: stretch;
    flex-direction: column;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .form-footer .button {
    width: 100%;
  }
}
