/* NowWebshop marketing — brand tokens + static landing styles */

:root {
  --cream-50: #fdfcf7;
  --cream-100: #f6f2e6;
  --ink-900: #1a1a1a;
  --ink-700: #4a4a4a;
  --ink-500: #6f6f6f;
  --gold-600: #b8922d;
  --gold-500: #d4a939;
  --gold-100: #f3e7bf;
  --line: #e7e0c8;
  --shadow-sm: 0 1px 2px rgba(26, 26, 26, 0.04),
    0 2px 6px rgba(26, 26, 26, 0.04);
  --shadow-md: 0 4px 12px rgba(26, 26, 26, 0.06),
    0 12px 28px rgba(26, 26, 26, 0.08);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  font-family: var(--serif);
  color: var(--ink-900);
  line-height: 1.15;
  margin: 0 0 0.4em;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; color: var(--ink-700); }

a {
  color: var(--gold-600);
  text-decoration: none;
  transition: color 0.15s ease;
}
a:hover { color: var(--gold-500); }

:focus-visible {
  outline: 2px solid var(--gold-600);
  outline-offset: 3px;
  border-radius: 3px;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  background: var(--cream-100);
  padding: 0.1em 0.35em;
  border-radius: 4px;
  font-size: 0.9em;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 16px;
  background: var(--ink-900);
  color: var(--cream-50);
  border-radius: var(--radius-sm);
  z-index: 1000;
}

/* Header / nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 252, 247, 0.85);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-900);
  font-weight: 600;
}
.brand:hover { color: var(--ink-900); }

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--gold-600);
  color: var(--cream-50);
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18px;
}

.brand-word {
  font-family: var(--serif);
  font-size: 1.15rem;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-links a {
  color: var(--ink-700);
  font-size: 0.95rem;
}
.nav-links a:hover { color: var(--ink-900); }

.nav-cta {
  background: var(--ink-900);
  color: var(--cream-50) !important;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
}
.nav-cta:hover { background: var(--gold-600); }

/* Buttons */

.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.2;
  border: 1px solid transparent;
  transition: background 0.15s ease, border-color 0.15s ease,
    color 0.15s ease, transform 0.05s ease;
  cursor: pointer;
}

.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--gold-600);
  color: var(--cream-50) !important;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--gold-500); }

.btn-ghost {
  background: transparent;
  color: var(--ink-900) !important;
  border-color: var(--line);
}
.btn-ghost:hover {
  background: var(--cream-100);
  border-color: var(--gold-500);
}

.btn-outline {
  background: transparent;
  color: var(--gold-600) !important;
  border-color: var(--gold-600);
}
.btn-outline:hover {
  background: var(--gold-600);
  color: var(--cream-50) !important;
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1.05rem;
}

/* Hero */

.hero {
  position: relative;
  padding: 72px 0 56px;
  background:
    radial-gradient(
      ellipse at 10% 0%,
      rgba(212, 169, 57, 0.18),
      transparent 55%
    ),
    radial-gradient(
      ellipse at 90% 10%,
      rgba(184, 146, 45, 0.12),
      transparent 60%
    ),
    linear-gradient(180deg, var(--cream-50) 0%, var(--cream-100) 100%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 146, 45, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 146, 45, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 0%, #000 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  text-align: center;
  max-width: 780px;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 18px;
  padding: 4px 12px;
  background: var(--gold-100);
  color: var(--gold-600);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw + 1rem, 3.75rem);
  margin-bottom: 0.3em;
}

.hero-tagline {
  display: block;
  margin-top: 0.25em;
  font-size: 0.5em;
  font-weight: 400;
  color: var(--ink-700);
  font-style: italic;
}

.lede {
  font-size: 1.12rem;
  max-width: 620px;
  margin: 0 auto 28px;
  color: var(--ink-700);
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 28px;
  color: var(--ink-500);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.trust-row li {
  position: relative;
  padding: 6px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(253, 252, 247, 0.7);
}

/* Sections */

section { padding: 72px 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}

.section-head h2 {
  font-size: clamp(1.65rem, 2.4vw + 1rem, 2.3rem);
}

.section-sub {
  color: var(--ink-700);
  margin: 0;
}

/* Features */

.features { background: var(--cream-50); }

.feature-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: border-color 0.15s ease, transform 0.15s ease,
    box-shadow 0.15s ease;
}
.feature-card:hover {
  border-color: var(--gold-500);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gold-100);
  color: var(--gold-600);
  font-size: 1.3rem;
  margin-bottom: 14px;
}

.feature-card h3 {
  color: var(--gold-600);
  margin-bottom: 6px;
}
.feature-card p { margin: 0; }

/* How it works */

.how {
  background: linear-gradient(180deg, var(--cream-100), var(--cream-50));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  counter-reset: steps;
}

.step {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 24px 24px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--ink-900);
  color: var(--cream-50);
  font-family: var(--serif);
  font-weight: 700;
  margin-bottom: 14px;
}

.step h3 { margin-bottom: 4px; }
.step p { margin: 0; }

/* Pricing */

.pricing { background: var(--cream-50); }

.price-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.price-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.price-card h3 {
  color: var(--ink-900);
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.price { margin: 0 0 18px; color: var(--ink-900); }
.price .amount {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.price .per { color: var(--ink-500); font-size: 0.95rem; }

.price-features {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
}
.price-features li {
  padding: 8px 0 8px 24px;
  border-bottom: 1px solid var(--line);
  position: relative;
  color: var(--ink-700);
  font-size: 0.95rem;
}
.price-features li:last-child { border-bottom: 0; }
.price-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--gold-600);
  font-weight: 700;
}

.price-card .btn { align-self: stretch; text-align: center; }

.price-card-featured {
  border: 2px solid var(--gold-600);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-600);
  color: var(--cream-50);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}

/* Final CTA */

.final-cta {
  background: var(--ink-900);
  color: var(--cream-50);
  text-align: center;
}
.final-cta h2 { color: var(--cream-50); }
.final-cta p { color: rgba(253, 252, 247, 0.75); margin: 0 0 24px; }
.final-cta-inner { max-width: 620px; }

/* Footer */

.site-footer {
  background: var(--cream-50);
  border-top: 1px solid var(--line);
  padding: 28px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.copy {
  margin: 0;
  color: var(--ink-500);
  font-size: 0.9rem;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  justify-content: center;
}

.footer-links a {
  color: var(--ink-700);
  font-size: 0.9rem;
}
.footer-links a:hover { color: var(--gold-600); }

/* Breakpoint */

@media (min-width: 720px) {
  body { font-size: 18px; }

  .nav-links { gap: 28px; }

  .hero { padding: 112px 0 88px; }

  section { padding: 96px 0; }

  .feature-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .price-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
