/* ───────────────────────────────────────────────────────────
   FinInfoPro — shared design system
   The whole system borrows its geometry from the product
   itself: an SMS thread. Bubble corners (one clipped corner),
   mono "timestamp" meta, and a marigold/ink palette pulled
   from the hero photograph.
   ─────────────────────────────────────────────────────────── */

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

:root {
  --shell: #fffdf8;
  --sand: #f5edda;
  --sand-deep: #eee1c6;
  --ink: #251c0f;
  --ink-soft: #5c5240;
  --ink-faint: #8a7f6a;
  --line: #e6dcc4;
  --marigold: #f1af2b;
  --marigold-hi: #ffc247;
  --honey: #a86f0b;
  --error: #a03511;

  --maxw: 1160px;
  --prosew: 780px;

  /* bubble corners: r = full, k = clipped */
  --r: 22px;
  --k: 5px;
  --r-recv: var(--r) var(--r) var(--r) var(--k);
  --r-sent: var(--r) var(--r) var(--k) var(--r);

  --shadow-sm: 0 1px 2px rgba(37, 28, 15, .05), 0 6px 18px -10px rgba(37, 28, 15, .18);
  --shadow-md: 0 2px 4px rgba(37, 28, 15, .05), 0 26px 50px -24px rgba(37, 28, 15, .35);

  --display: "Bricolage Grotesque", "Schibsted Grotesk", ui-sans-serif, system-ui, sans-serif;
  --sans: "Schibsted Grotesk", ui-sans-serif, system-ui, sans-serif;
  --mono: "Spline Sans Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--shell);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

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

:focus-visible {
  outline: 3px solid var(--marigold);
  outline-offset: 2px;
  border-radius: 4px;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 26px;
}

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.015em;
}

/* mono meta label — the system's "timestamp" */
.meta {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--honey);
}

/* ───── Brand ───── */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand img {
  width: 34px;
  height: 34px;
}

.brand .word {
  font-family: var(--display);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -.02em;
  color: var(--ink);
}

.brand .word b {
  font-weight: 700;
  color: var(--marigold);
}

/* ───── Buttons — every button is a "sent" bubble ───── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15.5px;
  padding: 15px 27px;
  border-radius: var(--r-sent);
  border: none;
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--marigold);
  color: var(--ink);
  box-shadow: 0 14px 28px -14px rgba(168, 111, 11, .65);
}

.btn-primary:hover {
  background: var(--marigold-hi);
}

.btn-ink {
  background: var(--ink);
  color: var(--shell);
}

.btn-ink:hover {
  background: #3a2e1b;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--line);
}

.btn-ghost:hover {
  box-shadow: inset 0 0 0 2px var(--ink);
}

/* ghost on dark photo / ink backgrounds */
.btn-ghost.on-dark {
  color: var(--shell);
  box-shadow: inset 0 0 0 2px rgba(255, 253, 248, .55);
}

.btn-ghost.on-dark:hover {
  box-shadow: inset 0 0 0 2px var(--shell);
}

.btn-logout {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--line);
}

.btn-logout:hover {
  box-shadow: inset 0 0 0 2px var(--ink);
}

/* ───── Nav ───── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 74px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links .link {
  font-weight: 500;
  font-size: 15.5px;
  color: var(--ink-soft);
  transition: color .15s ease;
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta .btn {
  padding: 11px 20px;
  font-size: 14.5px;
}

/* ───── Hero ───── */
.hero {
  position: relative;
  background:
    linear-gradient(96deg, rgba(26, 18, 6, .87) 8%, rgba(26, 18, 6, .62) 38%, rgba(26, 18, 6, .12) 68%, rgba(26, 18, 6, .05) 100%),
    url("images/hero-3762372.jpg") center 22% / cover no-repeat;
  color: var(--shell);
  overflow: hidden;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  min-height: min(86vh, 820px);
  padding-top: 84px;
  padding-bottom: 96px;
}

.hero-copy {
  max-width: 560px;
}

.hero-copy h1 {
  font-size: clamp(42px, 6.2vw, 76px);
  font-weight: 800;
  letter-spacing: -.025em;
  line-height: 1.02;
}

.hero-copy h1 em {
  font-style: normal;
  color: var(--marigold);
}

.hero-copy .lede {
  margin-top: 22px;
  font-size: 18.5px;
  line-height: 1.65;
  color: rgba(255, 253, 248, .88);
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

/* floating tip bubbles over the photo */
.hero-thread {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 340px;
  flex-shrink: 0;
}

.hero-thread .stamp {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 253, 248, .75);
  margin-bottom: 6px;
  display: block;
}

.hero-thread .bub {
  background: var(--shell);
  color: var(--ink);
  border-radius: var(--r-recv);
  padding: 16px 19px;
  font-size: 15px;
  line-height: 1.55;
  box-shadow: var(--shadow-md);
}

.hero-thread .bub b {
  font-weight: 700;
}

.hero-thread .tip:nth-child(2) {
  transform: translateX(26px);
}

.hero-thread .tip.sent {
  align-self: flex-end;
}

.hero-thread .tip.sent .bub {
  background: var(--marigold);
  border-radius: var(--r-sent);
  font-weight: 700;
}

.hero-thread .tip.sent .stamp {
  text-align: right;
}

@keyframes bub-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-thread .tip {
  animation: bub-in .55s cubic-bezier(.22, .8, .3, 1) backwards;
}

.hero-thread .tip:nth-child(1) { animation-delay: .25s; }
.hero-thread .tip:nth-child(2) { animation-delay: .55s; transform: translateX(26px); }
.hero-thread .tip:nth-child(3) { animation-delay: .9s; }

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-thread .tip {
    animation: none;
  }
  .btn:hover {
    transform: none;
  }
}

/* ───── Why band ───── */
.why {
  background: var(--ink);
  color: var(--shell);
  padding: 104px 0;
}

.why-inner {
  max-width: 880px;
}

.why h2 {
  font-size: clamp(32px, 4.6vw, 56px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.08;
}

.why h2 em {
  font-style: normal;
  color: var(--marigold);
}

.why p {
  margin-top: 26px;
  font-size: 18.5px;
  line-height: 1.7;
  color: rgba(255, 253, 248, .8);
  max-width: 720px;
}

.why p b {
  color: var(--shell);
  font-weight: 700;
}

/* ───── Weekly insights ───── */
.insights {
  padding: 104px 0 112px;
}

.insights > .wrap > h2 {
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -.02em;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.insight-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px 56px;
  margin-top: 68px;
}

.insight {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.insight .ico {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 16px 16px 16px 4px;
  background: var(--sand);
  display: grid;
  place-items: center;
  color: var(--honey);
}

.insight .ico svg {
  width: 26px;
  height: 26px;
}

.insight h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.insight p {
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.insights-cta {
  text-align: center;
  margin-top: 56px;
}

/* ───── Articles ───── */
.articles {
  background: var(--sand);
  padding: 100px 0 110px;
}

.articles .top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
}

.articles .top h2 {
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -.02em;
}

.articles .top p {
  margin-top: 10px;
  color: var(--ink-soft);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.article {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--r-recv);
  overflow: hidden;
  border: 1px solid rgba(230, 220, 196, .7);
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease;
}

.article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.article .thumb {
  aspect-ratio: 3 / 2;
  overflow: hidden;
}

.article .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.article:hover .thumb img {
  transform: scale(1.045);
}

.article .body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
  padding: 24px 24px 26px;
}

.article .meta {
  color: var(--honey);
}

.article h3 {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
}

.article .body > p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  flex: 1;
}

.article .more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
}

.article .more svg {
  width: 17px;
  height: 17px;
  transition: transform .18s ease;
}

.article:hover .more svg {
  transform: translateX(4px);
}

/* ───── Subscribe band (the real form, on every page) ───── */
.subscribe {
  background: var(--marigold);
  padding: 92px 0;
}

.subscribe-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
}

.subscribe h2 {
  font-size: clamp(30px, 4.2vw, 50px);
  font-weight: 800;
  letter-spacing: -.022em;
  line-height: 1.05;
}

.subscribe .sub-note {
  margin-top: 16px;
  font-size: 16.5px;
  color: rgba(37, 28, 15, .78);
  max-width: 420px;
}

.sub-form .field-row {
  display: flex;
  gap: 12px;
}

.sub-form input[type="tel"] {
  flex: 1;
  min-width: 0;
  font-family: var(--sans);
  font-size: 16.5px;
  padding: 15px 19px;
  color: var(--ink);
  background: var(--shell);
  border: 2px solid transparent;
  border-radius: var(--r-recv);
}

.sub-form input[type="tel"]:focus {
  outline: none;
  border-color: var(--ink);
}

.sub-form input::placeholder {
  color: var(--ink-faint);
}

.err {
  display: none;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--error);
}

.err svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

.sub-disclaimers {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.sub-disclaimers label {
  display: flex;
  gap: 11px;
  font-size: 12.5px;
  line-height: 1.55;
  color: rgba(37, 28, 15, .75);
  cursor: pointer;
}

.sub-disclaimers input[type="checkbox"] {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--ink);
}

.sub-disclaimers a {
  font-weight: 700;
  text-decoration: underline;
  color: var(--ink);
}

/* ───── Footer ───── */
.foot {
  background: var(--ink);
  color: rgba(255, 253, 248, .82);
  padding: 56px 0 40px;
}

.foot .brand .word {
  color: var(--shell);
}

.foot .brand .word b {
  color: var(--marigold);
}

.foot-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 253, 248, .14);
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 26px;
  font-size: 14.5px;
}

.foot-links a {
  transition: color .15s ease;
}

.foot-links a:hover {
  color: var(--marigold);
}

.copyright {
  margin-top: 26px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .06em;
  color: rgba(255, 253, 248, .45);
}

/* ───── Page head (articles + legal) ───── */
.page-head {
  background: var(--sand);
  padding: 64px 0 56px;
}

.breadcrumb {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: .05em;
  color: var(--ink-faint);
  margin-bottom: 18px;
}

.breadcrumb a {
  color: var(--honey);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb .sep {
  margin: 0 9px;
}

.page-head h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -.022em;
  max-width: 820px;
}

/* ───── Prose ───── */
.prose-wrap {
  padding: 64px 0 96px;
}

.prose {
  max-width: var(--prosew);
  margin: 0 auto;
  padding: 0 26px;
}

.prose p {
  margin-bottom: 20px;
  color: var(--ink-soft);
}

.prose .intro,
.prose .lead-block {
  font-size: 19.5px;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 30px;
}

.prose h3 {
  font-size: 23px;
  font-weight: 700;
  margin: 40px 0 14px;
}

.prose h3 .num {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 500;
  color: var(--honey);
  margin-right: 12px;
}

.prose ul,
.prose ol {
  margin: 0 0 22px 22px;
  color: var(--ink-soft);
}

.prose li {
  margin-bottom: 10px;
}

.prose li strong {
  color: var(--ink);
}

.prose a {
  color: var(--honey);
  font-weight: 600;
  text-decoration: underline;
}

.prose .caps {
  font-size: 14.5px;
}

.prose .addr {
  white-space: pre-line;
  font-family: var(--mono);
  font-size: 14.5px;
  background: var(--sand);
  border-radius: var(--r-recv);
  padding: 18px 22px;
  margin-bottom: 22px;
  color: var(--ink);
}

.article-figure {
  margin-bottom: 34px;
}

.article-figure img {
  width: 100%;
  border-radius: var(--r-recv);
}

/* closing CTA inside articles — a sent bubble */
.article-cta {
  margin-top: 44px;
  background: var(--marigold);
  border-radius: var(--r-sent);
  padding: 34px 36px;
  box-shadow: 0 22px 44px -20px rgba(168, 111, 11, .55);
}

.article-cta h3 {
  margin: 0 0 18px;
  color: var(--ink);
}

.article-cta a {
  text-decoration: none;
  color: #fff;
}

/* ───── Auth pages ───── */
.auth-wrap {
  padding: 72px 0 96px;
  background:
    radial-gradient(60% 46% at 85% 0%, rgba(241, 175, 43, .16), transparent 70%),
    var(--shell);
}

.auth-card {
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-recv);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.auth-card.signup {
  max-width: 620px;
}

.auth-banner {
  background: var(--ink);
  color: var(--shell);
  padding: 34px 38px 30px;
}

.auth-banner .meta {
  color: var(--marigold);
  display: block;
  margin-bottom: 10px;
}

.auth-banner h1 {
  font-size: 32px;
  font-weight: 800;
}

.auth-banner p {
  margin-top: 8px;
  font-size: 15.5px;
  color: rgba(255, 253, 248, .75);
}

.auth-body {
  padding: 34px 38px 38px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.auth-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.auth-field label {
  display: block;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 7px;
}

.auth-field input {
  width: 100%;
  font-family: var(--sans);
  font-size: 16px;
  padding: 13px 16px;
  color: var(--ink);
  background: var(--shell);
  border: 1.5px solid var(--line);
  border-radius: 14px 14px 14px 4px;
  transition: border-color .15s ease;
}

.auth-field input:focus {
  outline: none;
  border-color: var(--marigold);
}

.auth-consent {
  font-size: 13.5px;
  color: var(--ink-soft);
}

.auth-consent a {
  color: var(--honey);
  font-weight: 600;
  text-decoration: underline;
}

.auth-submit {
  width: 100%;
}

.auth-switch {
  text-align: center;
  font-size: 14.5px;
  color: var(--ink-soft);
}

.auth-switch a {
  color: var(--honey);
  font-weight: 700;
  margin-left: 7px;
}

/* modal */
.auth-modal {
  border: none;
  border-radius: var(--r-recv);
  max-width: 560px;
  width: calc(100vw - 40px);
  padding: 0;
  box-shadow: var(--shadow-md);
}

.auth-modal::backdrop {
  background: rgba(37, 28, 15, .55);
  backdrop-filter: blur(3px);
}

.modal-inner {
  padding: 34px 36px;
}

.modal-inner h2 {
  font-size: 26px;
  font-weight: 800;
}

.modal-sub {
  margin: 8px 0 22px;
  color: var(--ink-soft);
  font-size: 15.5px;
}

.modal-terms {
  display: flex;
  gap: 11px;
  margin-top: 18px;
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  cursor: pointer;
}

.modal-terms input[type="checkbox"] {
  flex-shrink: 0;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--honey);
}

.modal-terms a {
  color: var(--honey);
  font-weight: 600;
  text-decoration: underline;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 26px;
}

/* ───── Status pages (thank you / unsubscribe) ───── */
.unsub-wrap {
  padding: 80px 0 104px;
  background:
    radial-gradient(60% 46% at 15% 0%, rgba(241, 175, 43, .16), transparent 70%),
    var(--shell);
}

.unsub-card {
  max-width: 560px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-recv);
  padding: 46px 44px;
  box-shadow: var(--shadow-md);
}

.unsub-card .icon {
  width: 62px;
  height: 62px;
  border-radius: 18px 18px 18px 5px;
  background: var(--marigold);
  color: var(--ink);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}

.unsub-card .icon svg {
  width: 30px;
  height: 30px;
}

.unsub-card h1 {
  font-size: 30px;
  font-weight: 800;
}

.unsub-card .intro {
  margin-top: 10px;
  font-size: 16.5px;
  color: var(--ink-soft);
}

.benefit-list {
  list-style: none;
  margin: 26px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefit-list li {
  position: relative;
  padding-left: 30px;
  font-size: 15.5px;
  color: var(--ink-soft);
}

.benefit-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 17px;
  height: 17px;
  border-radius: 6px 6px 6px 2px;
  background: var(--marigold);
}

.benefit-list li::after {
  content: "";
  position: absolute;
  left: 4.5px;
  top: 8.5px;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(-45deg);
}

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

.unsub-note a {
  color: var(--honey);
  font-weight: 700;
  text-decoration: underline;
}

.unsub-form {
  margin: 26px 0 22px;
}

.unsub-form label {
  display: block;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 7px;
}

.unsub-form input {
  width: 100%;
  font-family: var(--sans);
  font-size: 16px;
  padding: 13px 16px;
  color: var(--ink);
  background: var(--shell);
  border: 1.5px solid var(--line);
  border-radius: 14px 14px 14px 4px;
}

.unsub-form input:focus {
  outline: none;
  border-color: var(--marigold);
}

.unsub-form .btn {
  margin-top: 16px;
  width: 100%;
}

/* ───── Home (dashboard) ───── */
.home-hero {
  background: var(--ink);
  color: var(--shell);
  padding: 84px 0;
}

.home-hero .meta {
  color: var(--marigold);
  display: block;
  margin-bottom: 12px;
}

.home-hero h1 {
  font-size: clamp(34px, 5vw, 54px);
  font-weight: 800;
  letter-spacing: -.022em;
}

.home-hero h1 em {
  font-style: normal;
  color: var(--marigold);
}

.home-hero .lede {
  margin-top: 16px;
  font-size: 18px;
  color: rgba(255, 253, 248, .8);
  max-width: 620px;
}

/* ───── Responsive ───── */
@media (max-width: 1020px) {
  .hero-thread {
    width: 300px;
  }
}

@media (max-width: 880px) {
  .nav-links {
    display: none;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(26, 18, 6, .88) 0%, rgba(26, 18, 6, .68) 55%, rgba(26, 18, 6, .5) 100%),
      url("images/hero-3762372.jpg") 60% 20% / cover no-repeat;
  }

  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 44px;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .hero-thread {
    width: 100%;
    max-width: 420px;
  }

  .subscribe-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .article-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .insight-list {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 48px;
  }

  .why,
  .insights,
  .articles {
    padding-top: 72px;
    padding-bottom: 78px;
  }
}

@media (max-width: 560px) {
  .sub-form .field-row {
    flex-direction: column;
  }

  .auth-row {
    grid-template-columns: 1fr;
  }

  .auth-banner,
  .auth-body {
    padding-left: 26px;
    padding-right: 26px;
  }

  .unsub-card {
    padding: 34px 26px;
  }

  .nav-cta .btn-ghost {
    display: none;
  }
}
