:root {
  --ink: #102033;
  --ink-2: #23364d;
  --muted: #607086;
  --line: #dbe4ee;
  --paper: #fffaf2;
  --cream: #f7efe2;
  --white: #ffffff;
  --gold: #d99227;
  --gold-dark: #b87414;
  --green: #214d41;
  --shadow: 0 24px 70px rgba(16, 32, 51, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { max-width: 100%; }
a { color: inherit; }
.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}
.narrow { max-width: 760px; }
.section-pad { padding: 92px 0; }
.section-muted { background: #f0e7d8; }
.section-dark { background: var(--ink); color: var(--white); }
.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 100;
}
.skip-link:focus { top: 12px; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 250, 242, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(16, 32, 51, 0.08);
}
.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 850;
  letter-spacing: -0.03em;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--ink), var(--green));
  color: var(--gold);
  box-shadow: 0 10px 28px rgba(16, 32, 51, 0.2);
}
.brand-text { font-size: 1.12rem; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-nav a {
  text-decoration: none;
  font-weight: 700;
  color: var(--ink-2);
  padding: 10px 13px;
  border-radius: 999px;
}
.site-nav a:hover { background: rgba(16, 32, 51, 0.07); }
.site-nav .nav-cta {
  background: var(--ink);
  color: var(--white);
  padding-inline: 18px;
}
.nav-toggle { display: none; }
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 10%, rgba(217, 146, 39, 0.20), transparent 35%),
    linear-gradient(135deg, #fffaf2 0%, #f6ead9 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.97fr);
  gap: 56px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.eyebrow.light { color: #ffd188; }
h1, h2, h3, p { overflow-wrap: anywhere; }
h1, h2, h3 {
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin: 0;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.8rem); }
h2 { font-size: clamp(2rem, 4vw, 3.65rem); }
h3 { font-size: 1.2rem; }
.hero-lede, .section-lede, .intro-block p, .feature-list p {
  font-size: 1.12rem;
  color: var(--muted);
}
.hero-copy { min-width: 0; }
.hero-lede { max-width: 690px; margin: 24px 0 0; }
.hero-actions, .mock-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 19px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 850;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--gold); color: #12110f; box-shadow: 0 14px 30px rgba(217, 146, 39, 0.25); }
.button-primary:hover { background: #e7a748; }
.button-secondary { background: rgba(16, 32, 51, 0.06); border-color: rgba(16, 32, 51, 0.12); }
.full { width: 100%; }
.trust-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 9px;
  color: var(--ink-2);
  font-weight: 700;
}
.trust-list li { position: relative; padding-left: 26px; }
.trust-list li::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  left: 2px;
  top: 0.68em;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(217, 146, 39, 0.14);
}
.hero-visual { position: relative; min-width: 0; }
.browser-card {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid rgba(16, 32, 51, 0.08);
}
.browser-top {
  height: 44px;
  background: #17283d;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 18px;
}
.browser-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ffcf84;
}
.browser-top span:nth-child(2) { background: #89b7ff; }
.browser-top span:nth-child(3) { background: #6fd29d; }
.mock-hero {
  min-height: 300px;
  padding: 34px;
  display: flex;
  align-items: end;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(16, 32, 51, 0.08), rgba(16, 32, 51, 0.82)),
    linear-gradient(135deg, #4e6478, #1e342d);
}
.mock-hero > div { min-width: 0; }
.mock-hero h2 { font-size: clamp(2rem, 4.2vw, 3.5rem); max-width: 420px; }
.mock-hero p { max-width: 420px; overflow-wrap: break-word; }
.mock-kicker {
  color: #ffd188;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 900;
}
.mock-buttons { margin-top: 18px; }
.mock-buttons span {
  width: 118px;
  height: 34px;
  border-radius: 999px;
  background: #d99227;
}
.mock-buttons span:nth-child(2) { background: rgba(255,255,255,0.24); border: 1px solid rgba(255,255,255,0.28); }
.mock-sections {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 22px;
}
.mock-sections div {
  height: 92px;
  border-radius: 18px;
  background: linear-gradient(180deg, #f5efe6, #e9dcc9);
}
.floating-card {
  position: absolute;
  display: grid;
  gap: 2px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(16, 32, 51, 0.08);
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(16, 32, 51, 0.16);
  padding: 15px 17px;
}
.floating-card span { color: var(--muted); font-size: 0.9rem; }
.floating-card-one { top: 16px; right: -12px; }
.floating-card-two { bottom: 26px; left: -18px; }
.intro-block { text-align: center; margin-bottom: 36px; }
.card-grid {
  display: grid;
  gap: 20px;
}
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.info-card, .price-card, details, .contact-form, .contact-note {
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(16, 32, 51, 0.09);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 50px rgba(16, 32, 51, 0.08);
}
.info-card { padding: 26px; }
.info-card p { color: var(--muted); }
.icon-pill {
  display: inline-flex;
  margin-bottom: 32px;
  padding: 7px 10px;
  border-radius: 999px;
  background: #efe0c9;
  color: var(--gold-dark);
  font-weight: 900;
  font-size: 0.78rem;
}
.split, .pricing-grid, .contact-grid, .feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 56px;
  align-items: start;
}
.steps { display: grid; gap: 16px; }
.step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(16, 32, 51, 0.08);
}
.step > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--gold);
  font-weight: 900;
}
.step p { margin-bottom: 0; color: var(--muted); }
.pricing-grid { align-items: center; }
.section-dark p { color: rgba(255,255,255,0.72); }
.price-card {
  background: #fffaf2;
  color: var(--ink);
  padding: 32px;
}
.price-label { margin: 0; color: var(--muted) !important; font-weight: 800; }
.price {
  margin: 8px 0 14px;
  font-size: clamp(3.5rem, 7vw, 5.4rem);
  line-height: 1;
  letter-spacing: -0.08em;
  color: var(--ink) !important;
  font-weight: 900;
}
.price span { font-size: 0.45em; vertical-align: super; }
.price-card ul { padding-left: 20px; }
.price-card li { margin: 8px 0; }
.small-note { font-size: 0.92rem; color: var(--muted) !important; }
.feature-band { align-items: center; }
.feature-list {
  display: grid;
  gap: 12px;
  border-left: 4px solid var(--gold);
  padding-left: 28px;
}
.faq-list { display: grid; gap: 14px; }
details { padding: 0; overflow: hidden; }
summary {
  cursor: pointer;
  padding: 20px 24px;
  font-weight: 850;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
details p { margin: 0; padding: 0 24px 22px; color: var(--muted); }
.contact-grid { align-items: center; }
.contact-note { margin-top: 26px; padding: 20px; }
.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
}
.hidden { display: none; }
label {
  display: grid;
  gap: 7px;
  color: var(--ink-2);
  font-size: 0.94rem;
  font-weight: 850;
}
input, textarea {
  width: 100%;
  border: 1px solid rgba(16, 32, 51, 0.15);
  border-radius: 14px;
  background: #fffdf8;
  color: var(--ink);
  font: inherit;
  padding: 13px 14px;
}
input:focus, textarea:focus {
  outline: 3px solid rgba(217, 146, 39, 0.28);
  border-color: var(--gold);
}
.form-note { font-size: 0.88rem; color: var(--muted); margin: 0; }
.site-footer {
  background: #101b2a;
  color: rgba(255,255,255,0.72);
  padding: 46px 0 26px;
}
.site-footer a { display: block; text-decoration: none; margin: 6px 0; }
.site-footer a:hover { color: var(--white); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.7fr;
  gap: 32px;
}
.footer-brand { color: var(--white); }
.footer-heading {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 28px;
  padding-top: 18px;
  font-size: 0.9rem;
}
.simple-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 20%, rgba(217, 146, 39, 0.20), transparent 34%),
    var(--paper);
}
.simple-card {
  width: min(680px, 100%);
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}
.simple-card h1 { margin-top: 26px; font-size: clamp(2rem, 5vw, 3.4rem); }
.simple-card p { color: var(--muted); }
.legal-page h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); margin-bottom: 24px; }
.legal-page h2 { font-size: 1.45rem; margin-top: 30px; }
.legal-page p { color: var(--muted); }
@media (max-width: 900px) {
  .section-pad { padding: 70px 0; }
  .hero-grid, .split, .pricing-grid, .contact-grid, .feature-band { grid-template-columns: 1fr; gap: 34px; }
  .card-grid.three { grid-template-columns: 1fr; }
  .hero-visual { width: 100%; }
  .floating-card { position: static; margin-top: 12px; }
  .mock-sections { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .feature-list { border-left: 0; border-top: 4px solid var(--gold); padding-left: 0; padding-top: 22px; }
}
@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--container)); }
  .nav-toggle {
    display: inline-flex;
    width: 44px;
    height: 44px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid rgba(16, 32, 51, 0.14);
    border-radius: 12px;
    background: rgba(255,255,255,0.68);
  }
  .nav-toggle span:not(.sr-only) {
    width: 18px;
    height: 2px;
    background: var(--ink);
    border-radius: 999px;
  }
  .site-nav:not(.always-visible) {
    position: absolute;
    left: 14px;
    right: 14px;
    top: 68px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border: 1px solid rgba(16, 32, 51, 0.1);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 10px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { border-radius: 12px; }
  .site-nav .nav-cta { text-align: center; }
  h1 { font-size: clamp(2.05rem, 11vw, 3rem); }
  .eyebrow { font-size: 0.68rem; letter-spacing: 0.08em; }
  .nav-toggle { flex: 0 0 auto; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .browser-card { border-radius: 22px; }
  .mock-hero { min-height: 260px; padding: 24px; }
  .mock-hero h2 { font-size: clamp(1.75rem, 9vw, 2.45rem); }
  .mock-hero p { font-size: 0.98rem; }
  .mock-buttons span { flex: 1 1 105px; max-width: 122px; }
  .info-card, .price-card, .contact-form { padding: 22px; }
  .step { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .container { width: min(100% - 22px, var(--container)); }
  .section-pad { padding: 58px 0; }
  .brand-text { font-size: 1rem; }
  .mock-hero { min-height: 220px; }
}
