@import url('fonts/faces.css');
@import url('fonts/nunito.css');

:root {
  --bg: #1c1a18;
  --panel: #262320;
  --panel2: #2f2b27;
  --line: #3a352f;
  --text: #f7f2ec;
  --muted: #b8ada3;
  --fox: #e8722a;
  --fox-dark: #c65a1d;
  --teal: #45c4b0;
  --teal-dark: #2e9a89;
}
* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  /* Reveal animations park .fx-r cards off-canvas to the right until they fire.
     Without this a phone gets a horizontal scrollbar before the first scroll. */
  overflow-x: hidden;
  background: var(--bg); color: var(--text);
  font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
}
::selection { background: var(--fox); color: var(--bg); }
a { color: inherit; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3, .brand span {
  font-family: 'Nunito', 'Work Sans', sans-serif;
}

nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand svg { width: 34px; height: 34px; }
.brand span { font-size: 1.3rem; font-weight: 700; letter-spacing: -0.02em; }
.brand b { color: var(--fox); font-weight: 700; }
.navlinks { display: flex; gap: 28px; align-items: center; }
.navlinks a { color: var(--muted); text-decoration: none; font-size: 0.95rem; font-weight: 500; }
.navlinks a:hover { color: var(--text); }
.navlinks a.cta {
  color: var(--bg); background: var(--fox); padding: 9px 18px;
  border-radius: 12px; font-weight: 700;
}
.navlinks a.cta:hover { background: var(--fox-dark); color: var(--bg); }

.hero { padding: 88px 0 76px; position: relative; }
/* Alternating section bands give the page its rhythm now, so the hero glow
   was removed rather than replaced. */
.hero > * { position: relative; }
.eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em; color: var(--muted);
  border-left: 3px solid var(--fox); padding-left: 0.85rem; margin-bottom: 1.6rem;
}
h1 {
  font-size: clamp(2.2rem, 5.2vw, 3.6rem); line-height: 1.08;
  letter-spacing: -0.025em; font-weight: 750; max-width: 17ch;
}
/* Jen: h1 reads as one colour. Accent kept for other headings only. */
h1 em { color: inherit; font-style: normal; }
.hero p {
  color: var(--muted); font-size: 1.15rem; max-width: 56ch; margin-top: 1.5rem;
}
.hero-ctas { display: flex; gap: 14px; margin-top: 2.3rem; flex-wrap: wrap; }
.btn {
  display: inline-block; text-decoration: none; font-weight: 700;
  padding: 13px 26px; border-radius: 18px; font-size: 1rem;
}
.btn-fox { background: var(--fox); color: var(--bg); }
.btn-fox:hover { background: var(--fox-dark); }
/* Secondary CTA. The old 1px --line border was nearly invisible on the dark
   background, so it read as a dark hole next to the solid orange. A warm cream
   outline gives it real presence without competing with the primary. */
.btn-ghost {
  border: 1.5px solid rgba(247, 242, 236, 0.55);
  color: var(--text);
  background: rgba(247, 242, 236, 0.04);
}
.btn-ghost:hover {
  border-color: var(--text);
  background: rgba(247, 242, 236, 0.11);
  color: var(--text);
}

section { padding: 66px 0; }
.sec-head { margin-bottom: 2.5rem; }
h2 { font-size: 2rem; letter-spacing: -0.02em; font-weight: 720; }
.sec-head p { color: var(--muted); margin-top: 0.6rem; max-width: 60ch; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 18px;
  padding: 28px 26px; display: flex; flex-direction: column;
}
.card h3 { font-size: 1.25rem; margin-bottom: 0.6rem; letter-spacing: -0.01em; font-weight: 650; }
.card .tag {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--fox); margin-bottom: 0.9rem;
}
/* Ombre across the row: warm orange into red, so the three cards read as a
   deliberate set rather than three unrelated accent colours. */
.card:nth-child(1) { --accent: #f0883a; }
.card:nth-child(2) { --accent: #dd6425; }
.card:nth-child(3) { --accent: #bf3f1e; }
.card .tag { color: var(--accent); }
/* A thin bar of the same colour along the top edge makes the ramp visible
   even before you read the labels. */
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: var(--accent);
  /* no radius needed here: the card clips it with overflow:hidden, and a
     radius on a 3px bar pinches the ends away from the corners */
}
.card { position: relative; overflow: hidden; }
.card p { color: var(--muted); font-size: 0.96rem; }
.card ul { margin: 1rem 0 0; padding: 0; list-style: none; }
.card li {
  color: var(--muted); font-size: 0.92rem; padding: 0.32rem 0 0.32rem 1.4rem;
  position: relative;
}
.card li::before {
  content: ""; position: absolute; left: 0; top: 0.78em;
  width: 8px; height: 8px; background: var(--accent);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.card .price { margin-top: auto; padding-top: 1.4rem; font-weight: 700; color: var(--text); }
.card .price small { color: var(--muted); font-weight: 400; }
.card .price a { color: var(--accent); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; counter-reset: step; }
.step {
  border-top: 3px solid var(--fox); background: var(--panel);
  border-radius: 0 0 18px 18px; padding: 24px 24px 26px;
}
.step:nth-child(1) { --accent: #f0883a; }
.step:nth-child(2) { --accent: #dd6425; }
.step:nth-child(3) { --accent: #bf3f1e; }
.step { border-top-color: var(--accent); }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: 'Nunito', sans-serif;
  font-size: 0.9rem; font-weight: 800; color: var(--accent);
  letter-spacing: 0.1em;
}
.step h3 { font-size: 1.15rem; margin: 0.5rem 0 0.5rem; font-weight: 650; }
.step p { color: var(--muted); font-size: 0.94rem; }

.rules { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.rule {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--panel); border: 1px solid var(--line);
  border-radius: 16px; padding: 18px 20px;
}
.rule svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 3px; }
.rule:nth-child(1) { --accent: #f0883a; }
.rule:nth-child(2) { --accent: #e26f2b; }
.rule:nth-child(3) { --accent: #cf5626; }
.rule:nth-child(4) { --accent: #bf3f1e; }
.rule svg { color: var(--accent); stroke: currentColor; }
.rule strong { display: block; font-size: 0.98rem; }
.rule span { color: var(--muted); font-size: 0.9rem; }

.about-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 44px; align-items: start; }
.about-grid .bio p { margin-top: 1.05rem; color: var(--muted); }
.about-grid .bio p.lede {
  font-family: 'Nunito', sans-serif;
  font-size: 1.3rem; line-height: 1.45; font-weight: 500;
  color: var(--text); margin-top: 0;
}
.portrait {
  background: var(--panel); border: 1px solid var(--line); border-radius: 18px;
  padding: 24px; text-align: center;
}
.portrait .frame {
  background: var(--panel2); border-radius: 16px; aspect-ratio: 4 / 5;
  display: flex; align-items: center; justify-content: center;
}
.portrait .frame svg { width: 42%; opacity: 0.9; }
.portrait .cap { margin-top: 14px; font-weight: 700; }
.portrait .cap small { display: block; color: var(--muted); font-weight: 400; font-size: 0.85rem; }
.facts { margin-top: 18px; text-align: left; padding: 0; }
.facts li {
  list-style: none; font-size: 0.9rem; padding: 0.5rem 0;
  border-top: 1px solid var(--line); color: var(--muted);
}

.contact { text-align: center; padding: 84px 0; }
.contact h2 { font-size: 2.3rem; }
.contact p { color: var(--muted); margin: 0.8rem auto 2rem; max-width: 46ch; }
.contact .phone { margin-top: 1.3rem; font-size: 0.95rem; color: var(--muted); }
.contact .phone a { color: var(--fox); text-decoration: none; font-weight: 700; }

footer {
  border-top: 1px solid var(--line); padding: 30px 0; margin-top: 20px;
  display: flex; justify-content: space-between; color: var(--muted); font-size: 0.88rem;
}
footer a { color: var(--muted); text-decoration: none; }
footer a:hover { color: var(--fox); }
.navlinks a:hover { color: var(--fox); }

.product-hero {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 36px;
  background: linear-gradient(135deg, #1e3a5f 0%, #16273c 100%);
  border: 1px solid var(--line); border-radius: 22px; padding: 44px;
  align-items: center;
}
.product-hero .tag {
  color: #f4a821; font-size: 0.72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em; display: block;
  margin-bottom: 0.9rem;
}
.product-hero h3 { font-size: 1.8rem; letter-spacing: -0.02em; font-weight: 700; }
.product-hero p { color: #c4d2e2; margin-top: 0.8rem; }
.product-hero ul { margin: 1.2rem 0 0; padding: 0; list-style: none; }
.product-hero li {
  color: #c4d2e2; font-size: 0.95rem; padding: 0.3rem 0 0.3rem 1.4rem; position: relative;
}
.product-hero li::before {
  content: ""; position: absolute; left: 0; top: 0.75em;
  width: 8px; height: 8px; background: #f4a821;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.pricebox { background: rgba(255,255,255,0.06); border-radius: 12px; padding: 28px; text-align: center; }
.pricebox .amount {
  font-family: 'Nunito', sans-serif;
  font-size: 2.6rem; font-weight: 750;
}
.pricebox .amount small { font-size: 1rem; color: #c4d2e2; font-weight: 400; }
.pricebox .btn { margin-top: 1.2rem; background: #f4a821; color: #16273c; }
.pricebox .btn:hover { background: #ffb63d; }
.pricebox .note { color: #9db8d4; font-size: 0.85rem; margin-top: 0.9rem; }

.honest {
  margin-top: 24px; padding: 28px 32px; background: var(--panel);
  border: 1px solid var(--line); border-radius: 18px;
  display: flex; justify-content: space-between; align-items: center; gap: 30px;
}
.honest p { color: var(--muted); max-width: 62ch; font-size: 0.97rem; }
.honest strong {
  color: var(--text); font-family: 'Nunito', sans-serif;
  font-size: 1.1rem; font-weight: 650;
}

@media (max-width: 840px) {
  .cards, .steps, .rules { grid-template-columns: 1fr; }
  .about-grid, .product-hero { grid-template-columns: 1fr; }
  .honest { flex-direction: column; align-items: flex-start; }
  .navlinks a:not(.cta) { display: none; }
}


/* scroll reveal */
.fx { opacity: 0; transform: translateY(28px); }
.fx-l { transform: translateX(-56px); }
.fx-r { transform: translateX(56px); }
.fx, .fx-l, .fx-r {
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.22, 0.9, 0.35, 1);
}
.fx.in, .fx-l.in, .fx-r.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.22s; }
.d3 { transition-delay: 0.34s; }
@media (prefers-reduced-motion: reduce) {
  .fx, .fx-l, .fx-r { opacity: 1; transform: none; transition: none; }
}

/* ---- Type-only centred hero (Jen's pick: direction 1 + layout D) ---- */
.hero-centred {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  padding: 92px 0 96px;
}
.hero-centred .eyebrow {
  border-left: none;
  padding-left: 0;
  display: inline-block;
  margin-bottom: 26px;
}
.hero-centred h1 {
  font-size: clamp(2.4rem, 5.4vw, 3.55rem); line-height: 1.05;
  /* h1 carries a 17ch cap from the old left-aligned hero. Inside a centred
     container that made its box narrow and pinned left, so the text looked
     off-centre even though the container was not. */
  max-width: 20ch; margin-left: auto; margin-right: auto;
}
.hero-centred p  { margin: 0 auto 30px; max-width: 47ch; font-size: 1.09rem; }
.hero-centred .hero-ctas { justify-content: center; }

/* ---- Circular portrait in the about section ---- */
.portrait-circle {
  width: 210px; height: 210px; border-radius: 50%;
  object-fit: cover; display: block; margin: 0 auto;
  border: 3px solid var(--line);
}
.portrait-wrap { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.portrait-wrap .cap {
  font-size: 0.92rem; color: var(--muted); text-align: center;
}
@media (max-width: 720px) {
  .hero-centred { padding: 60px 0 64px; }
  .portrait-circle { width: 168px; height: 168px; }
}

/* ---- Adoption gap stats ---- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; }
.stat {
  /* No panel or border: the figures carry it on their own and the boxes were
     making a simple three-number row look like another card grid. */
  padding: 8px 18px; text-align: center;
}
.stat:nth-child(1) { --accent: #f0883a; }
.stat:nth-child(2) { --accent: #dd6425; }
.stat:nth-child(3) { --accent: #bf3f1e; }
.stat .num {
  font-family: 'Nunito', sans-serif; font-weight: 800;
  font-size: clamp(2.4rem, 5vw, 3.4rem); line-height: 1;
  color: var(--accent); letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
}
.stat .lab { color: var(--muted); font-size: 0.96rem; margin-top: 0.85rem;
  max-width: 26ch; margin-left: auto; margin-right: auto; }
.gap-note {
  color: var(--muted); font-size: 1.05rem; margin-top: 2.2rem;
  line-height: 1.7;
}
.gap-note a { display: block; margin-top: 0.6rem; font-size: 0.85rem; color: var(--muted); }
.gap-note a:hover { color: var(--fox); }
@media (max-width: 760px) { .stats { grid-template-columns: 1fr; } }


/* ---- Alternating full-bleed section bands ---- */
:root { --band: #171513; }
.band { position: relative; }
.band::before {
  content: ""; position: absolute; top: 0; bottom: 0;
  left: 50%; width: 100vw; margin-left: -50vw;
  background: var(--band); z-index: -1;
}

/* ---- Hero light: soft glow from above (Jen picked A) ---- */
.hero-centred { position: relative; }
.hero-centred::after {
  content: ""; position: absolute; z-index: -1;
  top: -230px; bottom: -170px;
  left: 50%; width: 100vw; margin-left: -50vw;
  background: radial-gradient(1100px 380px at 50% -6%,
      rgba(255, 228, 196, 0.10), transparent 68%);
  pointer-events: none;
}


/* ---- Cards on the dark sections lose their boxes ----
   Three or four bordered panels in a row is a lot of chrome. The grid stays,
   which is the part Ben likes, but the frames come off so the page reads as
   content with structure rather than a wall of tiles. The accent rule above
   each one keeps the ombre doing its job. */
/* Only the process steps lose their boxes now. "What you get" and
   "You stay in charge" both keep their cards. */
.step {
  background: none; border: none; border-radius: 0;
  padding-left: 0; padding-right: 22px;
}
.step {
  /* no coloured rule above the numerals; the numeral itself carries the ombre */
  border-top: none; padding-top: 0;
}
.steps { gap: 34px; }
