:root {
  --ink: #252525;
  --muted: #69665f;
  --cream: #f7f3ec;
  --paper: #fffdf9;
  --gold: #b88745;
  --gold-dark: #956a31;
  --line: rgba(37, 37, 37, .12);
  --shadow: 0 30px 80px rgba(52, 43, 29, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
.section { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.ambient { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; z-index: -1; }
.ambient-one { width: 520px; height: 520px; right: -180px; top: 40px; background: radial-gradient(circle, rgba(184,135,69,.18), transparent 68%); }
.ambient-two { width: 440px; height: 440px; left: -240px; top: 620px; background: radial-gradient(circle, rgba(255,255,255,.9), transparent 70%); }

.site-header {
  width: min(1240px, calc(100% - 40px));
  height: 96px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img { width: 162px; height: 70px; object-fit: cover; object-position: center 73%; }
nav { display: flex; gap: 30px; align-items: center; font-size: .92rem; font-weight: 600; }
nav a:hover { color: var(--gold-dark); }
.nav-cta { padding: 12px 18px; border: 1px solid var(--ink); border-radius: 999px; }

.hero {
  min-height: 700px;
  padding: 80px 0 100px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 80px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-dark);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow span { width: 30px; height: 1px; background: currentColor; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 22px 0 26px;
  max-width: 650px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.5rem, 6vw, 6.25rem);
  line-height: .97;
  letter-spacing: -.07em;
}
h1 em { color: var(--gold); font-style: normal; font-weight: 500; }
.hero-lead { max-width: 590px; color: var(--muted); font-size: 1.15rem; line-height: 1.75; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; }
.button {
  border: none;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 25px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  transition: .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: white; box-shadow: 0 12px 30px rgba(37,37,37,.18); }
.text-link { font-weight: 700; }
.text-link span { color: var(--gold); margin-left: 5px; }
.trust-line { display: flex; align-items: center; gap: 12px; margin-top: 38px; color: var(--muted); font-size: .84rem; }
.trust-line p { margin: 0; }
.avatars { display: flex; }
.avatars i {
  width: 30px; height: 30px; margin-right: -7px;
  border: 2px solid var(--cream); border-radius: 50%;
  display: grid; place-items: center;
  background: #d8c3a4; color: white; font-size: .65rem; font-style: normal; font-weight: 700;
}
.avatars i:nth-child(2) { background: #72706a; }
.avatars i:nth-child(3) { background: var(--gold); }

.dashboard-wrap { position: relative; }
.dashboard-wrap::before {
  content: ""; position: absolute; inset: -26px 30px 28px -24px;
  border: 1px solid rgba(184,135,69,.25); border-radius: 26px; transform: rotate(-2deg);
}
.dashboard {
  position: relative;
  padding: 28px;
  background: rgba(255,253,249,.96);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 22px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.dash-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 24px; }
.dash-top h2 { margin: 4px 0 5px; font-size: 1.55rem; letter-spacing: -.04em; }
.dash-top p { color: var(--muted); margin-bottom: 0; font-size: .9rem; }
.mini-label { color: var(--gold-dark)!important; font-weight: 700; font-size: .68rem!important; letter-spacing: .12em; }
.profile-dot { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--ink); color: white; font-size: .72rem; font-weight: 700; }
.metric-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.metric-row article { padding: 15px; background: var(--cream); border-radius: 12px; }
.metric-row span, .metric-row small { display: block; color: var(--muted); font-size: .68rem; }
.metric-row strong { display: block; margin: 8px 0 5px; font-size: 1.3rem; }
.metric-row article:first-child small { color: #5f7b61; }
.brief-card { margin-top: 12px; padding: 20px; border: 1px solid var(--line); border-radius: 14px; background: white; }
.brief-heading { display: flex; align-items: center; justify-content: space-between; padding-bottom: 13px; border-bottom: 1px solid var(--line); }
.brief-heading h3 { margin: 0; font-size: 1rem; }
.brief-heading span { color: var(--muted); font-size: .72rem; }
.brief-card ul { list-style: none; padding: 0; margin: 0; }
.brief-card li { display: flex; gap: 13px; padding: 13px 0; border-bottom: 1px solid rgba(37,37,37,.07); }
.brief-card li:last-child { border-bottom: 0; padding-bottom: 0; }
.brief-card li b { flex: 0 0 30px; height: 30px; display: grid; place-items: center; border-radius: 8px; background: var(--cream); color: var(--gold-dark); font-size: .68rem; }
.brief-card li strong, .brief-card li span { display: block; }
.brief-card li strong { font-size: .79rem; margin-bottom: 4px; }
.brief-card li span { color: var(--muted); font-size: .69rem; line-height: 1.45; }
.command { margin-top: 12px; display: flex; align-items: center; gap: 10px; padding: 13px 15px; background: var(--ink); color: white; border-radius: 11px; }
.command p { margin: 0; flex: 1; color: #d5d3cf; font-size: .78rem; }
.command kbd { font-size: .62rem; color: #c4c0ba; }

.logo-strip { padding: 30px 40px; background: var(--ink); color: white; text-align: center; }
.logo-strip p { color: #b9b6af; font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.logo-strip div { display: flex; justify-content: center; flex-wrap: wrap; gap: 26px 48px; }
.logo-strip span { font-weight: 700; font-size: .75rem; letter-spacing: .12em; }

.problem-section { padding: 130px 0; }
.section-heading { max-width: 690px; }
.section-heading.centered { margin: 0 auto; text-align: center; }
.section-heading h2, .steps-copy h2, .waitlist-copy h2 {
  margin: 20px 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.3rem, 4vw, 4.3rem);
  letter-spacing: -.06em;
  line-height: 1.06;
}
.section-heading p, .steps-copy p, .waitlist-copy > p { color: var(--muted); font-size: 1.05rem; line-height: 1.75; }
.feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 65px; }
.feature-grid article { padding: 34px; background: var(--paper); border: 1px solid rgba(37,37,37,.08); border-radius: 16px; }
.feature-grid article:nth-child(2) { transform: translateY(-14px); }
.feature-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 11px; background: #efe5d6; color: var(--gold-dark); font-size: 1.2rem; }
.feature-grid h3 { margin: 24px 0 12px; font-size: 1.2rem; }
.feature-grid p { margin: 0; color: var(--muted); line-height: 1.7; font-size: .92rem; }

.steps-section {
  width: 100%;
  padding: 120px max(40px, calc((100vw - 1180px)/2));
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 100px;
  background: var(--ink);
  color: white;
}
.eyebrow.light { color: #d7ad76; }
.steps-copy p { color: #b9b6af; }
.steps article { display: flex; gap: 26px; padding: 29px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.steps article b { color: #d7ad76; font-size: .75rem; letter-spacing: .1em; }
.steps h3 { margin-bottom: 8px; }
.steps p { margin: 0; color: #aaa7a1; line-height: 1.65; font-size: .9rem; }

.industries-section { padding: 130px 0; display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.industry-pills { display: flex; flex-wrap: wrap; gap: 12px; }
.industry-pills span { padding: 15px 20px; border: 1px solid rgba(37,37,37,.15); border-radius: 999px; background: rgba(255,255,255,.35); font-weight: 600; font-size: .86rem; }

.waitlist-section { padding-bottom: 120px; }
.waitlist-card {
  padding: 70px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: center;
  background: #2a2927;
  color: white;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}
.waitlist-card::after { content: ""; position: absolute; right: -140px; top: -180px; width: 400px; height: 400px; border-radius: 50%; background: rgba(184,135,69,.16); }
.waitlist-copy { position: relative; z-index: 1; }
.waitlist-copy > p { color: #c7c3bc; }
.waitlist-copy ul { padding: 0; list-style: none; margin-top: 28px; }
.waitlist-copy li { padding: 8px 0; color: #e1ded8; }
.waitlist-copy li::before { content: "✓"; color: #d7ad76; margin-right: 12px; }
.waitlist-form { position: relative; z-index: 1; padding: 30px; background: white; color: var(--ink); border-radius: 16px; }
.waitlist-form label { display: block; margin-bottom: 16px; font-size: .76rem; font-weight: 700; }
.waitlist-form input, .waitlist-form select, .waitlist-form textarea {
  width: 100%;
  margin-top: 7px;
  padding: 13px 14px;
  color: var(--ink);
  background: #faf8f4;
  border: 1px solid #ded9d0;
  border-radius: 8px;
  outline: none;
}
.waitlist-form input:focus, .waitlist-form select:focus, .waitlist-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184,135,69,.12); }
.waitlist-form textarea { resize: vertical; }
.button-gold { width: 100%; color: white; background: var(--gold); }
.waitlist-form small { display: block; margin-top: 13px; color: var(--muted); text-align: center; font-size: .68rem; line-height: 1.5; }
.hidden { display: none; }

footer { padding: 42px 40px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: .75rem; }
footer p { margin: 0; }
.footer-brand { color: var(--ink); font-weight: 700; letter-spacing: .18em; }
.footer-brand span { color: var(--gold); }

.thank-you { min-height: 100vh; display: grid; place-items: center; padding: 30px; }
.thank-you-card { width: min(660px, 100%); padding: 60px; text-align: center; background: var(--paper); border-radius: 22px; box-shadow: var(--shadow); }
.thank-you-card img { width: 200px; height: 100px; object-fit: cover; object-position: center 73%; margin: 0 auto 15px; }
.thank-you-card h1 { font-size: clamp(2.7rem, 6vw, 4.8rem); margin: 15px auto 20px; }
.thank-you-card p { color: var(--muted); line-height: 1.7; }
.thank-you-card .button { margin-top: 18px; }

@media (max-width: 900px) {
  nav > a:not(.nav-cta) { display: none; }
  .hero, .steps-section, .industries-section, .waitlist-card { grid-template-columns: 1fr; }
  .hero { gap: 65px; padding-top: 55px; }
  .steps-section { gap: 45px; }
  .industries-section { gap: 40px; }
  .waitlist-card { gap: 40px; padding: 50px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-grid article:nth-child(2) { transform: none; }
}
@media (max-width: 620px) {
  .site-header { height: 78px; }
  .brand img { width: 130px; height: 58px; }
  .nav-cta { padding: 10px 14px; font-size: .78rem; }
  .section { width: min(100% - 28px, 1180px); }
  .hero { padding: 40px 0 75px; }
  h1 { font-size: 3.45rem; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .dashboard { padding: 18px; }
  .metric-row { grid-template-columns: 1fr; }
  .problem-section, .industries-section { padding: 90px 0; }
  .steps-section { padding: 90px 24px; }
  .waitlist-card { padding: 35px 20px; border-radius: 16px; }
  .waitlist-form { padding: 22px 16px; }
  footer { flex-direction: column; text-align: center; }
}
