/* Bowl Drop — warm amber + teal, price-first */

:root {
  --amber-50: #fff8eb;
  --amber-100: #ffefc7;
  --amber-400: #f5a623;
  --amber-500: #e8940a;
  --amber-600: #c77800;
  --teal-50: #eef9f7;
  --teal-100: #d4f0eb;
  --teal-500: #0d9488;
  --teal-600: #0f766e;
  --teal-700: #115e59;
  --ink: #1a1f1e;
  --ink-muted: #4a5552;
  --ink-faint: #6b7673;
  --surface: #ffffff;
  --surface-2: #f7f6f3;
  --border: #e5e2db;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(26, 31, 30, 0.08);
  --shadow-lg: 0 12px 40px rgba(26, 31, 30, 0.12);
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --max: 1100px;
  --narrow: 640px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface-2);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--teal-600);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--teal-700);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.container.narrow {
  width: min(100% - 2rem, var(--narrow));
}

.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;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: #fff;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 246, 243, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(232, 148, 10, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.logo:hover {
  color: var(--ink);
}

.logo-text {
  line-height: 1;
}

.logo-mark {
  display: block;
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  line-height: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.35rem 1rem;
  font-size: 0.9rem;
}

.nav a {
  color: var(--ink-muted);
  text-decoration: none;
  font-weight: 500;
}

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

.nav-cta {
  background: var(--amber-500);
  color: #1a1200 !important;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 1px 0 var(--amber-600);
}

.nav-cta:hover {
  background: var(--amber-400);
  color: #1a1200 !important;
}

@media (max-width: 520px) {
  .nav a:not(.nav-cta) {
    display: none;
  }
}

/* Hero */
.hero {
  padding: 2.5rem 0 3rem;
  background:
    radial-gradient(ellipse 90% 70% at 8% -10%, var(--amber-100), transparent 52%),
    radial-gradient(ellipse 55% 45% at 92% 18%, var(--teal-100), transparent 48%),
    var(--surface-2);
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 800px) {
  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
    padding-block: 1.5rem;
  }
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--amber-600);
}

.hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 6.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--ink);
  max-width: 15ch;
}

.lede {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 36ch;
}

.hero-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.hero-bullets li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.hero-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--teal-500);
  box-shadow: 0 0 0 3px var(--teal-100);
}

/* Signup card */
.signup-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--amber-500);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
}

.signup-title {
  margin: 0 0 0.25rem;
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 700;
}

.signup-sub {
  margin: 0 0 1.25rem;
  color: var(--ink-faint);
  font-size: 0.95rem;
}

.signup-form {
  display: grid;
  gap: 0.65rem;
}

.signup-form input[type="email"] {
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.signup-form input[type="email"]:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px var(--teal-100);
}

.signup-form input[type="email"].is-invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15);
}

.form-error {
  margin: 0;
  font-size: 0.85rem;
  color: #c0392b;
}

.form-fineprint {
  margin: 0.25rem 0 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--ink-faint);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.85rem 1.25rem;
  font: inherit;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
}

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

.btn-primary {
  background: var(--amber-500);
  color: #1a1200;
  box-shadow: 0 2px 0 var(--amber-600);
}

.btn-primary:hover {
  background: var(--amber-400);
  color: #1a1200;
}

.btn-deal {
  width: 100%;
  margin-top: auto;
  background: var(--teal-600);
  color: #fff;
}

.btn-deal:hover {
  background: var(--teal-700);
  color: #fff;
}

/* Deal CTAs stay teal; Gear Hero punch lives on the card, not the button */

.signup-success {
  text-align: center;
  padding: 1rem 0.5rem;
}

.success-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-700);
  font-size: 1.4rem;
  font-weight: 700;
}

.signup-success h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.signup-success p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

/* How it works */
.how {
  padding: 3rem 0;
  background: var(--surface);
  border-block: 1px solid var(--border);
}

.section-title {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.section-sub {
  margin: 0 0 1.75rem;
  color: var(--ink-faint);
  font-size: 0.98rem;
}

.beats {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .beats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.beat {
  padding: 1.25rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.beat-num {
  display: inline-grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  background: var(--teal-600);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}

.beat h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: 650;
}

.beat p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-muted);
}

/* Deals */
.deals {
  padding: 3rem 0 3.5rem;
  background: linear-gradient(180deg, var(--teal-50) 0%, var(--surface-2) 28%);
}

.deals-header {
  margin-bottom: 0.5rem;
}

.deal-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 520px) {
  .deal-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .deal-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.15rem;
  }
}

.deal-card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 220px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

@media (hover: hover) {
  .deal-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }
}

.deal-media {
  aspect-ratio: 16 / 10;
  margin: -0.25rem -0.25rem 0.55rem;
  border-radius: var(--radius-sm);
  background: #fffef8;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem;
}

.deal-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.deal-media--hero {
  background: #fffef8;
  border-color: rgba(245, 166, 35, 0.4);
}

.deal-card--hero {
  position: relative;
  border-color: var(--amber-400);
  border-width: 2px;
  background: linear-gradient(160deg, var(--amber-100), var(--surface) 48%);
  box-shadow: var(--shadow-lg), 0 0 0 1.5px rgba(245, 166, 35, 0.45);
}

.deal-card--hero .deal-name {
  font-size: 1.05rem;
}

.deal-badge {
  display: inline-block;
  align-self: start;
  margin-bottom: 0.35rem;
  padding: 0.25rem 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  background: var(--teal-50);
  color: var(--teal-700);
}

.deal-badge--hero {
  background: var(--amber-100);
  color: var(--amber-600);
  font-size: 0.75rem;
  padding: 0.25rem 0.65rem;
}

.deal-pick {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 650;
  color: var(--amber-600);
}

.deal-name {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.3;
}

.deal-meta {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-faint);
}

.deal-price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.65rem;
  margin: 0.5rem 0 0.85rem;
  min-height: 2.25rem;
}

.price-now {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.price-was {
  font-size: 0.95rem;
  color: var(--ink-faint);
  text-decoration: line-through;
  font-variant-numeric: tabular-nums;
}

.price-save {
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  background: var(--teal-100);
  color: var(--teal-700);
}

/* FAQ */
.faq {
  padding: 3rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.faq-list {
  display: grid;
  gap: 0.65rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  padding: 0.15rem 1rem;
}

.faq-item summary {
  cursor: pointer;
  padding: 0.85rem 0;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--teal-600);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--ink-muted);
}

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  background: var(--ink);
  color: #c5cbc9;
  font-size: 0.88rem;
}

.footer-inner {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .footer-inner {
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
  }
}

.footer-brand strong {
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-brand p {
  margin: 0.35rem 0 0;
  max-width: 36ch;
  line-height: 1.5;
}

.footer-meta p {
  margin: 0 0 0.75rem;
  line-height: 1.5;
}

.footer-copy {
  color: #8a9491;
  font-size: 0.8rem;
}

/* Screenshot-friendly: slightly tighter vertical rhythm at common phone widths */
@media (max-width: 390px) {
  .hero {
    padding-top: 1.75rem;
  }

  .hero h1 {
    font-size: 2.15rem;
    max-width: none;
  }

  .signup-card {
    padding: 1.25rem;
  }

  .deal-card {
    min-height: 0;
  }
}


/* Trust strip under lede */
.trust-strip {
  margin: 0 0 1.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-faint);
}

.footer-brand {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 0.5rem;
  align-items: start;
}

.footer-brand .logo-mark {
  grid-row: 1 / span 2;
  margin-top: 0.1rem;
}

.footer-brand strong {
  grid-column: 2;
}

.footer-brand p {
  grid-column: 2;
}

/* Beehiiv embed slot — keeps paste-in embeds from blowing out the card */
.beehiiv-embed {
  margin-top: 0.75rem;
  width: 100%;
}

.beehiiv-embed iframe,
.beehiiv-embed form {
  max-width: 100%;
}

.deals-verified {
  margin: -0.75rem 0 1.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal-700);
}

/* Watch request */
.watch {
  padding: 3rem 0 3.25rem;
  background:
    radial-gradient(ellipse 70% 60% at 90% 0%, var(--amber-100), transparent 55%),
    var(--surface-2);
}

.watch .section-sub {
  margin-bottom: 1.35rem;
}

.watch-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--teal-500);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.watch-form {
  display: grid;
  gap: 0.85rem;
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

.form-field label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

.form-field .optional {
  font-weight: 500;
  color: var(--ink-faint);
}

.watch-form input[type="text"],
.watch-form input[type="email"],
.watch-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.watch-form textarea {
  resize: vertical;
  min-height: 5.5rem;
  line-height: 1.45;
}

.watch-form input:focus,
.watch-form textarea:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px var(--teal-100);
}

.watch-form input.is-invalid,
.watch-form textarea.is-invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.15);
}

.watch-form .btn-primary {
  width: 100%;
}

@media (max-width: 520px) {
  .nav a[href="#watch"] {
    display: none;
  }
}
