:root {
  --bg: #f7faf7;
  --paper: #ffffff;
  --paper-soft: #eff6f1;
  --ink: #12252b;
  --muted: #617176;
  --line: #dce7e0;
  --teal: #00a6a6;
  --teal-dark: #08737a;
  --lime: #b9cc45;
  --leaf: #4f8f68;
  --gold: #e5b04b;
  --blue: #336fb7;
  --shadow: 0 24px 70px rgba(21, 53, 57, 0.13);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 2%, rgba(185, 204, 69, 0.25), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(0, 166, 166, 0.17), transparent 28%),
    linear-gradient(180deg, #fbfdf8, var(--bg) 34%, #eef5f1);
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  font: inherit;
}

.shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(18, 37, 43, 0.08);
  background: rgba(247, 250, 247, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  object-fit: cover;
  box-shadow: 0 12px 28px rgba(0, 166, 166, 0.2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

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

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 21px;
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  cursor: pointer;
  font-weight: 900;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

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

.button.primary {
  color: #06292b;
  background: linear-gradient(135deg, var(--lime), #65d9bd 48%, var(--teal));
  box-shadow: 0 16px 34px rgba(0, 166, 166, 0.2);
}

.button.secondary {
  color: var(--teal-dark);
  background: var(--paper);
  border: 1px solid var(--line);
}

.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 64px;
  padding: 74px 0 58px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  border: 1px solid rgba(0, 166, 166, 0.22);
  border-radius: 999px;
  padding: 0 12px;
  color: var(--teal-dark);
  background: rgba(0, 166, 166, 0.07);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(185, 204, 69, 0.18);
}

.eyebrow.inverted {
  color: white;
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.14);
}

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

h1 {
  margin-bottom: 8px;
  margin-top: 22px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(76px, 13vw, 154px);
  line-height: .86;
  letter-spacing: .01em;
}

h2 {
  margin-bottom: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(48px, 7vw, 84px);
  line-height: .92;
  letter-spacing: .02em;
}

.tagline {
  margin-bottom: 20px;
  color: var(--teal-dark);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.lead {
  max-width: 610px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.74;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.trust-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.hero-device {
  justify-self: center;
  width: min(390px, 100%);
}

.device-frame {
  border: 12px solid #143037;
  border-radius: 42px;
  overflow: hidden;
  background: #f9fcf8;
  box-shadow: var(--shadow);
}

.device-header {
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
}

.device-header img {
  width: 24px;
  height: 24px;
  border-radius: 7px;
}

.device-header strong {
  font-size: 13px;
}

.device-body {
  min-height: 562px;
  padding: 20px;
}

.mini-title {
  color: var(--ink);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.device-body p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.role-switcher {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 16px 0;
}

.role-switcher button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--paper);
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.role-switcher button.active {
  color: #082a2d;
  border-color: rgba(0, 166, 166, 0.34);
  background: linear-gradient(135deg, rgba(185, 204, 69, 0.34), rgba(0, 166, 166, 0.13));
}

.role-preview {
  display: grid;
  gap: 10px;
}

.preview-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px;
  background: var(--paper);
}

.preview-card h3 {
  margin-bottom: 5px;
  font-size: 15px;
  letter-spacing: -0.03em;
}

.preview-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.section {
  padding: 94px 0;
}

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

.section-heading p,
.section-copy {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.72;
}

.section-heading.compact {
  align-items: start;
}

.role-grid,
.feature-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.role-card,
.feature-grid article,
.timeline article,
.pricing-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 38px rgba(25, 57, 59, 0.06);
}

.role-card.company {
  border-color: rgba(0, 166, 166, 0.28);
}

.role-card.freelancer {
  border-color: rgba(51, 111, 183, 0.24);
}

.role-card.client {
  border-color: rgba(185, 204, 69, 0.38);
}

.card-icon,
.feature-grid span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 15px;
  background: rgba(0, 166, 166, 0.09);
  font-size: 22px;
}

.role-card h3,
.feature-grid h3,
.timeline h3,
.pricing-grid h3 {
  margin-bottom: 8px;
  font-size: 21px;
  letter-spacing: -0.04em;
}

.role-card p,
.role-card li,
.feature-grid p,
.timeline p,
.pricing-grid p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.66;
}

.role-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
}

.band {
  padding: 92px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.65), rgba(239, 246, 241, 0.92)),
    radial-gradient(circle at 70% 0%, rgba(0, 166, 166, 0.12), transparent 35%);
}

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

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.timeline strong {
  display: block;
  margin-bottom: 24px;
  color: rgba(8, 115, 122, 0.25);
  font-family: "Bebas Neue", sans-serif;
  font-size: 62px;
  line-height: .8;
}

.split-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 42px;
}

.form-stack {
  display: grid;
  gap: 12px;
}

.form-stack div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: var(--paper);
  box-shadow: 0 16px 38px rgba(25, 57, 59, 0.06);
}

.form-stack span {
  color: var(--teal-dark);
  font-weight: 900;
}

.form-stack b {
  max-width: 410px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  text-align: right;
}

.pricing-grid {
  grid-template-columns: repeat(4, 1fr);
}

.pricing-grid span {
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pricing-grid strong {
  display: block;
  margin: 10px 0;
  color: var(--ink);
  font-size: 34px;
  font-weight: 900;
  letter-spacing: -0.06em;
}

.pricing-grid .featured {
  border-color: rgba(0, 166, 166, 0.38);
  box-shadow: 0 22px 50px rgba(0, 166, 166, 0.12);
}

.cta {
  display: grid;
  grid-template-columns: 180px 1fr 390px;
  align-items: center;
  gap: 30px;
  margin-bottom: 92px;
  border-radius: 30px;
  padding: 38px;
  color: white;
  background:
    radial-gradient(circle at 18% 0%, rgba(185, 204, 69, 0.28), transparent 30%),
    linear-gradient(135deg, #10252c, #08737a);
  box-shadow: var(--shadow);
}

.cta > img {
  width: 150px;
  max-width: 100%;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.95);
  padding: 14px;
}

.cta h2 {
  max-width: 520px;
}

.cta p {
  margin-bottom: 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
}

.waitlist-form {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.waitlist-form label {
  display: block;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 900;
}

.waitlist-form div {
  display: flex;
  gap: 8px;
}

.waitlist-form input {
  min-width: 0;
  flex: 1;
  min-height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  padding: 0 15px;
  color: white;
  background: rgba(255, 255, 255, 0.12);
  outline: 0;
}

.waitlist-form input::placeholder {
  color: rgba(255, 255, 255, 0.54);
}

.form-message {
  min-height: 18px;
  margin-top: 10px;
  font-size: 12px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 34px 0 44px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.footer .brand {
  color: var(--ink);
}

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

  .hero-device {
    justify-self: start;
  }

  .role-grid,
  .feature-grid,
  .timeline,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta {
    gap: 20px;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 28px, 1120px);
  }

  .nav {
    height: 68px;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 14px;
    right: 14px;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 8px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    padding: 14px;
    border-radius: 12px;
  }

  .nav-links a:hover {
    background: var(--paper-soft);
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 0;
    padding: 50px 0 58px;
    gap: 42px;
  }

  .lead {
    font-size: 16px;
  }

  .section,
  .band {
    padding: 68px 0;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 14px;
  }

  .role-grid,
  .feature-grid,
  .timeline,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .form-stack div {
    display: block;
  }

  .form-stack b {
    display: block;
    margin-top: 6px;
    text-align: left;
  }

  .waitlist-form div {
    display: grid;
  }

  .footer {
    display: grid;
  }
}
