:root {
  color-scheme: dark;
  --bg: #070604;
  --bg-soft: #0d0a07;
  --surface: rgba(21, 17, 11, 0.72);
  --surface-strong: rgba(31, 24, 14, 0.86);
  --line: rgba(242, 210, 151, 0.16);
  --line-strong: rgba(242, 210, 151, 0.34);
  --text: #fff7e8;
  --muted: #c5b89f;
  --muted-2: #8e826e;
  --accent: #d99a25;
  --accent-bright: #f2c36b;
  --ivory: #f0ddbd;
  --black: #060504;
  --shadow: rgba(0, 0, 0, 0.48);
  font-family: "Manrope", 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;
  background:
    radial-gradient(circle at 76% 8%, rgba(217, 154, 37, 0.18), transparent 28rem),
    linear-gradient(180deg, #050403 0%, var(--bg) 42%, #090705 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 40;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 72%, transparent);
}

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

.topbar {
  position: fixed;
  z-index: 30;
  top: 16px;
  left: clamp(14px, 4vw, 56px);
  right: clamp(14px, 4vw, 56px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 64px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(242, 210, 151, 0.18);
  border-radius: 8px;
  background: rgba(8, 6, 4, 0.72);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 247, 232, 0.28);
  border-radius: 8px;
  background: linear-gradient(145deg, var(--accent-bright), #9b6111);
  color: #120c04;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 16px 34px rgba(217, 154, 37, 0.24);
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 42px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.nav a,
.footer a,
.inline-link {
  transition: color 180ms ease, border-color 180ms ease;
}

.nav a:hover,
.footer a:hover,
.inline-link:hover {
  color: var(--ivory);
}

.top-action,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid rgba(242, 210, 151, 0.2);
  border-radius: 8px;
  padding: 10px 16px;
  color: var(--ivory);
  background: rgba(255, 247, 232, 0.06);
  font-weight: 800;
}

.hero {
  position: relative;
  display: grid;
  min-height: 92vh;
  padding: 126px clamp(18px, 5vw, 72px) 54px;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  filter: saturate(1.05) contrast(1.04);
}

.hero-overlay {
  z-index: -1;
  background:
    radial-gradient(circle at 28% 54%, rgba(217, 154, 37, 0.12), transparent 26rem),
    linear-gradient(90deg, rgba(7, 6, 4, 0.98) 0%, rgba(7, 6, 4, 0.86) 35%, rgba(7, 6, 4, 0.28) 74%),
    linear-gradient(180deg, rgba(7, 6, 4, 0.06) 55%, var(--bg) 100%);
}

.hero-content {
  align-self: center;
  width: min(820px, 100%);
  margin-top: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--accent-bright);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent-bright), transparent);
}

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

h1,
h2 {
  font-family: "Unbounded", "Manrope", sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 22px;
  font-size: clamp(48px, 8vw, 118px);
  font-weight: 800;
  line-height: 0.92;
  text-wrap: balance;
}

h2 {
  max-width: 980px;
  margin-bottom: 0;
  font-size: clamp(30px, 4.4vw, 62px);
  font-weight: 700;
  line-height: 1.04;
  text-wrap: balance;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.18;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 0;
  color: #e7dcc8;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 500;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 14px;
  margin-top: 24px;
}

.cta-stack {
  display: inline-grid;
  gap: 9px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 54px;
  border: 1px solid rgba(255, 247, 232, 0.22);
  border-radius: 8px;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent) 58%, #8e540b);
  color: #110b03;
  font-weight: 900;
  box-shadow: 0 20px 52px rgba(217, 154, 37, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.primary-button svg {
  width: 22px;
  height: 22px;
}

.primary-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 26px 62px rgba(217, 154, 37, 0.38);
}

.trial-note {
  justify-self: center;
  color: var(--accent-bright);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.secondary-button:hover,
.top-action:hover {
  border-color: var(--line-strong);
  background: rgba(255, 247, 232, 0.1);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}

.trust-row span {
  border: 1px solid rgba(242, 210, 151, 0.18);
  border-radius: 8px;
  padding: 10px 13px;
  background: rgba(10, 8, 5, 0.64);
  color: var(--ivory);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.section {
  position: relative;
  padding: clamp(70px, 9vw, 124px) clamp(18px, 5vw, 72px);
}

.section-heading {
  max-width: 960px;
  margin-bottom: 34px;
}

.intro-section {
  background: linear-gradient(180deg, var(--bg) 0%, #0d0a06 100%);
}

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

.feature-card,
.steps,
.use-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 247, 232, 0.075), rgba(255, 247, 232, 0.028)),
    var(--surface);
  box-shadow: 0 24px 80px var(--shadow);
  backdrop-filter: blur(14px);
}

.feature-card {
  min-height: 310px;
  padding: clamp(22px, 3vw, 34px);
}

.feature-card-large {
  background:
    linear-gradient(135deg, rgba(217, 154, 37, 0.2), rgba(255, 247, 232, 0.04) 54%),
    var(--surface-strong);
}

.feature-number {
  display: inline-flex;
  margin-bottom: 72px;
  color: var(--accent-bright);
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 800;
}

.feature-card p,
.use-grid p,
.connect-copy p,
.steps p {
  color: var(--muted);
  line-height: 1.68;
}

.connect-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 0.74fr);
  align-items: center;
  gap: clamp(30px, 6vw, 88px);
  background:
    radial-gradient(circle at 18% 34%, rgba(217, 154, 37, 0.16), transparent 24rem),
    linear-gradient(180deg, #0d0a06 0%, var(--bg) 100%);
}

.connect-copy {
  max-width: 680px;
}

.connect-copy p {
  margin-top: 18px;
  font-size: 18px;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  border-bottom: 1px solid rgba(240, 221, 189, 0.42);
  color: var(--ivory);
  font-weight: 900;
}

.steps {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 8px;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 16px;
  padding: 20px;
  border-radius: 8px;
}

.steps li + li {
  border-top: 1px solid rgba(242, 210, 151, 0.12);
}

.steps span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(242, 210, 151, 0.18);
  border-radius: 8px;
  color: var(--accent-bright);
  background: rgba(217, 154, 37, 0.08);
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.steps strong {
  align-self: end;
  font-size: 18px;
}

.steps p {
  margin: 6px 0 0;
}

.use-section {
  background: linear-gradient(180deg, var(--bg) 0%, #050403 100%);
}

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

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

.use-grid h3 {
  font-family: "Unbounded", "Manrope", sans-serif;
  font-size: 18px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid rgba(242, 210, 151, 0.14);
  color: var(--muted-2);
  background: #050403;
}

@media (max-width: 940px) {
  .topbar {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 780px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 6, 4, 0.9) 0%, rgba(7, 6, 4, 0.78) 54%, var(--bg) 100%),
      linear-gradient(90deg, rgba(7, 6, 4, 0.94), rgba(7, 6, 4, 0.32));
  }

  .feature-grid,
  .connect-section,
  .use-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: 0;
  }

  .feature-number {
    margin-bottom: 38px;
  }
}

@media (max-width: 560px) {
  .topbar {
    top: 10px;
    left: 10px;
    right: 10px;
    padding: 9px;
  }

  .brand span:last-child {
    max-width: 122px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .top-action {
    padding: 9px 11px;
    font-size: 13px;
  }

  .hero {
    min-height: 740px;
    padding: 104px 16px 38px;
  }

  .hero-content {
    margin-top: 18px;
  }

  h1 {
    font-size: clamp(42px, 13vw, 62px);
  }

  .hero-actions,
  .trust-row {
    display: grid;
  }

  .primary-button,
  .secondary-button,
  .cta-stack,
  .trust-row span {
    width: 100%;
  }

  .steps li {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .steps span {
    grid-row: auto;
  }

  .footer {
    flex-direction: column;
  }
}
