:root {
  --dark: #2c2416;
  --ink: #1a1208;
  --gold: #c8973a;
  --parchment: #faf7f2;
  --muted: #9a8c78;
  --border: #d4c9b0;
  --dark-body: #c8b898;
  --light-body: #3a3028;
  --light-secondary: #5a4e3c;
  --light-hint: #6a5e4a;
}

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

html {
  scrollbar-gutter: stable;
}

body {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--light-body);
  background: var(--parchment);
}

/* Buttons */
.land-btn-primary,
.land-btn-secondary,
.land-btn-ghost,
.land-plan-cta {
  display: inline-block;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.land-btn-primary,
.land-plan-cta {
  background: var(--gold);
  color: var(--dark);
  border: 1px solid var(--gold);
  padding: 12px 24px;
}
.land-plan-cta {
  display: block;
  text-align: center;
  width: 100%;
}

.land-btn-primary:hover,
.land-plan-cta:hover {
  background: #d9a840;
  border-color: #d9a840;
}

.land-btn-secondary {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 12px 24px;
}

.land-btn-secondary:hover {
  background: var(--gold);
  color: var(--dark);
}

.land-btn-ghost {
  background: transparent;
  border: 1px solid #4a4030;
  color: var(--muted);
  padding: 12px 24px;
}

.land-btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* Nav */
.land-nav {
  background: var(--dark);
  border-bottom: 3px solid var(--gold);
  padding: 14px 48px;
}

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

.land-logo,
.app-logo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.land-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--parchment);
  white-space: nowrap;
}

.land-logo span {
  color: var(--gold);
}
.logo-mark {
  width: 22px;
  height: 16px;
  flex-shrink: 0;
  position: relative;
  top: -1px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.2));
}

.land-nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.land-nav-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

.land-nav-links a:hover,
.land-nav-links a.is-active {
  color: var(--gold);
}

.land-nav-signin {
  color: var(--dark-body) !important;
}

.land-nav-cta {
  background: var(--gold);
  color: var(--dark) !important;
  border: 1px solid var(--gold);
  padding: 8px 18px;
}

.land-nav-cta:hover {
  background: #d9a840;
  border-color: #d9a840;
}

.land-nav-username {
  font-size: 11px;
  font-weight: 400;
  color: #c8b898;
  letter-spacing: 0.04em;
}

.land-nav-pro-badge {
  background: var(--gold);
  color: var(--dark);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 2px 6px;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

/* Shared section labels */
.land-eyebrow,
.land-section-eyebrow,
.land-hero-eyebrow,
.land-section-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.land-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.15;
  margin-top: 8px;
}

/* Hero */
.land-hero {
  background: var(--dark);
  border-bottom: 1px solid #3a3020;
  padding: 80px 48px 56px;
  overflow: hidden;
}

.land-hero-inner,
.land-steps-inner,
.land-features-inner,
.land-pricing-inner,
.land-footer-inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.land-hero-inner {
  display: flex;
  align-items: center;
  gap: 64px;
}

.land-hero-text {
  flex: 1;
  min-width: 0;
}

.land-hero-eyebrow {
  margin-bottom: 16px;
}

.land-hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--parchment);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.land-hero-sub {
  color: #c8b898;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 430px;
  margin-bottom: 28px;
}

.land-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.land-btn-primary {
  font-weight: 800;
}

.land-hero-nudge {
  font-size: 12px;
  color: var(--muted);
}

.land-hero-img-wrap {
  flex-shrink: 0;
  width: 480px;
}

.land-hero-photo {
  width: 100%;
  display: block;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 8px 24px rgba(0, 0, 0, 0.4);
}

.land-hero-card-fallback {
  width: 480px;
  height: 320px;
  background: var(--parchment);
  display: flex;
  flex-direction: column;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 8px 24px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}

/* Example card */
.lec-top-band {
  background: var(--dark);
  height: 5px;
  flex-shrink: 0;
}

.lec-accent {
  background: var(--gold);
  height: 3px;
  flex-shrink: 0;
}

.lec-body {
  display: flex;
  flex: 1;
  overflow: hidden;
}

.lec-left {
  width: 200px;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  padding: 10px 10px 8px 12px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow: hidden;
}

.lec-eyebrow {
  font-size: 5.5pt;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.lec-title {
  font-family: 'Playfair Display', serif;
  font-size: 12.5pt;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}

.lec-subtitle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 7pt;
  color: var(--muted);
}

.lec-author {
  font-size: 6.5pt;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  color: var(--muted);
  margin-bottom: 2px;
}

.lec-section {
  font-size: 6pt;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3px;
}

.lec-table {
  width: 100%;
  border-collapse: collapse;
}

.lec-th {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 5.5pt;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--parchment);
  background: var(--dark);
  padding: 2px 4px;
}

.lec-table td {
  font-size: 7pt;
  color: var(--light-secondary);
  padding: 1.5px 4px;
  border-bottom: 1px solid #e4ddd0;
}

.lec-table td:last-child {
  text-align: right;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--ink);
}

.lec-even {
  background: #f4efe6;
}

.lec-footer {
  margin-top: auto;
  font-size: 6.5pt;
  font-weight: 300;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 4px;
  flex-shrink: 0;
}

.lec-right {
  flex: 1;
  padding: 10px 12px 8px 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.lec-step {
  display: flex;
  gap: 5px;
  align-items: baseline;
  margin-bottom: 4px;
}

.lec-num {
  font-family: 'Playfair Display', serif;
  font-size: 7.5pt;
  font-weight: 700;
  color: var(--gold);
  min-width: 12px;
  flex-shrink: 0;
}

.lec-verb {
  font-weight: 600;
  color: var(--ink);
  font-size: 6.5pt;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-right: 3px;
}

.lec-step-text {
  font-size: 7pt;
  color: var(--light-body);
  font-weight: 300;
  line-height: 1.3;
}

.lec-card-footer {
  margin-top: auto;
  border-top: 1px solid var(--border);
  padding-top: 4px;
  flex-shrink: 0;
}

.lec-footer-note {
  font-size: 6.5pt;
  font-weight: 300;
  color: var(--muted);
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

/* How it works */
.land-steps {
  background: var(--dark);
  padding: 80px 48px;
  border-top: 1px solid #3a3020;
}

.land-steps h2 {
  color: var(--parchment);
}

.land-steps .land-eyebrow {
  color: var(--gold);
}

.land-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 40px;
}

.land-step {
  border-top: 2px solid var(--gold);
  padding-top: 16px;
}

.land-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
}

.land-step-title {
  color: var(--parchment);
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.land-step-desc,
.land-step-text {
  color: #c8b898;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
}

/* Features */
.land-features {
  padding: 80px 48px;
  background: #f5f0e8;
}

.land-features h2 {
  color: var(--ink);
}

.land-features .land-eyebrow {
  color: var(--gold);
}

.land-feature-grid,
.land-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.land-feature-card,
.land-feat {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 28px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.land-feature-card:hover,
.land-feat:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.land-feature-icon,
.land-feat-icon {
  font-size: 20px;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}

.land-feature-title,
.land-feat-title {
  color: var(--ink);
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.land-feature-desc,
.land-feat-text {
  color: var(--light-secondary);
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
}

/* Pricing */
.land-pricing {
  background: var(--dark);
  padding: 80px 48px;
  border-top: 1px solid #3a3020;
}

.land-pricing h2 {
  color: var(--parchment);
}

.land-pricing .land-eyebrow {
  color: var(--gold);
}

.land-plans {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.land-plan {
  background: #1e1a12;
  border: 1px solid #3a3020;
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.land-plan-name {
  color: var(--parchment);
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
}

.land-plan-price {
  color: var(--parchment);
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.1;
  margin-top: 8px;
}

.land-plan-price span {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
}

.land-plan-tagline,
.land-plan-desc {
  color: var(--muted);
  font-size: 12px;
  margin-top: 8px;
  margin-bottom: 20px;
}

.land-plan-features {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-bottom: 24px;
  flex: 1;
}

.land-plan-feature,
.land-plan-features li {
  color: #c8b898;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.land-plan-check {
  color: var(--gold);
  font-weight: 700;
  line-height: 1.4;
}

.land-plan-annual {
  color: var(--muted);
  font-size: 11px;
  margin-top: 8px;
}

.land-plan-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 14px;
  white-space: nowrap;
}

.land-plan-pro {
  background: var(--parchment);
  border: 2px solid var(--gold);
}

.land-plan-pro .land-plan-name,
.land-plan-pro .land-plan-price {
  color: var(--ink);
}

.land-plan-pro .land-plan-tagline,
.land-plan-pro .land-plan-desc,
.land-plan-pro .land-plan-annual {
  color: var(--light-hint);
}

.land-plan-pro .land-plan-feature,
.land-plan-pro .land-plan-features li {
  color: var(--light-body);
}

.land-plan-pro .land-plan-cta {
  background: var(--dark);
  color: var(--parchment);
  border-color: var(--dark);
  font-weight: 800;
}

.land-plan-pro .land-plan-cta:hover {
  background: var(--ink);
  border-color: var(--ink);
}

/* Footer */
.land-footer {
  background: var(--ink);
  border-top: 1px solid #3a3020;
  padding: 32px 48px;
}

.land-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.land-footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--parchment);
}

.land-footer-brand span {
  color: var(--gold);
}

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

.land-footer-links a {
  font-size: 11px;
  color: var(--muted);
  text-decoration: none;
}

.land-footer-links a:hover {
  color: var(--gold);
}

.land-footer-copy {
  font-size: 10px;
  color: #9a8c78;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: var(--dark);
  border-top: 2px solid var(--gold);
  color: var(--dark-body);
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: 12px;
}

.cookie-banner a {
  color: var(--gold);
}

.cookie-btn {
  background: var(--gold);
  color: var(--dark);
  border: none;
  padding: 8px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-btn:hover {
  background: #d9a840;
}

/* Responsive */
@media (max-width: 960px) {
  .land-nav {
    padding: 14px 24px;
  }

  .land-nav-inner {
    flex-wrap: wrap;
  }

  .land-nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 14px;
  }

  .land-hero,
  .land-steps,
  .land-features,
  .land-pricing,
  .land-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .land-hero {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .land-steps,
  .land-features,
  .land-pricing {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .land-hero-inner {
    flex-direction: column;
    gap: 40px;
  }

  .land-hero-img-wrap,
  .land-hero-card-fallback {
    width: 100%;
    max-width: 480px;
  }

  .land-section-title {
    font-size: 32px;
  }

  .land-steps-grid,
  .land-feature-grid,
  .land-feat-grid,
  .land-plans {
    grid-template-columns: 1fr;
  }

  .land-footer-links {
    width: 100%;
  }

  .cookie-banner {
    padding: 12px 16px;
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
}
