@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wdth,wght@12..96,75..100,400..800&display=swap');

:root {
  --bg: #ffffff;
  --bg-soft: #f7f7f5;
  --bg-deep: #0e1116;
  --ink: #0e1116;
  --ink-soft: #3a3f47;
  --line: rgba(14, 17, 22, 0.10);
  --line-strong: rgba(14, 17, 22, 0.22);
  --orange: #ff6b35;
  --orange-dark: #e0521e;
  --navy: #004e89;
  --gold: #ffd60a;
  --green: #1f9d55;
  --shadow-sm: 0 2px 6px rgba(14, 17, 22, 0.06);
  --shadow-md: 0 12px 28px rgba(14, 17, 22, 0.10);
  --shadow-lg: 0 28px 60px rgba(14, 17, 22, 0.16);
  --radius: 10px;
  --radius-lg: 14px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.page { min-height: 100vh; }

/* ---------- Header / Nav ---------- */

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  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: 800;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.brand-mark {
  width: 28px;
  height: 28px;
  display: inline-block;
  background: var(--ink);
  position: relative;
  border-radius: 6px;
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 6px;
  background: var(--orange);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}
.nav-links a { text-decoration: none; padding: 11px 0; display: inline-flex; align-items: center; }
.nav-links a:hover { color: var(--orange); }

.nav-cta {
  background: var(--ink);
  color: #fff;
  padding: 9px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
}
.nav-cta:hover { background: var(--orange); color: #fff !important; }

/* ---------- Layout helpers ---------- */

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.wrap.narrow { max-width: 820px; }
.wrap.wider  { max-width: 1320px; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  font-weight: 800;
}

h1, h2, h3 {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-weight: 800;
}
h1, h2 {
  font-family: 'Bricolage Grotesque', Inter, ui-sans-serif, sans-serif;
}
h1 {
  margin: 0 0 22px;
  font-size: clamp(44px, 6.4vw, 84px);
}
h2 {
  margin: 0 0 22px;
  font-size: clamp(32px, 4.4vw, 56px);
}
h3 {
  margin: 0 0 10px;
  font-size: 22px;
  letter-spacing: -0.01em;
}

p { margin: 0 0 18px; }

.lead {
  color: var(--ink-soft);
  font-size: clamp(19px, 2.1vw, 24px);
  line-height: 1.45;
  max-width: 760px;
  font-weight: 500;
}

.small-note {
  color: var(--ink-soft);
  font-size: 14px;
}

/* ---------- Buttons ---------- */

.cta-row {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 14px 22px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform 140ms ease, background 140ms ease, color 140ms ease, border-color 140ms ease;
  background: transparent;
  color: var(--ink);
}
.button:hover { transform: translateY(-2px); }

.button.primary {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.button.primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.button.dark {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.button.dark:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.button.ghost {
  background: transparent;
  color: var(--ink);
}
.button.ghost:hover {
  background: var(--ink);
  color: #fff;
}

.button.lg {
  min-height: 58px;
  padding: 18px 28px;
  font-size: 18px;
  border-radius: 10px;
}

/* ---------- Hero ---------- */

.hero {
  padding: 88px 0 56px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 720px;
  height: 720px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.10), transparent 60%);
  top: -240px;
  right: -180px;
  border-radius: 50%;
  z-index: 0;
}
.hero .wrap { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 56px;
  align-items: center;
}

.hero h1 .accent {
  color: var(--orange);
}
.hero .price-strip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: var(--bg-soft);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.hero .price-strip .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  display: inline-block;
}

/* ---------- Sections ---------- */

.section {
  padding: 84px 0;
  border-top: 1px solid var(--line);
}
.section.tight { padding: 56px 0; }
.section.soft { background: var(--bg-soft); }
.section.dark {
  background: var(--bg-deep);
  color: #f1efe9;
  border-top: 0;
}
.section.dark h2,
.section.dark h3 { color: #fff; }
.section.dark .lead,
.section.dark .small-note { color: rgba(241, 239, 233, 0.78); }
.section.dark .button.ghost { color: #fff; border-color: rgba(255,255,255,0.4); }
.section.dark .button.ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }
.section.dark .eyebrow { color: var(--gold); }

.section.orange {
  background: var(--orange);
  color: #fff;
  border-top: 0;
}
.section.orange h2, .section.orange h3 { color: #fff; }
.section.orange .lead { color: rgba(255,255,255,0.92); }
.section.orange .button.dark { background: #fff; color: var(--ink); border-color: #fff; }
.section.orange .button.dark:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.section.orange .eyebrow { color: rgba(255,255,255,0.85); }

/* ---------- Two-col / Cards ---------- */

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 56px;
  align-items: start;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.card-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 26px;
  background: #fff;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}
.card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.card-link .card {
  height: 100%;
}
.card-link:hover .card {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}
.card-cta {
  display: block;
  margin-top: 12px;
  font-weight: 700;
  font-size: 14px;
  color: var(--orange);
}
.card .num {
  display: inline-block;
  min-width: 32px;
  height: 32px;
  padding: 0 10px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--orange);
  font-weight: 800;
  text-align: center;
  line-height: 32px;
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 0;
  white-space: nowrap;
}

.section.dark .card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.12);
  color: #f1efe9;
}
.section.dark .card:hover { border-color: var(--gold); }

/* ---------- Stat / Strip ---------- */

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
}
.stat-strip > div {
  padding: 24px;
  border-right: 1px solid var(--line);
}
.stat-strip > div:last-child { border-right: 0; }
.stat-strip strong {
  display: block;
  font-size: 32px;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  color: var(--orange);
}
.stat-strip span {
  display: block;
  color: var(--ink-soft);
  font-size: 14px;
}

/* ---------- Bundles ---------- */

.bundles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bundle {
  border: 2px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 30px;
  background: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  box-shadow: var(--shadow-sm);
}
.bundle:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--orange); }
.bundle.featured {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}
.bundle.featured h3 { color: #fff; }
.bundle.featured .price-num { color: var(--orange); }
.bundle.featured .feature-list li::before { background: var(--orange); }
.bundle.featured .button { background: var(--orange); border-color: var(--orange); color: #fff; }
.bundle.featured .button:hover { background: #fff; color: var(--ink); border-color: #fff; }

.bundle .bundle-tag {
  position: absolute;
  top: -14px;
  right: 22px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}

.bundle .bundle-name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.bundle.featured .bundle-name { color: var(--gold); }

.bundle .price-num {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink);
  line-height: 1;
  margin: 8px 0 4px;
}
.bundle .price-strike {
  text-decoration: line-through;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 6px;
}
.bundle.featured .price-strike { color: rgba(255,255,255,0.6); }
.bundle .price-meta {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.bundle.featured .price-meta { color: rgba(255,255,255,0.7); }

.feature-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
  display: grid;
  gap: 10px;
}
.feature-list li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  line-height: 1.45;
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 16px; height: 16px;
  background: var(--ink);
  clip-path: polygon(20% 50%, 0 70%, 40% 100%, 100% 30%, 80% 10%, 40% 60%);
}
.bundle .button { margin-top: auto; width: 100%; }

/* ---------- Catalog ---------- */

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.catalog-item {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 16px;
  background: #fff;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.catalog-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange);
}
.catalog-item img {
  width: 100%;
  display: block;
  border-radius: 6px;
  border: 1px solid var(--line);
  margin-bottom: 12px;
  background: #fff;
}
.catalog-item .tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.catalog-item strong {
  display: block;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.catalog-item .price {
  margin-top: auto;
  padding-top: 10px;
  font-weight: 700;
  color: var(--ink);
  font-size: 14px;
}

.catalog-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.filter-pill {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1.5px solid var(--line-strong);
  background: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  color: var(--ink-soft);
  transition: all 140ms ease;
}
.filter-pill:hover { border-color: var(--ink); color: var(--ink); }
.filter-pill.active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- Cover image ---------- */

.cover-img {
  display: block;
  width: min(100%, 380px);
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  background: #fff;
}
.cover-img.tilt { transform: rotate(-3deg); }

/* ---------- Forms ---------- */

.form-box {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
}
.form-box h3 { margin-bottom: 6px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 18px;
}
input, select, textarea {
  width: 100%;
  border: 1.5px solid var(--line-strong);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 14px 14px;
  font: inherit;
}
input:focus, select:focus, textarea:focus {
  outline: 0;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.18);
}
.success {
  display: none;
  margin-top: 14px;
  color: var(--green);
  font-weight: 700;
}
.success.visible { display: block; }

.error {
  display: none;
  margin-top: 14px;
  color: var(--orange);
  font-weight: 700;
}
.error.visible { display: block; }

/* ---------- Lists ---------- */

.list { padding-left: 22px; margin: 0; }
.list li { margin-bottom: 10px; }

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  position: relative;
  padding-left: 32px;
  font-size: 17px;
}
.check-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 800;
}

/* ---------- Quote ---------- */

.quote {
  font-family: Inter, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
  max-width: 920px;
}
.quote .accent { color: var(--orange); }

/* ---------- Footer ---------- */

.footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
  background: var(--bg-soft);
}
.footer .wrap {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 12px;
  color: var(--ink);
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 8px; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--orange); }

/* ---------- Sample / Workflow boxes ---------- */

.workflow {
  background: var(--ink);
  color: #f1efe9;
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-top: 18px;
}
.workflow .label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 8px;
}
pre {
  margin: 14px 0 0;
  white-space: pre-wrap;
  background: #0e1116;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 8px;
  padding: 18px;
  color: #f1efe9;
  font-size: 14px;
  line-height: 1.55;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.callout {
  border-left: 4px solid var(--orange);
  background: var(--bg-soft);
  padding: 18px 22px;
  border-radius: 0 8px 8px 0;
  margin: 22px 0;
}
.callout strong { color: var(--orange); }

/* ---------- Banner ---------- */

.urgency {
  background: var(--ink);
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 16px;
  letter-spacing: 0.01em;
}
.urgency .accent { color: var(--gold); }

/* ---------- Channel Cards ---------- */

.channel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.channel {
  border: 2px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 30px;
  background: #fff;
}
.channel .channel-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.channel.amazon .channel-tag { background: #232f3e; color: #ff9900; }
.channel.direct .channel-tag { background: var(--orange); color: #fff; }

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .hero-grid,
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .card-grid,
  .card-grid.four,
  .stat-strip,
  .bundles,
  .channel-grid { grid-template-columns: 1fr 1fr; }
  .catalog-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .stat-strip > div:nth-child(2) { border-right: 0; }
  .stat-strip > div { border-bottom: 1px solid var(--line); }
  .footer .wrap { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .nav { flex-direction: column; align-items: flex-start; gap: 12px; }
  .nav-links { flex-wrap: wrap; gap: 14px; }
  .hero { padding: 56px 0 34px; }
  .section { padding: 56px 0; }
  .card-grid,
  .card-grid.two,
  .card-grid.four,
  .stat-strip,
  .bundles,
  .channel-grid,
  .form-row { grid-template-columns: 1fr; }
  .catalog-grid { grid-template-columns: 1fr 1fr; }
  .stat-strip > div { border-right: 0; }
  .footer .wrap { grid-template-columns: 1fr; }
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
}
