:root {
  --ink: #121715;
  --soft-ink: #29312e;
  --muted: #66736f;
  --paper: #f6f3eb;
  --white: #ffffff;
  --line: rgba(18, 23, 21, 0.14);
  --sea: #0f8f8a;
  --deep-sea: #075f63;
  --sun: #f3b33d;
  --coral: #d95f45;
  --leaf: #4c8a54;
  --night: #12191f;
  --shadow: 0 22px 60px rgba(18, 23, 21, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

p,
h1,
h2,
h3,
ul {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

h1,
h2,
h3 {
  line-height: 1.04;
  overflow-wrap: anywhere;
  letter-spacing: 0;
}

p {
  color: var(--muted);
}

.page {
  min-height: 100vh;
  overflow: hidden;
}

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

.topbar {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  padding: 18px 0;
  color: var(--white);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand__mark {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: var(--sun);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 1000;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  font-weight: 750;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--white);
}

.nav__cta {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.hero {
  position: relative;
  min-height: 86svh;
  padding: 112px 0 74px;
  display: flex;
  align-items: center;
  isolation: isolate;
  color: var(--white);
  background: var(--night);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  display: none;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: var(--hero-position, center);
  transform: scale(1.02);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 18, 21, 0.94) 0%, rgba(12, 18, 21, 0.76) 50%, rgba(12, 18, 21, 0.18) 100%),
    linear-gradient(180deg, rgba(12, 18, 21, 0.18) 0%, rgba(12, 18, 21, 0.44) 100%);
}

.hero__content {
  max-width: 780px;
  position: relative;
  z-index: 2;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-position, center);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  background: var(--sun);
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3rem, 7vw, 5.9rem);
  font-weight: 1000;
}

.hero__lead {
  max-width: 660px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.1rem, 2.1vw, 1.38rem);
}

.hero__line {
  max-width: 740px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 18px;
  border: 1px solid transparent;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.btn--primary {
  background: var(--sun);
  color: var(--ink);
}

.btn--secondary {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.btn--dark {
  background: var(--ink);
  color: var(--white);
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.proof-pill {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.09);
  padding: 0 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 750;
}

.belief {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.belief__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  padding: 36px 0;
  align-items: center;
}

.belief__statement {
  color: var(--ink);
  font-size: clamp(1.35rem, 3.1vw, 2.35rem);
  line-height: 1.12;
  font-weight: 1000;
}

.belief__statement span {
  color: var(--sea);
}

.belief__note {
  font-size: 1.02rem;
}

.section {
  padding: 82px 0;
}

.section--tint {
  background: #ece9dd;
}

.section--ink {
  background: var(--night);
  color: var(--white);
}

.section--ink p,
.section--ink .section__intro {
  color: rgba(255, 255, 255, 0.74);
}

.section__header {
  max-width: 760px;
  margin-bottom: 34px;
}

.section__kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section h2 {
  color: inherit;
  font-size: clamp(2rem, 4.8vw, 4rem);
  font-weight: 1000;
}

.section__intro {
  max-width: 690px;
  margin-top: 14px;
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 16px;
}

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

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

.card {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 24px;
  box-shadow: 0 10px 34px rgba(18, 23, 21, 0.06);
}

.card h3 {
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.15rem;
  font-weight: 950;
}

.card p {
  font-size: 0.98rem;
}

.card__label {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: var(--sea);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 1000;
}

.card:nth-child(2n) .card__label {
  background: var(--coral);
}

.card:nth-child(3n) .card__label {
  background: var(--leaf);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: start;
}

.quote-block {
  border-left: 6px solid var(--sun);
  padding: 8px 0 8px 22px;
}

.quote-block strong {
  display: block;
  color: var(--ink);
  font-size: clamp(1.8rem, 4vw, 3.4rem);
  line-height: 1.02;
  font-weight: 1000;
}

.quote-block p {
  margin-top: 14px;
  font-size: 1.05rem;
}

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

.list li {
  display: flex;
  gap: 12px;
  color: var(--soft-ink);
  font-weight: 720;
}

.list li::before {
  content: "";
  width: 9px;
  height: 9px;
  flex: 0 0 9px;
  margin-top: 8px;
  background: var(--sun);
}

.mock {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.mock__bar {
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  padding: 12px 14px;
  background: #f8f6ef;
}

.mock__dot {
  width: 9px;
  height: 9px;
  background: var(--coral);
}

.mock__dot:nth-child(2) {
  background: var(--sun);
}

.mock__dot:nth-child(3) {
  background: var(--sea);
}

.mock__body {
  padding: 24px;
}

.mock__title {
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 1000;
}

.mock__subtitle {
  margin-top: 8px;
  font-size: 0.94rem;
}

.mock__rows {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.mock__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  padding: 12px;
}

.mock__row strong {
  color: var(--ink);
  font-size: 0.94rem;
}

.mock__row span {
  color: var(--muted);
  font-size: 0.85rem;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  background: #e6f4f2;
  color: var(--deep-sea);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.steps {
  display: grid;
  gap: 12px;
  counter-reset: steps;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.055);
  padding: 18px;
}

.step::before {
  counter-increment: steps;
  content: counter(steps);
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--sun);
  color: var(--ink);
  font-weight: 1000;
}

.step h3 {
  margin-bottom: 7px;
  color: var(--white);
  font-size: 1rem;
}

.step p {
  font-size: 0.95rem;
}

.offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: 26px;
  align-items: stretch;
}

.price {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 26px;
  box-shadow: var(--shadow);
}

.price__eyebrow {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price__number {
  margin: 12px 0 8px;
  color: var(--ink);
  font-size: 3rem;
  line-height: 1;
  font-weight: 1000;
}

.price__number small {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 760;
}

.price .btn {
  width: 100%;
  margin-top: 22px;
}

.included {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.included li {
  display: flex;
  gap: 10px;
  color: var(--soft-ink);
  font-weight: 680;
}

.included li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  margin-top: 8px;
  background: var(--sea);
}

.apply {
  border: 1px solid rgba(255, 255, 255, 0.17);
  background:
    linear-gradient(135deg, rgba(15, 143, 138, 0.28), rgba(217, 95, 69, 0.18)),
    var(--night);
  color: var(--white);
  padding: 34px;
}

.apply h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.apply p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.74);
}

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

.field {
  display: grid;
  gap: 7px;
}

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

.field label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.09);
  color: var(--white);
  padding: 11px 12px;
  outline: none;
}

.field textarea {
  min-height: 96px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(255, 255, 255, 0.44);
}

.field select option {
  color: var(--ink);
}

.form-status {
  min-height: 24px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 18px 20px;
}

.faq summary {
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
}

.faq p {
  margin-top: 12px;
}

.footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.footer p,
.footer a {
  color: var(--muted);
  font-size: 0.88rem;
}

.footer a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hub-hero {
  min-height: 100svh;
}

.hub-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.hub-link {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.11);
  padding: 18px;
}

.hub-link strong {
  display: block;
  color: var(--white);
  font-size: 1.04rem;
  font-weight: 950;
}

.hub-link span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .topbar {
    position: absolute;
  }

  .topbar__inner {
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 84svh;
    padding-top: 100px;
  }

  .belief__inner,
  .split,
  .offer,
  .grid--2,
  .grid--3,
  .hub-links {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

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

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1140px);
  }

  .hero {
    min-height: 86svh;
    padding-bottom: 58px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 15vw, 4.3rem);
  }

  .hero__actions,
  .hero__proof {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .proof-pill {
    width: 100%;
  }

  .card,
  .mock__body,
  .apply,
  .price {
    padding: 20px;
  }

  .apply-form {
    grid-template-columns: 1fr;
  }

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

  .tag {
    width: max-content;
  }
}
