*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #f7f1e8;
  --surface: #ffffff;
  --surface-soft: #f1e4d6;
  --surface-blue: #e9f1f1;
  --ink: #211914;
  --muted: #6f6256;
  --soft: #95887a;
  --line: #e2d2c2;
  --blue: #1f6f8b;
  --blue-dark: #14536b;
  --green: #6f8f72;
  --green-dark: #506c55;
  --mint: #e8efe3;
  --redstone: #b85c38;
  --redstone-dark: #88452d;
  --sand: #f3dfc7;
  --navy: #2d2520;
  --shadow: 0 22px 60px rgba(136, 69, 45, 0.12);
  --shadow-soft: 0 12px 36px rgba(65, 45, 31, 0.09);
  --radius: 8px;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "DM Mono", "SFMono-Regular", Consolas, monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--redstone-dark); }

nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 40px;
  background: rgba(247, 241, 232, 0.90);
  border-bottom: 1px solid rgba(226, 210, 194, 0.86);
  backdrop-filter: blur(16px);
}

.nav-logo,
.footer-logo,
.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(135deg, var(--redstone), var(--blue));
  box-shadow: 0 12px 24px rgba(136, 69, 45, 0.20);
  font-weight: 900;
}

.nav-logo span:last-child,
.footer-logo span:last-child {
  font-size: 19px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

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

.nav-cta,
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s, background 0.18s;
}

.nav-cta,
.btn-primary {
  color: #ffffff !important;
  background: var(--redstone);
  border: 0;
  padding: 12px 18px;
  box-shadow: 0 12px 24px rgba(184, 92, 56, 0.20);
}

.btn-primary {
  appearance: none;
  padding: 14px 22px;
}

.btn-secondary {
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 13px 20px;
}

.nav-cta:hover,
.btn-primary:hover {
  background: var(--redstone-dark);
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(184, 92, 56, 0.26);
}

.btn-secondary:hover {
  color: var(--ink);
  border-color: #c9b49f;
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.nav-cta:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible {
  outline: 3px solid rgba(184, 92, 56, 0.24);
  outline-offset: 3px;
}

main > section {
  padding: 92px 24px;
  scroll-margin-top: 84px;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.hero {
  position: relative;
  padding: 88px 24px 78px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(243, 223, 199, 0.76), rgba(232, 239, 227, 0.62) 52%, rgba(255, 250, 243, 0.94)),
    var(--bg);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  align-items: center;
  gap: 56px;
}

.eyebrow,
.section-label,
.pricing-plan,
.legal-eyebrow,
.contact-eyebrow {
  font-family: var(--mono);
  color: var(--green-dark);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
}

.hero h1 {
  margin-top: 20px;
  max-width: 680px;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero-sub {
  margin-top: 24px;
  max-width: 620px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

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

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.proof-pill {
  border: 1px solid rgba(184, 92, 56, 0.18);
  background: rgba(255, 250, 243, 0.74);
  color: var(--redstone-dark);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 13px;
  font-weight: 750;
}

.product-visual {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 250, 243, 0.80);
  border: 1px solid rgba(226, 210, 194, 0.95);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.portal-window {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}

.window-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: #fbf5ec;
  border-bottom: 1px solid var(--line);
}

.url-pill {
  min-width: 0;
  color: var(--muted);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 11px;
  font-family: var(--mono);
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(111, 143, 114, 0.16);
  flex: 0 0 auto;
}

.window-body {
  padding: 18px;
}

.portal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.portal-title strong { display: block; font-size: 17px; }
.portal-title span { color: var(--soft); font-size: 13px; }

.paid-pill {
  color: var(--redstone-dark);
  background: #f7ded1;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 800;
}

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

.board-column {
  min-height: 128px;
  background: #f9f1e7;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px;
}

.board-column h3 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--soft);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.mini-card {
  background: #ffffff;
  border: 1px solid #eadccb;
  border-radius: 8px;
  padding: 9px;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.35;
  box-shadow: 0 5px 12px rgba(16, 32, 47, 0.05);
}

.mini-card + .mini-card { margin-top: 8px; }

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

.metric-tile {
  padding: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.metric-tile strong {
  display: block;
  font-size: 20px;
  line-height: 1;
  color: var(--redstone);
}

.metric-tile span {
  display: block;
  margin-top: 6px;
  color: var(--soft);
  font-size: 12px;
}

.section-head {
  max-width: 720px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-title,
.legal-wrap h1,
.contact-wrap h1 {
  margin-top: 14px;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.section-sub,
.legal-meta,
.contact-sub {
  margin-top: 16px;
  color: var(--muted);
  font-size: 18px;
  max-width: 660px;
}

.problem {
  background: #fff8ee;
}

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

.problem-card,
.feature-card,
.step,
.pricing-card,
.faq-item,
.contact-card,
.success-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.problem-card,
.feature-card,
.step {
  padding: 26px;
}

.problem-card {
  background: linear-gradient(180deg, #ffffff, #fbf4eb);
}

.card-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--redstone-dark);
  background: #f7ded1;
  border-radius: 999px;
  padding: 5px 9px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
}

.problem-card h3,
.feature-card h3,
.step h3 {
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.problem-card p,
.feature-card p,
.step p {
  margin-top: 10px;
  color: var(--muted);
}

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

.step-num {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--navy);
  color: #ffffff;
  font-family: var(--mono);
  font-size: 12px;
}

.features {
  background: #fff8ee;
}

.feature-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border-radius: 10px;
  color: var(--redstone-dark);
  background: #f7ded1;
  font-weight: 900;
}

.feature-card:nth-child(2n) .feature-icon {
  color: var(--green-dark);
  background: var(--mint);
}

.pricing {
  background: linear-gradient(180deg, #f7f1e8, #fff8ee);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 860px;
  margin: 0 auto;
}

.pricing-card {
  position: relative;
  padding: 32px;
}

.pricing-card.featured {
  border-color: rgba(184, 92, 56, 0.38);
  box-shadow: 0 24px 70px rgba(184, 92, 56, 0.14);
}

.pricing-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--redstone-dark);
  background: #f7ded1;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 850;
}

.pricing-price {
  margin-top: 18px;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 850;
}

.pricing-price sup {
  font-size: 22px;
  vertical-align: super;
}

.pricing-per {
  margin-top: 8px;
  color: var(--soft);
}

.pricing-features {
  list-style: none;
  margin: 28px 0;
}

.pricing-features li {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  color: var(--muted);
  border-bottom: 1px solid #edf2f6;
}

.pricing-features li:last-child { border-bottom: none; }

.check {
  display: inline-flex;
  width: 18px;
  flex: 0 0 18px;
  justify-content: center;
  color: var(--green-dark);
  font-weight: 900;
}
.muted-feature { color: var(--soft) !important; }

.faq {
  background: var(--surface-soft);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.faq-item {
  padding: 0;
  overflow: hidden;
  box-shadow: none;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  font-size: 18px;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--redstone); font-family: var(--mono); }
.faq-item[open] summary::after { content: "-"; }

.faq-item p {
  padding: 0 24px 24px;
  color: var(--muted);
}

.contact-band {
  background: #fff8ee;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: 44px;
  align-items: start;
}

.contact-list {
  list-style: none;
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.contact-list li {
  color: var(--muted);
  padding-left: 22px;
  position: relative;
}

.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--redstone);
}

.contact-card {
  padding: 28px;
}

.contact-card h2 {
  font-size: 26px;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.contact-card > p {
  color: var(--muted);
  margin-bottom: 22px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf3;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--redstone);
  box-shadow: 0 0 0 4px rgba(184, 92, 56, 0.12);
}

.form-group textarea { min-height: 150px; }

.hp { display: none; }

.form-errors {
  border: 1px solid rgba(220, 38, 38, 0.25);
  background: #fff5f5;
  color: #991b1b;
  border-radius: var(--radius);
  padding: 14px;
  margin-bottom: 20px;
}

.success-card {
  text-align: center;
  padding: 38px;
}

.success-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--mint);
  font-weight: 900;
}

.success-card h2 {
  font-size: 30px;
  letter-spacing: -0.02em;
}

.success-card p {
  color: var(--muted);
  margin: 10px 0 24px;
}

.legal-wrap,
.contact-wrap,
.pricing-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 72px 24px 110px;
}

.legal-meta {
  padding-bottom: 28px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.legal-wrap h2 {
  margin: 34px 0 10px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.legal-wrap p,
.legal-wrap li {
  color: var(--muted);
  margin-bottom: 12px;
}

.legal-wrap ul {
  padding-left: 22px;
  margin: 12px 0 18px;
}

.legal-wrap a,
.contact-sub a {
  color: var(--redstone-dark);
  font-weight: 750;
}

.pricing-redirect {
  text-align: center;
}

footer {
  border-top: 1px solid var(--line);
  padding: 36px 24px;
  background: #ffffff;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a,
.footer-copy {
  color: var(--soft);
  font-size: 14px;
}

.footer-copy { width: 100%; }

@media (max-width: 900px) {
  nav { padding: 14px 20px; }
  .nav-links { gap: 14px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .product-visual { order: -1; }
  .problem-grid,
  .feature-grid,
  .steps,
  .pricing-cards,
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  main > section { padding: 68px 18px; }
  .hero { padding: 42px 18px 62px; }
  .hero-sub,
  .section-sub,
  .contact-sub { font-size: 17px; }
  .board-mini { grid-template-columns: 1fr; }
  .side-metrics { grid-template-columns: 1fr; }
  .pricing-card,
  .contact-card { padding: 24px; }
  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }
  .btn-primary,
  .btn-secondary,
  .nav-cta { width: 100%; }
}
