/* forecastly — brand design system (matched to the app + profitmind.co.uk) */
:root {
  --yellow: #FFBD4A;
  --black: #000000;
  --cream: #FFF7E5; /* used sparingly: small highlights only, never section backgrounds */
  --white: #FFFFFF;
  --line: rgba(0, 0, 0, 0.15);
  --shadow: 3px 3px 0 #000;
  --radius: 1.4rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- self-hosted fonts (no third-party font requests, GDPR-friendly) ---------- */
@font-face { font-family: 'Anton'; src: url('/assets/fonts/anton-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Open Sans'; src: url('/assets/fonts/opensans-400.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Open Sans'; src: url('/assets/fonts/opensans-600.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Open Sans'; src: url('/assets/fonts/opensans-700.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }

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

html { scroll-behavior: smooth; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: 'Open Sans', system-ui, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.font-heading, h1, h2, h3, h4 {
  font-family: 'Anton', 'Arial Narrow', sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

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

.container { width: min(1280px, 92vw); margin-inline: auto; }
.section { padding: clamp(72px, 9vw, 112px) 0; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--black); color: var(--yellow);
  padding: 10px 16px; z-index: 200; font-weight: 700;
}
.skip-link:focus { left: 8px; top: 8px; }

/* ---------- signature highlight: cap-height band, top-anchored, trimmed at the ---------- */
/* ---------- baseline so it never crowds the row below -------- */
.highlight-yellow, .highlight-white {
  background: none;
  background-repeat: no-repeat;
  background-size: 100% 0.8em;
  background-position: left 0 bottom 0.14em;
  padding: 0 0.25rem;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.highlight-yellow { background-image: linear-gradient(0deg, var(--yellow), var(--yellow)); }
.highlight-white { background-image: linear-gradient(0deg, var(--white), var(--white)); }

.card {
  background: var(--white);
  border: 1.5px solid rgba(0, 0, 0, 0.55);
  border-radius: var(--radius);
  padding: 24px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: 'Anton', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
}
.section-eyebrow::before {
  content: "";
  display: block;
  width: 3rem;
  height: 2px;
  background: var(--yellow);
  flex: none;
}
/* dash would be invisible on yellow surfaces */
.pricing-card.yellow .section-eyebrow::before,
.duo-band .section-eyebrow::before { background: var(--black); }

.section-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  flex: none;
  background: var(--yellow);
  border: 1.5px solid var(--black);
  border-radius: 0.5rem;
  font-family: 'Anton', sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--black);
}

.shadow-pop-yellow {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 12px 12px 0 0 var(--yellow);
}

.divider-black { border-top: 1px solid var(--line); }

/* ---------- buttons ---------- */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1.5px solid var(--black);
  border-radius: 0.75rem;
  padding: 0.8rem 1.6rem;
  font-family: 'Anton', sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.14s ease, box-shadow 0.14s ease, background-color 0.14s ease;
}
.btn-primary { background: var(--yellow); color: var(--black); }
.btn-secondary { background: var(--white); color: var(--black); }
.btn-primary:hover { background: var(--white); transform: translate(2px, 2px); box-shadow: 1px 1px 0 0 #000; }

.plan-tagline { font-weight: 700; font-size: 15px; margin-top: 14px; }
.included-card { padding: 30px; }
.trial-cta-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 40px; }
.btn-secondary:hover { background: var(--yellow); transform: translate(2px, 2px); box-shadow: 1px 1px 0 0 #000; }
.btn-primary:active, .btn-secondary:active { transform: translate(3px, 3px); box-shadow: 0 0 0 0 #000; }

/* ---------- nav ---------- */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 10px 0;
}
.nav-logo img { width: 260px; max-width: 50vw; height: auto; }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a {
  text-decoration: none; font-weight: 700; font-size: 12.5px;
  text-transform: uppercase; letter-spacing: 0.14em;
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--yellow);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s var(--ease-out);
}
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-btn { padding: 0.55rem 1.1rem; font-size: 0.8rem; white-space: nowrap; }

.nav-toggle {
  display: none; background: var(--white); border: 1.5px solid var(--black);
  border-radius: 0.75rem; width: 46px; height: 42px; cursor: pointer;
  box-shadow: var(--shadow); position: relative;
  transition: transform 0.14s ease, box-shadow 0.14s ease;
}
.nav-toggle:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 0 #000; }
.nav-toggle span {
  display: block; width: 20px; height: 2.5px; background: var(--black);
  margin: 4px auto; transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none; border-top: 1px solid var(--line);
  background: var(--white); overflow: hidden;
  max-height: 0; transition: max-height 0.35s var(--ease-out);
  padding: 0 0 16px;
}
.mobile-menu.open { max-height: 520px; }
.mobile-menu a {
  display: block; padding: 15px 4vw; text-decoration: none;
  font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: 0.14em;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.mobile-menu a:hover { background: var(--cream); }
.mobile-menu .menu-btn {
  margin: 14px 4vw 0;
  padding: 13px 16px;
  text-align: center;
  border: 1.5px solid var(--black);
  border-radius: 0.75rem;
  box-shadow: var(--shadow);
  font-family: 'Anton', sans-serif;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  transition: transform 0.14s ease, box-shadow 0.14s ease, background-color 0.14s ease;
}
.mobile-menu .menu-btn:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 0 #000; }
.mobile-menu .menu-btn-primary { background: var(--yellow); }
.mobile-menu .menu-btn-secondary { background: var(--white); }
.mobile-menu .menu-btn-secondary:hover { background: var(--yellow); }

/* ---------- hero ---------- */
.hero { padding: clamp(56px, 8vw, 96px) 0 clamp(64px, 8vw, 100px); border-bottom: 1px solid var(--line); }
.hero-inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 80px); align-items: center;
}
.hero h1 {
  font-size: clamp(2.5rem, 5.6vw, 3.9rem);
  line-height: 1.08; letter-spacing: 0.02em; margin: 24px 0 26px;
}
.hero-line { display: block; overflow: hidden; padding: 0.04em 0 0.14em; margin-bottom: -0.14em; }
.hero-line-inner {
  display: inline-block; transform: translateY(120%);
  animation: lineUp 0.9s var(--ease-out) forwards;
}
.hero-line:nth-child(1) .hero-line-inner { animation-delay: 0.15s; }
.hero-line:nth-child(2) .hero-line-inner { animation-delay: 0.28s; }
.hero-line:nth-child(3) .hero-line-inner { animation-delay: 0.41s; }
@keyframes lineUp { to { transform: translateY(0); } }

.hero-fade { opacity: 0; animation: fadeUp 0.8s var(--ease-out) forwards; }
.hero-fade.d1 { animation-delay: 0.55s; }
.hero-fade.d2 { animation-delay: 0.7s; }
.hero-fade.d3 { animation-delay: 0.85s; }
.hero-fade.d4 { animation-delay: 1s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.hero-sub { color: rgba(0,0,0,0.8); font-size: 1.05rem; line-height: 1.7; margin-bottom: 14px; max-width: 58ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 30px 0 26px; }
.trust-bar { display: grid; gap: 10px; max-width: 60ch; }
.trust-item {
  display: flex; align-items: flex-start; gap: 9px;
  font-size: 14.5px; color: rgba(0,0,0,0.7); line-height: 1.55;
}
.trust-item strong { color: var(--black); }
.trust-item svg { flex: none; margin-top: 3px; }

.hero-media { position: relative; }
.hero-frame img { aspect-ratio: 1/1; object-fit: cover; object-position: 63% center; width: 100%; height: auto; }

/* ---------- marquee (white band, black type, yellow squares, LTR, slow) ---------- */
.marquee-band {
  background: var(--white);
  border-block: 1px solid var(--line);
  overflow: hidden; padding: 16px 0;
}
.marquee-track {
  display: flex; width: max-content; gap: 1.75rem;
  align-items: center;
  animation: marquee 90s linear infinite reverse;
  will-change: transform;
}
.marquee-track span {
  font-family: 'Anton', sans-serif; text-transform: uppercase;
  letter-spacing: 0.15em; font-size: 18px; white-space: nowrap;
  display: flex; align-items: center; gap: 1.75rem; color: var(--black);
}
.marquee-track .sq { width: 8px; height: 8px; background: var(--yellow); border-radius: 2px; flex: none; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- section headers ---------- */
.section-head { max-width: 780px; margin-bottom: clamp(40px, 6vw, 64px); }
.section-head h2 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.12; letter-spacing: 0.02em; margin: 22px 0 24px;
}
.section-head p { color: rgba(0,0,0,0.75); line-height: 1.75; margin-bottom: 14px; }

/* narrow editorial sections */
.narrow-section { max-width: 780px; }
.narrow-section h2 {
  font-size: clamp(2rem, 4.2vw, 3.1rem);
  line-height: 1.12; letter-spacing: 0.02em; margin: 22px 0 24px;
}
.narrow-section p { color: rgba(0,0,0,0.78); line-height: 1.8; margin-bottom: 14px; }
.narrow-section p:last-of-type { margin-bottom: 0; }

/* ---------- yellow duo band (calm / not alone) ---------- */
.duo-band { background: var(--yellow); border-block: 1.5px solid var(--black); }
.duo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 80px); align-items: start; }
.duo-grid h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.14; letter-spacing: 0.02em; margin: 20px 0 20px;
}
.duo-grid p { color: rgba(0,0,0,0.82); line-height: 1.8; margin-bottom: 14px; }
.duo-grid p:last-of-type { margin-bottom: 0; }
.duo-cta { text-align: center; margin-top: clamp(36px, 5vw, 56px); }

/* ---------- how it works ---------- */
.how-grid { display: grid; grid-template-columns: 2fr 3fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.how-side h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); line-height: 1.12; letter-spacing: 0.02em; margin: 22px 0 26px; }
.how-side .btn-primary { margin-top: 8px; }
.how-steps { display: grid; gap: 20px; }
.how-step { display: flex; gap: 22px; align-items: flex-start; transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out); }
.how-step:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 #000; }
.how-step h3 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); letter-spacing: 0.02em; line-height: 1.15; margin-bottom: 10px; }
.how-step p { color: rgba(0,0,0,0.75); line-height: 1.7; font-size: 15px; }

/* ---------- is this for me ---------- */
.for-me-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.for-me-img img { aspect-ratio: 1/1; object-fit: cover; object-position: left center; width: 100%; height: auto; }
.for-me-copy h2 { font-size: clamp(2rem, 4.2vw, 3.1rem); line-height: 1.12; letter-spacing: 0.02em; margin: 22px 0 30px; }
.for-me-list { list-style: none; display: grid; gap: 14px; }
.for-me-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15.5px; line-height: 1.6; color: rgba(0,0,0,0.8);
}
.for-me-list svg { flex: none; margin-top: 2px; }
.for-me-close { margin-top: 28px; font-size: 15.5px; color: rgba(0,0,0,0.8); line-height: 1.75; max-width: 54ch; }

/* ---------- built by profitmind ---------- */
.built-by-grid { display: grid; grid-template-columns: minmax(260px, 380px) 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; }
.built-by-img img { aspect-ratio: 1/1; object-fit: cover; object-position: center 25%; width: 100%; height: auto; }
.built-by-copy h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height: 1.12; letter-spacing: 0.02em; margin: 18px 0 22px; }
.built-by-copy p { line-height: 1.75; color: rgba(0,0,0,0.85); margin-bottom: 14px; }
.built-by-links { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 24px; }
.text-link { font-weight: 700; font-size: 15px; text-decoration: underline; text-decoration-color: var(--yellow); text-decoration-thickness: 3px; text-underline-offset: 3px; }
.text-link:hover { text-decoration-color: var(--black); }

/* ---------- pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: stretch; }
.pricing-card { display: flex; flex-direction: column; position: relative; padding: 30px; transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out); }
.pricing-card:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 #000; }
.pricing-card.yellow { background: var(--yellow); }
.pricing-badge {
  position: absolute; top: -13px; right: 24px;
  background: var(--black); color: var(--white);
  font-family: 'Anton', sans-serif; text-transform: uppercase; letter-spacing: 0.08em;
  font-size: 12px; padding: 5px 12px; border-radius: 6px; border: 2px solid var(--black);
}
.plan-price { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; margin-top: 16px; }
.plan-price .amount { font-family: 'Anton', sans-serif; font-size: 3.6rem; letter-spacing: 0.02em; line-height: 1; }
.plan-price .per { color: rgba(0,0,0,0.7); font-size: 14px; }
.plan-price .strike { text-decoration: line-through; color: rgba(0,0,0,0.45); font-family: 'Anton', sans-serif; font-size: 1.9rem; }
.plan-blurb { font-size: 15px; line-height: 1.7; color: rgba(0,0,0,0.85); margin: 16px 0 20px; }
.plan-features { list-style: none; display: grid; gap: 9px; margin-bottom: 26px; flex: 1; }
.plan-features li { display: flex; gap: 9px; font-size: 14.5px; line-height: 1.55; color: rgba(0,0,0,0.85); }
.plan-features li svg { flex: none; margin-top: 3px; }
.pricing-card .btn-primary, .pricing-card .btn-secondary { align-self: flex-start; }
.why-card { margin-top: 16px; font-size: 12.5px; color: rgba(0,0,0,0.7); line-height: 1.6; }
.why-card summary { cursor: pointer; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.why-card p { margin-top: 8px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--yellow); border-top: 1.5px solid var(--black); text-align: center; }
.cta-band h2 { font-size: clamp(2.4rem, 6vw, 4.4rem); letter-spacing: 0.02em; line-height: 1.06; margin-bottom: 20px; }
.cta-band p { max-width: 900px; margin: 0 auto 34px; font-size: 1.05rem; color: rgba(0,0,0,0.8); line-height: 1.7; }
.cta-band .hero-actions { justify-content: center; margin: 0; }
.cta-small { margin: 24px auto 0; font-size: 13.5px; font-style: italic; color: rgba(0,0,0,0.65); }

/* ---------- footer ---------- */
.site-footer { background: var(--white); border-top: 1px solid var(--line); }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px; padding: clamp(48px, 6vw, 72px) 0 36px;
}
.footer-logo-img { width: 220px; height: auto; margin-bottom: 18px; }
.footer-tag { color: rgba(0,0,0,0.65); font-size: 14px; line-height: 1.7; max-width: 32ch; }
.footer-col h4 {
  font-family: 'Anton', sans-serif; text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 13px; color: var(--black); margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 0.7rem;
}
.footer-col h4::before { content: ""; display: block; width: 1.4rem; height: 2px; background: var(--yellow); }
.footer-col ul { list-style: none; display: grid; gap: 10px; }
.footer-col a {
  color: rgba(0,0,0,0.65); text-decoration: none; font-size: 14px;
  background-image: linear-gradient(var(--yellow), var(--yellow));
  background-repeat: no-repeat; background-size: 0% 3px; background-position: 0 100%;
  transition: color 0.2s ease, background-size 0.25s var(--ease-out);
}
.footer-col a:hover { color: var(--black); background-size: 100% 3px; }
.footer-social {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
  border-top: 1px solid var(--line); padding: 20px 0;
}
.built-by-tag {
  font-family: 'Anton', sans-serif; text-transform: uppercase;
  letter-spacing: 0.22em; font-size: 0.78rem; color: var(--black);
}
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--yellow); border: 1.5px solid var(--black);
  display: grid; place-items: center; box-shadow: var(--shadow);
  transition: transform 0.14s ease, box-shadow 0.14s ease, background-color 0.14s ease;
}
.social-row a:hover { background: var(--white); transform: translate(2px, 2px); box-shadow: 1px 1px 0 0 #000; }
.footer-legal {
  border-top: 1px solid var(--line);
  padding: 20px 0 28px; font-size: 12.5px; color: rgba(0,0,0,0.55);
  display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center;
}
.pm-logo img { height: 48px; width: auto; border-radius: 10px; }
.footer-legal .grow { flex: 1; }

/* ---------- subpage hero ---------- */
.page-hero { padding: clamp(64px, 9vw, 110px) 0 clamp(36px, 5vw, 56px); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2.3rem, 5.2vw, 4rem); line-height: 1.08; letter-spacing: 0.02em; margin: 22px 0 22px; }
.page-hero p.lede { font-size: 17px; color: rgba(0,0,0,0.78); line-height: 1.8; max-width: 60ch; }

/* ---------- features page ---------- */
.feature-chapter {
  display: grid; grid-template-columns: 80px 1fr; gap: clamp(20px, 4vw, 48px);
  padding: clamp(36px, 5vw, 56px) 0; border-top: 1px solid var(--line);
  align-items: start;
}
.feature-chapter:last-of-type { border-bottom: 1px solid var(--line); }
.feature-chapter h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); letter-spacing: 0.02em; margin-bottom: 16px; line-height: 1.12; }
.feature-chapter p { color: rgba(0,0,0,0.78); line-height: 1.8; margin-bottom: 14px; max-width: 64ch; }
.feature-points { list-style: none; display: grid; gap: 10px; margin-top: 18px; }
.feature-points li { display: flex; gap: 10px; font-size: 15px; color: rgba(0,0,0,0.8); }
.feature-points li svg { flex: none; margin-top: 3px; }

/* ---------- blog ---------- */
.blog-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.post-card { display: flex; flex-direction: column; text-decoration: none; transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out); }
.post-card:hover { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 #000; }
.post-card .post-kicker { font-family: 'Anton', sans-serif; font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(0,0,0,0.55); margin-bottom: 12px; }
.post-card h3 { font-size: 21px; letter-spacing: 0.02em; line-height: 1.2; margin-bottom: 12px; }
.post-card p { color: rgba(0,0,0,0.72); font-size: 15px; line-height: 1.7; margin-bottom: 18px; }
.post-card .read-more { font-weight: 700; font-size: 14px; margin-top: auto; }
.post-card .read-more::after { content: " →"; }
.post-card-img {
  width: calc(100% + 48px); max-width: none; margin: -24px -24px 20px;
  height: auto; display: block;
  border-radius: calc(var(--radius) - 2px) calc(var(--radius) - 2px) 0 0;
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.55);
}

/* ---------- article (blog post / help article) ---------- */
.article-wrap { max-width: 720px; margin-inline: auto; }
.prose p { line-height: 1.85; color: rgba(0,0,0,0.8); margin-bottom: 18px; }
.prose h2 { font-size: 25px; letter-spacing: 0.02em; margin: 36px 0 14px; }
.prose h3 { font-size: 19px; letter-spacing: 0.02em; margin: 28px 0 12px; }
.prose ul { margin: 0 0 18px 22px; line-height: 1.8; color: rgba(0,0,0,0.8); }
.prose blockquote {
  border-left: 3px solid var(--yellow); padding: 4px 0 4px 22px;
  font-style: italic; font-size: 19px; line-height: 1.6; margin: 28px 0; color: rgba(0,0,0,0.85);
}
.article-meta { font-family: 'Anton', sans-serif; font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(0,0,0,0.55); margin: 18px 0 30px; }
.back-link { font-weight: 700; font-size: 14px; text-decoration: none; display: inline-block; margin-bottom: 24px; }
.back-link:hover { text-decoration: underline; text-decoration-color: var(--yellow); text-decoration-thickness: 3px; }

/* ---------- help / FAQ accordion ---------- */
.accordion { display: grid; gap: 14px; }
.accordion-item { background: var(--white); border: 1.5px solid rgba(0,0,0,0.55); border-radius: var(--radius); overflow: hidden; transition: box-shadow 0.2s var(--ease-out); }
.accordion-item:hover { box-shadow: 4px 4px 0 #000; }
.accordion-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 22px; text-align: left;
  font-family: 'Open Sans', sans-serif; font-weight: 700; font-size: 16px; color: var(--black);
}
.accordion-btn .acc-icon {
  flex: none; width: 30px; height: 30px; border: 1.5px solid var(--black);
  border-radius: 50%; background: var(--yellow); display: grid; place-items: center;
  font-weight: 700; font-size: 18px; line-height: 1; transition: transform 0.3s var(--ease-out);
}
.accordion-item.open .acc-icon { transform: rotate(45deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease-out); }
.accordion-panel p { padding: 0 22px 22px; color: rgba(0,0,0,0.75); line-height: 1.75; font-size: 15px; }

.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.video-card { text-align: center; padding: 34px 22px; }
.video-card .play-ic {
  width: 58px; height: 58px; margin: 0 auto 16px; border: 1.5px solid var(--black);
  border-radius: 50%; background: var(--yellow); display: grid; place-items: center;
  box-shadow: var(--shadow);
}
.video-card h3 { font-size: 17px; letter-spacing: 0.02em; margin-bottom: 8px; }
.video-card p { font-size: 13.5px; color: rgba(0,0,0,0.6); line-height: 1.65; }

/* ---------- roadmap ---------- */
.roadmap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; align-items: start; }
.roadmap-col h3 {
  font-size: 17px; letter-spacing: 0.18em; margin-bottom: 18px;
  display: inline-flex; align-items: center; gap: 0.7rem;
}
.roadmap-col h3::before { content: ""; display: block; width: 1.6rem; height: 2px; background: var(--yellow); }
.roadmap-col .card { margin-bottom: 16px; padding: 20px; }
.roadmap-col .card h4 { font-size: 15.5px; font-weight: 700; margin-bottom: 6px; text-transform: none; font-family: 'Open Sans', sans-serif; letter-spacing: 0; }
.roadmap-col .card p { font-size: 13.5px; color: rgba(0,0,0,0.7); line-height: 1.6; }
.roadmap-note {
  background: var(--white); border: 1.5px dashed var(--black); border-radius: var(--radius);
  padding: 18px 22px; font-size: 14px; color: rgba(0,0,0,0.7); margin-bottom: 36px; line-height: 1.7;
}

/* ---------- about ---------- */
.about-float::after { content: ""; display: block; clear: both; }
.float-img { float: left; width: min(440px, 38%); margin: 8px clamp(28px, 4vw, 48px) 24px 0; }
.float-img img { aspect-ratio: 2/3; height: auto; object-fit: cover; object-position: center 12%; width: 100%; }
.why-grid { display: grid; grid-template-columns: 1fr minmax(340px, 440px); gap: clamp(32px, 5vw, 72px); align-items: start; }
.why-img img { aspect-ratio: 2/3; height: auto; object-fit: cover; object-position: center 25%; width: 100%; }
.about-copy h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); line-height: 1.12; letter-spacing: 0.02em; margin: 18px 0 22px; }
.about-copy p { line-height: 1.8; color: rgba(0,0,0,0.82); margin-bottom: 14px; }
.next-block { margin-top: 48px; }
.method-steps { display: grid; gap: 18px; }
.method-step { display: flex; gap: 20px; align-items: flex-start; }
.method-step h3 { font-size: 19px; letter-spacing: 0.02em; margin-bottom: 8px; }
.method-step p { color: rgba(0,0,0,0.75); font-size: 15px; line-height: 1.7; }
.method-step .this-one { display: inline-block; margin-top: 8px; font-size: 12.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; background: var(--yellow); border: 1.5px solid var(--black); border-radius: 999px; padding: 4px 12px; }

/* ---------- 404 ---------- */
.nf-wrap { text-align: center; padding: clamp(80px, 12vw, 150px) 0; }
.nf-wrap .big { font-family: 'Anton', sans-serif; font-size: clamp(6rem, 18vw, 11rem); line-height: 1; color: var(--yellow); -webkit-text-stroke: 2px #000; }
.nf-wrap p { margin: 18px auto 30px; color: rgba(0,0,0,0.7); max-width: 46ch; }

/* ---------- pillar cards (features) ---------- */
.icon-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.6rem; height: 2.6rem; flex: none;
  background: var(--yellow); border: 1.5px solid var(--black); border-radius: 0.5rem;
}
.card-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Anton', sans-serif; font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(0,0,0,0.6); margin-bottom: 8px;
}
.card-eyebrow::before { content: ""; display: block; width: 1.3rem; height: 2px; background: var(--yellow); flex: none; }
.how-grid.rev { grid-template-columns: 3fr 2fr; }
.how-side p { color: rgba(0,0,0,0.78); line-height: 1.8; margin-bottom: 14px; }
.page-hero p.lede.wide { max-width: none; }
.cta-band .cta-small { margin: 34px auto 0; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal-group > * { opacity: 0; transform: translateY(26px); transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out); }
.reveal-group.in > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-group.in > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-group.in > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-group.in > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-group.in > * { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal, .reveal-group > * { opacity: 1; transform: none; }
}

/* ---------- features page pillars ---------- */
.trio-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: clamp(32px, 5vw, 48px); }
.trio-card h3 { font-size: 1.3rem; letter-spacing: 0.02em; margin-bottom: 10px; }
.trio-card p { font-size: 14.5px; line-height: 1.7; color: rgba(0,0,0,0.75); }
.pillar-lede { max-width: 64ch; color: rgba(0,0,0,0.78); line-height: 1.8; }
.pillar-close { margin-top: 34px; font-weight: 600; color: rgba(0,0,0,0.7); font-size: 15px; }
.quad-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: clamp(32px, 5vw, 48px); }
.quad-card { display: flex; flex-direction: column; }
.quad-card h3 { font-size: 1.05rem; line-height: 1.22; letter-spacing: 0.02em; margin-bottom: 12px; }
.quad-card p { font-size: 14px; line-height: 1.7; color: rgba(0,0,0,0.75); margin-bottom: 12px; }
.quad-card p:last-child { margin-bottom: 0; }
@media (max-width: 1020px) {
  .quad-grid { grid-template-columns: 1fr 1fr; }
  .trio-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .quad-grid { grid-template-columns: 1fr; }
}

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .hero-inner, .for-me-grid, .built-by-grid, .how-grid, .duo-grid, .why-grid { grid-template-columns: 1fr; }
  .hero-media, .built-by-img, .for-me-img, .why-img { max-width: 520px; justify-self: center; }
  .pricing-grid, .blog-grid { grid-template-columns: 1fr; }
  .video-grid, .roadmap-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .feature-chapter { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .container { width: auto; padding-left: 22px; padding-right: 22px; }
  .float-img { float: none; width: 100%; max-width: 420px; margin: 0 0 28px 0; }
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: block; }
  .mobile-menu { display: block; }
  .nav-logo img { width: 210px; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-social { justify-content: flex-start; }
  .how-step { flex-direction: column; gap: 12px; }
  .plan-price .amount { font-size: 3rem; }
  .hero h1 { font-size: clamp(2.2rem, 10.5vw, 3rem); }
}

/* ---------- article share row ---------- */
.share-row { margin-top: 52px; padding-top: 30px; border-top: 1px solid var(--line); display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.share-label { font-family: 'Anton', sans-serif; text-transform: uppercase; letter-spacing: 0.06em; font-size: 15px; }
.share-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.share-btn {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--yellow); border: 1.5px solid var(--black);
  display: grid; place-items: center; box-shadow: var(--shadow);
  cursor: pointer; padding: 0; position: relative;
  transition: transform 0.14s ease, box-shadow 0.14s ease, background-color 0.14s ease;
}
.share-btn:hover { background: var(--white); transform: translate(2px, 2px); box-shadow: 1px 1px 0 0 #000; }
.share-btn.copied::after {
  content: "Copied"; position: absolute; bottom: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  background: var(--black); color: var(--white); font-family: 'Open Sans', sans-serif;
  font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; white-space: nowrap;
}

/* ---------- article featured card image ---------- */
.article-hero-img { width: 100%; height: auto; display: block; border-radius: var(--radius); margin: 30px 0 40px; }
