:root {
  --lp-bg: #0e1521;
  --lp-card-bg: #1b2333;
  --lp-card-bg-soft: #202a3d;
  --lp-border: #313e58;
  --lp-gold: #c9974c;
  --lp-gold-soft: #e0b876;
  --lp-cream: #f4f1ea;
  --lp-body: #d7dde6;
  --lp-muted: #93a1b8;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--lp-bg);
  color: var(--lp-body);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 {
  font-family: 'Fraunces', serif;
  color: var(--lp-cream);
  margin: 0;
  line-height: 1.15;
}

em {
  font-style: italic;
  color: var(--lp-gold-soft);
}

a { color: inherit; }

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

/* ---------- Buttons ---------- */
.lp-btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 11px 22px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  border: 1px solid transparent;
  /* Real <button> elements (as opposed to <a> tags styled the same way)
     otherwise keep the browser's own opaque, native button chrome
     underneath - background stays fully transparent unless a modifier
     class below explicitly sets one, and this line is what actually
     lets that transparency show instead of the native default. */
  background: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}
.lp-btn-lg { padding: 15px 32px; font-size: 16px; }
.lp-btn-gold {
  background: var(--lp-gold);
  color: #1c1408;
}
.lp-btn-gold:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(201,151,76,0.35); }
.lp-btn-outline {
  border-color: var(--lp-border);
  color: var(--lp-cream);
}
.lp-btn-outline:hover { border-color: var(--lp-gold); }
.lp-btn-ghost {
  color: var(--lp-body);
  padding: 11px 16px;
}
.lp-btn-ghost:hover { color: var(--lp-cream); }

/* ---------- Nav ---------- */
.lp-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(14,21,33,0.88);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--lp-border);
}
.lp-nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--lp-cream);
  text-decoration: none;
  white-space: nowrap;
}
.lp-nav-links {
  display: flex;
  font-size: 14px;
  font-weight: 500;
}
.lp-nav-links a { text-decoration: none; color: var(--lp-muted); margin-right: 28px; }
.lp-nav-links a:last-child { margin-right: 0; }
.lp-nav-links a:hover { color: var(--lp-cream); }
.lp-nav-actions { display: flex; align-items: center; }
.lp-nav-actions > *:first-child { margin-right: 8px; }

/* ---------- Eyebrow / section titles ---------- */
.lp-eyebrow {
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--lp-gold);
  margin: 0 0 14px;
}
.lp-eyebrow-center { text-align: center; }
.lp-section-title {
  font-size: 34px;
  font-weight: 600;
  max-width: 640px;
  margin-bottom: 56px;
}
.lp-center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- Hero ---------- */
.lp-hero {
  padding: 110px 32px 100px;
  background:
    radial-gradient(ellipse 900px 500px at 15% 0%, rgba(201,151,76,0.10), transparent 60%),
    var(--lp-bg);
}
.lp-hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.lp-hero-copy { flex: 1.05 1 0; min-width: 0; margin-right: 56px; }
.lp-hero-copy h1 {
  font-size: 52px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.lp-hero-sub {
  font-size: 18px;
  line-height: 1.6;
  color: var(--lp-body);
  max-width: 480px;
  margin-bottom: 34px;
}
.lp-hero-ctas { display: flex; flex-wrap: wrap; }
.lp-hero-ctas > * { margin-right: 14px; margin-bottom: 10px; }

.lp-hero-visual {
  position: relative;
  min-height: 420px;
  flex: 0.95 1 0;
  min-width: 0;
}
.lp-hero-card-wrap {
  position: absolute;
  top: 0;
  right: 8%;
  width: 62%;
  transform: rotate(4deg);
  z-index: 2;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.5));
}
.lp-hero-card {
  border-radius: 16px;
  border: 1px solid var(--lp-border);
}
.lp-hero-dash-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  transform: rotate(-3deg);
  z-index: 1;
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.45));
}
.lp-hero-dash {
  border-radius: 10px;
  border: 1px solid var(--lp-border);
}

/* ---------- Feature sections ---------- */
.lp-section { padding: 100px 32px; }
.lp-section-alt { background: var(--lp-card-bg); }
.lp-section-inner { max-width: 1180px; margin: 0 auto; }

.lp-feature-row {
  display: flex;
  align-items: center;
  margin-bottom: 110px;
}
.lp-feature-row .lp-feature-text { flex: 0.85 1 0; min-width: 0; margin-right: 64px; }
.lp-feature-row .lp-feature-shot { flex: 1.15 1 0; min-width: 0; }
.lp-feature-row:last-child { margin-bottom: 0; }
.lp-feature-row-reverse .lp-feature-text { order: 2; flex: 1.15 1 0; margin-right: 0; }
.lp-feature-row-reverse .lp-feature-shot { order: 1; flex: 0.85 1 0; margin-right: 64px; }

.lp-feature-icon { font-size: 34px; display: block; margin-bottom: 18px; }
.lp-feature-text h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 14px;
}
.lp-feature-text p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--lp-body);
  margin: 0;
}
.lp-feature-highlight {
  margin-top: 14px !important;
  color: var(--lp-gold-soft) !important;
  font-style: italic;
  font-family: 'Fraunces', serif;
  font-size: 17px !important;
}

.lp-feature-shot {
  background: var(--lp-card-bg);
  border: 1px solid var(--lp-border);
  border-radius: 14px;
  padding: 10px;
}
.lp-feature-shot img { border-radius: 8px; }
.lp-feature-shot-narrow { max-width: 340px; margin: 0 auto; }

/* ---------- How it works ---------- */
.lp-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.lp-step { flex: 1 1 200px; text-align: center; margin-right: 12px; margin-bottom: 12px; }
.lp-step-num {
  display: block;
  font-family: 'IBM Plex Mono', monospace;
  font-size: 13px;
  color: var(--lp-gold);
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.lp-step h3 { font-size: 19px; margin-bottom: 8px; }
.lp-step p { font-size: 14px; color: var(--lp-muted); line-height: 1.6; margin: 0; }
.lp-step-arrow {
  color: var(--lp-border);
  font-size: 22px;
  padding-top: 30px;
  flex: 0 0 auto;
}

/* ---------- Workflow (date to celebration) ---------- */
.lp-workflow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}
.lp-workflow-step {
  display: flex;
  align-items: center;
  background: var(--lp-card-bg);
  border: 1px solid var(--lp-border);
  border-radius: 999px;
  padding: 10px 18px 10px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--lp-cream);
  white-space: nowrap;
}
.lp-workflow-icon { font-size: 18px; margin-right: 10px; }
.lp-workflow-connector {
  width: 28px;
  height: 1px;
  background: var(--lp-border);
  flex: 0 0 auto;
}
.lp-workflow-close {
  text-align: center;
  font-family: 'Fraunces', serif;
  font-size: 24px;
  color: var(--lp-cream);
  margin-top: 64px;
  line-height: 1.5;
}
.lp-workflow-close em { font-style: italic; }

/* ---------- Final CTA ---------- */
.lp-final-cta {
  padding: 110px 32px;
  text-align: center;
  background:
    radial-gradient(ellipse 800px 400px at 50% 0%, rgba(201,151,76,0.14), transparent 60%),
    var(--lp-card-bg);
  border-top: 1px solid var(--lp-border);
  border-bottom: 1px solid var(--lp-border);
}
.lp-final-cta-inner { max-width: 640px; margin: 0 auto; }
.lp-final-cta h2 { font-size: 40px; margin-bottom: 18px; }
.lp-final-cta p { font-size: 17px; color: var(--lp-body); margin-bottom: 34px; }
.lp-final-cta-note { font-size: 14px; color: var(--lp-muted); margin-top: 22px; margin-bottom: 0; }
.lp-final-cta-note a { color: var(--lp-gold); text-decoration: underline; }

/* ---------- Footer ---------- */
.lp-footer { padding: 36px 32px; }
.lp-footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  font-family: 'Fraunces', serif;
  font-size: 15px;
  color: var(--lp-muted);
}
.lp-footer-inner > *:first-child { margin-right: 10px; margin-bottom: 4px; }
.lp-footer-tagline { font-family: 'Inter', sans-serif; font-size: 13px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .lp-hero-inner { flex-direction: column; }
  .lp-hero-copy { margin-right: 0; }
  .lp-hero-visual { min-height: 320px; margin-top: 20px; width: 100%; }
  .lp-hero-copy h1 { font-size: 38px; }
  .lp-feature-row, .lp-feature-row-reverse { flex-direction: column; margin-bottom: 70px; }
  .lp-feature-row .lp-feature-text, .lp-feature-row-reverse .lp-feature-text { margin-right: 0; margin-bottom: 32px; }
  .lp-feature-row .lp-feature-shot, .lp-feature-row-reverse .lp-feature-shot { margin-right: 0; }
  .lp-feature-row-reverse .lp-feature-text, .lp-feature-row-reverse .lp-feature-shot { order: initial; }
  .lp-nav-links { display: none; }
  .lp-section-title { font-size: 27px; }
  .lp-steps { flex-direction: column; align-items: stretch; }
  .lp-step-arrow { display: none; }
  .lp-final-cta h2 { font-size: 30px; }
}

@media (max-width: 480px) {
  .lp-nav-inner { padding: 14px 18px; flex-wrap: wrap; }
  .lp-logo { font-size: 17px; margin-bottom: 8px; }
  .lp-nav-actions .lp-btn-gold { padding: 9px 16px; font-size: 14px; }
  .lp-hero { padding: 48px 18px 70px; }
  .lp-section { padding: 64px 18px; }
  .lp-final-cta { padding: 70px 18px; }
  .lp-hero-copy h1 { font-size: 32px; }
  .lp-hero-ctas { flex-direction: column; align-items: stretch; }
  .lp-hero-ctas .lp-btn { text-align: center; }
  .lp-btn-ghost { display: none; }
}
