/* ==========================================================================
   Tankful landing page
   Built from the Brilliant export in ref/. Two designed sizes: 1280px
   desktop and 390px mobile. Between them the desktop layout collapses
   gradually; at 600px and below it follows the mobile design exactly.
   ========================================================================== */

:root {
  --bg: #faf8f5;
  --surface: #ffffff;
  --ink: #0e2028;
  --ink-2: #3b4e57;
  --ink-3: #4a5d66;
  --ink-4: #556871;
  --muted: #7b8c94;
  --slate: #64748b;
  --slate-2: #94a3b8;
  --orange: #ee5927;
  --orange-tint: #fff0e6;
  --green: #10b981;
  --dark: #0f2834;
  --phone-frame: #101720;
  --phone-dark: #0c1d2f;
  --phone-card: #1e293b;

  --container: 1120px;
  --gutter: 80px;
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, p, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
svg { display: block; }

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute; left: 16px; top: -60px;
  padding: 10px 14px; border-radius: 8px;
  background: var(--ink); color: #fff; z-index: 100;
}
.skip-link:focus { top: 16px; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; border-radius: 6px; }

/* ---------- type ---------- */
.eyebrow { font-size: 15px; font-weight: 700; letter-spacing: 0.5px; line-height: 1.05; color: var(--orange); }
.section-title { font-size: 36px; font-weight: 800; letter-spacing: -1px; line-height: 1.15; color: var(--ink); }
.fine-print { font-size: 13px; color: var(--muted); }
.caption { font-size: 13px; color: var(--muted); text-align: center; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-weight: 600; white-space: nowrap; border: 0; cursor: pointer; border-radius: 100px;
  transition: transform .15s ease, box-shadow .15s ease, background-color .15s ease;
}
.btn--primary { background: var(--orange); color: #fff; }
.btn--primary:hover { background: #e04f1f; }
.btn--primary:active { transform: translateY(1px); }
.btn--ghost { color: var(--ink); padding-inline: 12px; }
.btn--ghost:hover { color: var(--orange); }
.btn--sm { font-size: 14px; padding: 12px 22px; }
.btn--lg { font-size: 15px; padding: 16px 28px; }
.btn--glow { box-shadow: 0 4px 14px rgba(238, 89, 39, 0.25); }
.btn--glow:hover { box-shadow: 0 6px 18px rgba(238, 89, 39, 0.35); }
.btn--block { width: 100%; border-radius: 8px; }

/* ==========================================================================
   Header / nav
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 248, 245, 0.88);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  backdrop-filter: saturate(160%) blur(10px);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 97px; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark { width: 26px; height: 30px; }
.brand__name { font-size: 24px; font-weight: 700; letter-spacing: -0.5px; color: var(--ink); }
.brand--sm .brand__mark { width: 23px; height: 26px; }
.brand--sm .brand__name { font-size: 20px; }
.nav__links { display: flex; align-items: center; gap: 36px; }
.nav__links a { font-size: 15px; font-weight: 500; color: var(--ink-2); }
.nav__links a:hover { color: var(--ink); }

/* ==========================================================================
   Phone mockups
   Desktop frame 268x570 (8px bezel), mobile frame 220x475 (7px bezel).
   ========================================================================== */
.phone {
  width: 268px; padding: 8px; border-radius: 46px;
  background: var(--phone-frame);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}
.phone__screen {
  position: relative; overflow: hidden;
  height: 554px; border-radius: 38px; background: var(--surface);
}
.phone__img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.phone--order .phone__screen { padding: 16px 14px; }
.phone__img--inset { border-radius: 24px; }
.phone--order { box-shadow: 0 16px 32px rgba(0, 0, 0, 0.16); }

.phone--dark { box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18); }
.phone--dark .phone__screen { padding: 24px 16px; background: var(--phone-dark); color: #fff; }

.status-bar { display: flex; align-items: center; justify-content: space-between; font-size: 11px; font-weight: 600; }
.status-bar__icons { display: inline-flex; align-items: center; gap: 4px; }

.lock { margin-top: 20px; text-align: center; }
.lock__date { font-size: 12px; font-weight: 500; color: var(--slate-2); }
.lock__time { font-size: 44px; font-weight: 700; letter-spacing: -1px; line-height: 1.2; }

.message {
  margin-top: 20px; padding: 14px; border-radius: 16px;
  background: var(--phone-card); box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
.message__meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 10px; font-weight: 600; letter-spacing: 0.5px; color: var(--slate-2);
}
.message__meta > span:first-child { display: inline-flex; align-items: center; gap: 6px; }
.message__when { font-weight: 400; letter-spacing: 0; color: var(--slate); }
.message__title { margin-top: 8px; font-size: 13px; font-weight: 600; line-height: 1.4; color: #fff; }
.message__body { margin-top: 8px; font-size: 12px; line-height: 1.35; color: #cbd5e1; }

.dot { flex: none; display: inline-block; width: 8px; height: 8px; border-radius: 50%; }
.dot--orange { background: var(--orange); }
.toast .dot--orange { width: 10px; height: 10px; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative; overflow: hidden;
  background: var(--bg) url('assets/hero-fields.webp') center / cover no-repeat;
}
.hero__inner {
  position: relative;
  display: grid; grid-template-columns: 540px 1fr; align-items: start;
  min-height: 590px; padding-top: 90px; padding-bottom: 60px;
}
.hero__copy { max-width: 540px; }
.hero__title { margin-top: 22px; font-size: 54px; font-weight: 800; letter-spacing: -1.5px; line-height: 1.08; }
.hero__lede { margin-top: 26px; max-width: 520px; font-size: 18px; line-height: 1.4; color: var(--ink-2); }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 20px; margin-top: 24px; }
.hero__note { margin-top: 24px; font-size: 14px; font-weight: 600; }

.hero__visual { position: relative; justify-self: end; margin-top: -76px; }
.toast {
  position: absolute; left: -100px; top: 406px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 16px; border-radius: 14px;
  background: var(--surface); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  font-size: 13px; font-weight: 600; white-space: nowrap;
}

/* ==========================================================================
   Promises (two cards)
   ========================================================================== */
.promises { padding: 64px 0; }
.promises__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.card { padding: 36px; border-radius: 24px; background: var(--surface); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04); }
.card__icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--orange-tint); }
.card__title { margin-top: 20px; font-size: 32px; font-weight: 800; letter-spacing: -0.5px; line-height: 1.2; }
.card__body { margin-top: 20px; max-width: 472px; font-size: 16px; line-height: 1.5; color: var(--ink-3); }

/* ==========================================================================
   How it works
   ========================================================================== */
.how { padding: 64px 0; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 48px; }
.step__num { display: block; font-size: 48px; font-weight: 800; line-height: 1.2; color: var(--orange); }
.step__title { margin-top: 14px; font-size: 20px; font-weight: 700; }
.step__body { margin-top: 14px; font-size: 16px; line-height: 1.45; color: var(--ink-4); }

/* ==========================================================================
   The monitor
   ========================================================================== */
.monitor { padding: 70px 0; }
.monitor__inner { display: grid; grid-template-columns: 268px 1fr; gap: 80px; align-items: center; }
.monitor__visual { padding-left: 20px; }
.monitor__copy .section-title { font-size: 38px; }
.features { margin-top: 28px; display: grid; gap: 20px; }
.feature { display: flex; align-items: center; gap: 16px; font-size: 17px; font-weight: 600; }
.feature__icon { flex: none; display: grid; place-items: center; width: 40px; height: 40px; border-radius: 100px; background: var(--orange-tint); }
.monitor__copy .fine-print { margin-top: 28px; }

/* ==========================================================================
   Neighbours banner
   ========================================================================== */
.neighbours {
  min-height: 360px; padding: 48px 0;
  background: #fbf3df url('assets/neighbours.webp') center / cover no-repeat;
}
.neighbours__copy, .neighbours__extra { max-width: 480px; }
.neighbours__lede { margin-top: 12px; font-size: 16px; line-height: 1.45; }
.neighbours__note { margin-top: 12px; font-size: 14px; font-weight: 600; line-height: 1.4; }
.neighbours__legal { margin-top: 12px; font-size: 12px; color: #475569; }

/* ==========================================================================
   Group order detail
   ========================================================================== */
.grouporder { padding: 64px 0; }
.grouporder__inner {
  display: grid; grid-template-columns: minmax(0, 796px) 268px;
  justify-content: space-between; gap: 56px; align-items: start;
}
.grouporder__main { padding-top: 90px; }
.grouporder__scene { width: 100%; aspect-ratio: 796 / 230; object-fit: cover; object-position: center 62%; border-radius: 18px; }
.benefits { display: grid; gap: 18px; margin-top: 28px; }
.benefit { display: flex; align-items: flex-start; gap: 16px; }
.benefit__icon { flex: none; display: grid; place-items: center; width: 38px; height: 38px; border-radius: 100px; background: var(--orange-tint); }
.benefit__title { font-size: 16px; font-weight: 700; line-height: 1.2; }
.benefit__body { margin-top: 3px; font-size: 14px; line-height: 1.4; color: var(--ink-4); }
.grouporder__aside { justify-self: end; }
.grouporder__aside .caption { margin-top: 10px; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { padding: 64px 0; }
.faq__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-top: 44px; }
.faq__col { display: grid; gap: 28px; align-content: start; }
.qa__q { font-size: 17px; font-weight: 700; line-height: 1.25; }
.qa__a { margin-top: 6px; font-size: 15px; line-height: 1.45; color: var(--ink-4); }

/* ==========================================================================
   Early-access CTA
   ========================================================================== */
.cta { padding: 64px 0; background: var(--dark); color: #fff; }
.cta__inner { display: grid; grid-template-columns: 500px 480px; justify-content: space-between; align-items: center; gap: 48px; }
.cta__title { font-size: 42px; font-weight: 800; letter-spacing: -1px; line-height: 1.1; }
.cta__lede { margin-top: 12px; font-size: 16px; line-height: 1.4; color: var(--slate-2); }

.signup { width: 100%; }
.signup__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field__label { display: block; font-size: 13px; font-weight: 500; color: #fff; }
.field__input {
  display: block; width: 100%; height: 43px; margin-top: 6px; padding: 0 16px;
  font: inherit; font-size: 14px; color: var(--ink);
  background: #fff; border: 1px solid transparent; border-radius: 8px;
}
.field__input::placeholder { color: var(--slate); }
.field__input:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(238, 89, 39, 0.35); }
.field__input[aria-invalid="true"] { border-color: #f87171; }
.signup__submit { margin-top: 14px; height: 48px; font-size: 15px; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin-top: 14px; }
.consent__box { flex: none; width: 16px; height: 16px; margin: 0; accent-color: var(--orange); }
.consent__label { display: grid; gap: 4px; cursor: pointer; }
.consent__main { font-size: 13px; font-weight: 500; color: #f1f5f9; line-height: 1.2; }
.consent__sub { font-size: 12px; color: #cbd5e1; line-height: 1.25; }
.consent__sub a { text-decoration: underline; text-underline-offset: 2px; }
.signup__status { margin-top: 12px; min-height: 1.2em; font-size: 14px; color: #fde68a; }
.signup__status.is-success { color: #a7f3d0; }
.signup__status:empty { margin-top: 0; min-height: 0; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { padding: 36px 0; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer__right { display: flex; align-items: center; gap: 32px; font-size: 13px; font-weight: 500; color: var(--slate); }
.footer__links { display: flex; align-items: center; gap: 32px; }
.footer__links a:hover { color: var(--ink); }
.footer__copy { color: var(--slate); }

/* ==========================================================================
   Responsive: desktop -> tablet
   ========================================================================== */
@media (max-width: 1100px) {
  :root { --gutter: 48px; }
  .hero__inner { grid-template-columns: minmax(0, 1fr) 300px; }
  .hero__title { font-size: 48px; }
  .toast { left: -60px; }
  .grouporder__inner { grid-template-columns: minmax(0, 1fr) 268px; gap: 40px; }
  .cta__inner { grid-template-columns: minmax(0, 1fr) minmax(0, 480px); }
}

@media (max-width: 960px) {
  :root { --gutter: 32px; }
  .nav { height: 76px; }
  .nav__links { display: none; }

  .hero { background-position: 62% 100%; }
  .hero__inner { grid-template-columns: 1fr; padding-top: 56px; padding-bottom: 56px; min-height: 0; }
  .hero__copy { max-width: 560px; }
  .hero__visual { justify-self: center; margin-top: 56px; padding-bottom: 44px; }
  .toast { left: 50%; transform: translateX(-50%); top: auto; bottom: 0; }

  .promises__grid { grid-template-columns: 1fr; gap: 20px; }
  .card { padding: 28px; }
  .card__title { font-size: 28px; }

  .steps { grid-template-columns: 1fr; gap: 32px; margin-top: 36px; }

  .monitor__inner { grid-template-columns: 1fr; gap: 48px; }
  .monitor__visual { padding-left: 0; justify-self: center; }
  .monitor__copy .section-title { font-size: 34px; }

  .neighbours {
    min-height: 0; padding: 48px 0 300px;
    background-color: #fbf3df; background-position: 62% 100%; background-size: auto 280px;
  }
  .neighbours__copy, .neighbours__extra { max-width: none; }

  .grouporder__inner { grid-template-columns: 1fr; gap: 48px; }
  .grouporder__main { padding-top: 0; }
  .grouporder__scene { aspect-ratio: 3 / 2; object-position: center; }
  .grouporder__aside { justify-self: center; }

  .faq__grid { grid-template-columns: 1fr; gap: 28px; margin-top: 32px; }

  .cta__inner { grid-template-columns: 1fr; gap: 36px; }
  .cta__title { font-size: 36px; }
}

/* ==========================================================================
   Responsive: the 390px mobile design
   ========================================================================== */
@media (max-width: 600px) {
  :root { --gutter: 20px; }

  .eyebrow { font-size: 13px; }
  .section-title { font-size: 28px; letter-spacing: -0.5px; line-height: 1.2; }
  .fine-print { font-size: 12px; }
  .caption { font-size: 11px; }

  /* nav: brand + pill, 66px tall */
  .nav { height: 66px; }
  .brand__mark { width: 22px; height: 25px; }
  .brand__name { font-size: 20px; }
  .nav .btn--sm { font-size: 13px; padding: 9px 16px; }

  /* phones */
  .phone { width: 220px; padding: 7px; border-radius: 42px; box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18); }
  .phone__screen { height: 461px; border-radius: 33px; }
  .phone--order { padding: 12px; box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12); }
  .phone--order .phone__screen { height: 451px; padding: 10px 8px; border-radius: 35px; }
  .phone__img--inset { border-radius: 20px; }
  .phone--dark { padding: 0; background: var(--phone-dark); box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18); }
  .phone--dark .phone__screen { height: 475px; padding: 16px 12px; border-radius: 42px; }
  .phone--dark .status-bar { display: none; }
  .lock { margin-top: 0; }
  .lock__date { font-size: 11px; }
  .lock__time { font-size: 36px; }
  .message { margin-top: 16px; padding: 12px; border-radius: 14px; box-shadow: none; }
  .message__meta { font-size: 9px; letter-spacing: 0; color: var(--orange); }
  .message__meta .dot { display: none; }
  .message__title { font-size: 12px; line-height: 1.35; }
  .message__body { font-size: 11px; line-height: 1.3; }

  /* hero */
  .hero {
    background-color: var(--bg);
    background-image: url('assets/hero-fields.webp');
    background-size: auto 420px;
    background-position: -430px 286px;
    background-repeat: no-repeat;
  }
  .hero__inner { padding-top: 28px; padding-bottom: 40px; }
  .hero__copy { max-width: 310px; margin-inline: auto; }
  .hero__title { margin-top: 22px; font-size: 34px; letter-spacing: -1px; line-height: 1.1; }
  .hero__lede { margin-top: 18px; font-size: 15px; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: 12px; margin-top: 18px; }
  .hero__actions .btn--lg { font-size: 14px; padding: 14px 20px; }
  .hero__actions .btn--ghost { padding: 10px; }
  .hero__note { margin-top: 18px; font-size: 13px; text-align: center; }
  .hero__visual { margin-top: 24px; padding-bottom: 0; }
  .toast {
    position: static; transform: none;
    display: flex; margin-top: 24px; width: 100%;
    padding: 10px 12px; border-radius: 12px;
    font-size: 11px; box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12); gap: 8px;
  }
  .toast .dot--orange { width: 8px; height: 8px; }
  /* the toast lives inside the 220px visual; stretch it back to the full column */
  .hero__visual { width: 100%; display: grid; justify-items: center; }
  .hero__visual .phone { justify-self: center; }

  /* promises */
  .promises { padding: 40px 0; }
  .card { padding: 24px; border-radius: 20px; box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04); }
  .card__icon { width: 44px; height: 44px; border-radius: 12px; }
  .card__icon svg { transform: scale(0.86); }
  .card__title { margin-top: 16px; font-size: 24px; }
  .card__body { margin-top: 16px; font-size: 15px; line-height: 1.45; }

  /* how it works */
  .how { padding: 40px 0; }
  .steps { gap: 24px; margin-top: 32px; }
  .step__num { font-size: 36px; }
  .step__title { margin-top: 8px; font-size: 18px; }
  .step__body { margin-top: 8px; font-size: 15px; line-height: 1.4; }

  /* monitor: title, then phone, then features */
  .monitor { padding: 40px 0; }
  .monitor__inner { gap: 0; }
  .monitor__visual { order: 2; margin-top: 42px; }
  .monitor__copy { display: contents; }
  .monitor__copy .section-title { order: 1; font-size: 28px; }
  .features { order: 3; margin-top: 42px; gap: 18px; }
  .feature { gap: 12px; font-size: 15px; }
  .feature__icon { width: 34px; height: 34px; }
  .feature__icon svg { transform: scale(0.9); }
  .monitor__copy .fine-print { order: 4; margin-top: 32px; }

  /* neighbours: 260px banner, note drops below onto the cream */
  .neighbours {
    padding: 24px 0 0;
    background-color: var(--bg);
    background-image: url('assets/neighbours.webp');
    background-size: auto 260px; background-position: center top;
  }
  .neighbours__copy { min-height: 236px; max-width: 222px; }
  .neighbours__copy .section-title { font-size: 26px; }
  .neighbours__lede { font-size: 14px; line-height: 1.4; }
  .neighbours__lede-more { display: none; }
  .neighbours__extra { padding-top: 32px; }
  .neighbours__note { margin-top: 0; }
  .neighbours__legal { display: none; }

  /* group order */
  .grouporder { padding: 24px 0 32px; }
  .grouporder__inner { gap: 24px; }
  .grouporder__scene { aspect-ratio: 350 / 160; border-radius: 14px; }
  .benefits { gap: 16px; margin-top: 24px; }
  .benefit__icon { display: none; }
  .benefit__title { font-size: 15px; }
  .benefit__body { margin-top: 4px; font-size: 13px; }

  /* faq */
  .faq { padding: 40px 0; }
  .faq .section-title { font-size: 26px; }
  .faq__grid { gap: 20px; margin-top: 24px; }
  .faq__col { gap: 20px; }
  .qa__q { font-size: 16px; }
  .qa__a { margin-top: 6px; font-size: 14px; line-height: 1.4; }

  /* cta */
  .cta { padding: 40px 0; }
  .cta__inner { gap: 24px; }
  .cta__title { font-size: 30px; letter-spacing: -0.5px; line-height: 1.15; }
  .cta__lede { margin-top: 8px; font-size: 14px; }
  .signup__row { grid-template-columns: 1fr; gap: 14px; }
  .field__label { font-size: 12px; }
  .field__input { height: 41px; padding: 0 14px; }
  .signup__submit { height: 45px; font-size: 14px; }
  .consent__main { font-size: 12px; }
  .consent__sub { font-size: 11px; }

  /* footer: centred stack */
  .site-footer { padding: 28px 0 40px; }
  .footer__inner { flex-direction: column; gap: 20px; }
  .brand--sm .brand__mark { width: 20px; height: 23px; }
  .brand--sm .brand__name { font-size: 18px; }
  .footer__right { flex-direction: column; gap: 12px; font-size: 12px; }
  .footer__links { gap: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}

/* ==========================================================================
   Energy-saving tips (blog)
   ========================================================================== */
.nav__links a[aria-current="page"] { color: var(--ink); }

.tips-hero { padding: 72px 0 40px; }
.tips-hero__title { margin-top: 18px; font-size: 54px; font-weight: 800; letter-spacing: -1.5px; line-height: 1.08; }
.tips-hero__lede { margin-top: 20px; max-width: 560px; font-size: 18px; line-height: 1.45; color: var(--ink-2); }

.tips { padding: 24px 0 96px; }
.tips__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.tips__empty { color: var(--ink-4); }
.tip-card { display: flex; }
.tip-card__link {
  display: flex; flex-direction: column; width: 100%; overflow: hidden;
  border-radius: 24px; background: var(--surface); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform .18s ease, box-shadow .18s ease;
}
.tip-card__link:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08); }
.tip-card__image { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.tip-card__body { display: flex; flex-direction: column; flex: 1; padding: 28px; }
.tip-card__meta { font-size: 13px; color: var(--muted); }
.tip-card__title { margin-top: 10px; font-size: 22px; font-weight: 800; letter-spacing: -0.4px; line-height: 1.25; }
.tip-card__desc { margin-top: 12px; font-size: 15px; line-height: 1.5; color: var(--ink-3); }
.tip-card__more { margin-top: auto; padding-top: 20px; font-size: 14px; font-weight: 600; color: var(--orange); }
.tip-card--draft .tip-card__link { outline: 2px dashed var(--orange); outline-offset: -2px; }

.post__draft {
  display: inline-block; margin-left: 8px; padding: 2px 8px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase;
  background: var(--orange-tint); color: var(--orange);
}

.post { padding: 40px 0 96px; }
.post__inner { max-width: 720px; }
.breadcrumb { display: flex; gap: 10px; font-size: 14px; font-weight: 500; color: var(--muted); }
.breadcrumb a:hover { color: var(--ink); }
.post__header { margin-top: 28px; }
.post__title { font-size: 44px; font-weight: 800; letter-spacing: -1.2px; line-height: 1.1; }
.post__meta { margin-top: 16px; font-size: 14px; color: var(--muted); }
.post__meta span[aria-hidden] { margin: 0 6px; }
.post__standfirst { margin-top: 18px; font-size: 19px; line-height: 1.45; color: var(--ink-2); }
.post__image { margin-top: 32px; width: 100%; border-radius: 18px; }

.prose { margin-top: 36px; font-size: 17px; line-height: 1.65; color: var(--ink-3); }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { margin-top: 2em; font-size: 26px; font-weight: 800; letter-spacing: -0.5px; line-height: 1.25; color: var(--ink); }
.prose h3 { margin-top: 1.6em; font-size: 20px; font-weight: 700; color: var(--ink); }
.prose strong { color: var(--ink); font-weight: 700; }
.prose a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li + li { margin-top: 0.5em; }
.prose li::marker { color: var(--orange); font-weight: 700; }
.prose blockquote { margin-inline: 0; padding-left: 20px; border-left: 3px solid var(--orange); color: var(--ink-2); }
.prose img { border-radius: 14px; }
.prose hr { border: 0; border-top: 1px solid rgba(14, 32, 40, 0.1); }
.prose code { padding: 2px 6px; border-radius: 6px; background: #f1ede8; font-size: 0.9em; }

.post-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  margin-top: 56px; padding: 36px; border-radius: 24px;
  background: var(--surface); box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}
.post-cta__title { margin-top: 12px; font-size: 26px; font-weight: 800; letter-spacing: -0.5px; line-height: 1.2; }
.post-cta__lede { margin-top: 10px; font-size: 15px; line-height: 1.5; color: var(--ink-3); }
.post-cta .btn { flex: none; }

.more-tips { margin-top: 48px; }
.more-tips__title { font-size: 20px; font-weight: 800; letter-spacing: -0.4px; }
.more-tips__list { margin-top: 14px; display: grid; gap: 10px; }
.more-tips__list a { font-weight: 600; color: var(--ink); }
.more-tips__list a:hover { color: var(--orange); }

@media (max-width: 960px) {
  .tips__grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .tips-hero { padding-top: 48px; }
  .tips-hero__title { font-size: 44px; }
  .post-cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  .tips-hero { padding: 32px 0 24px; }
  .tips-hero__title { font-size: 34px; letter-spacing: -1px; }
  .tips-hero__lede { font-size: 15px; }
  .tips { padding-bottom: 56px; }
  .tips__grid { grid-template-columns: 1fr; gap: 16px; }
  .tip-card__link { border-radius: 20px; }
  .tip-card__body { padding: 22px; }
  .tip-card__title { font-size: 20px; }
  .post { padding: 24px 0 56px; }
  .post__title { font-size: 30px; letter-spacing: -0.8px; }
  .post__standfirst { font-size: 16px; }
  .prose { font-size: 16px; }
  .prose h2 { font-size: 22px; }
  .post-cta { padding: 24px; border-radius: 20px; }
  .post-cta__title { font-size: 22px; }
  .post-cta .btn { width: 100%; }
}
