/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --ac: #3b5bf5;
  --fh: 'Hanken Grotesk';
  --fb: 'Hanken Grotesk';
  --fm: 'JetBrains Mono';
  --fhw: 800;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: #f1efe6;
  color: #1b1b18;
  font-family: var(--fb), system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; }
summary { list-style: none; cursor: pointer; }
summary::-webkit-details-marker { display: none; }
::selection { background: var(--ac); color: #fff; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes ioRise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
@keyframes ioPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(217,90,42,.42); }
  70%     { box-shadow: 0 0 0 7px rgba(217,90,42,0); }
}
@keyframes ioBlink {
  0%,100% { opacity: 1; }
  50%     { opacity: .25; }
}

/* ============================================================
   SHARED LAYOUT
   ============================================================ */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.container--narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Eyebrow label used across multiple sections */
.eyebrow {
  font-family: var(--fm);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ac);
  margin-bottom: 14px;
}

/* Shared section heading style */
.section-heading {
  font-family: var(--fh);
  font-weight: var(--fhw);
  font-size: clamp(30px, 3.8vw, 46px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0;
}

/* ============================================================
   DATA-PLUS ACCORDION TOGGLE
   ============================================================ */
[data-plus] { transition: transform .28s cubic-bezier(.2,.7,.2,1); }
details[open] [data-plus] { transform: rotate(135deg); }

/* ============================================================
   PAGE WRAPPER
   ============================================================ */
.page-wrapper {
  overflow-x: hidden;
  position: relative;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: rgba(241,239,230,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,24,18,0.10);
  transition: background .3s ease, border-color .3s ease;
}

.nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: #1b1b18;
}

.nav__logo-name {
  font-family: var(--fh);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav__link {
  text-decoration: none;
  color: #4a4a43;
  font-size: 15px;
  font-weight: 500;
}

.nav__cta {
  text-decoration: none;
  background: var(--ac);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 11px 18px;
  border-radius: 10px;
  transition: filter .2s, transform .2s;
}
.nav__cta:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 138px 0 92px;
  background: radial-gradient(1100px 560px at 72% -8%, rgba(59,91,245,.11), transparent 58%);
}

.hero__grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: minmax(0,1.02fr) minmax(0,0.98fr);
  gap: 56px;
  align-items: center;
  position: relative;
}

.hero__headline {
  font-family: var(--fh);
  font-weight: var(--fhw);
  font-size: clamp(40px,5.6vw,72px);
  line-height: 1.02;
  letter-spacing: -.03em;
  margin: 0 0 24px;
}

.hero__subhead {
  font-size: clamp(17px,1.5vw,20px);
  line-height: 1.55;
  color: #57574f;
  max-width: 540px;
  margin: 0 0 34px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

/* Primary CTA button */
.btn-primary {
  text-decoration: none;
  background: var(--ac);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  padding: 15px 24px;
  border-radius: 12px;
  transition: filter .2s, transform .2s;
}
.btn-primary:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
}

/* Outline CTA button */
.btn-outline {
  text-decoration: none;
  color: #1b1b18;
  font-weight: 600;
  font-size: 16px;
  padding: 15px 22px;
  border-radius: 12px;
  border: 1px solid rgba(26,24,18,.18);
  transition: background .2s, border-color .2s;
}
.btn-outline:hover {
  background: rgba(26,24,18,.06);
  border-color: rgba(26,24,18,.34);
}

/* ============================================================
   EMAIL CLIENT MOCK
   ============================================================ */
.email-mock {
  scroll-margin-top: 96px;
}

.email-mock__frame {
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(26,24,18,.12);
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.7), 0 8px 24px -12px rgba(0,0,0,.5);
}

.email-mock__titlebar {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  background: #f4f2ea;
  border-bottom: 1px solid #e1ded0;
}

.email-mock__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.email-mock__dot--red   { background: #ec6a5e; }
.email-mock__dot--yellow { background: #f4bf4f; }
.email-mock__dot--green  { background: #61c554; }

.email-mock__title {
  flex: 1;
  text-align: center;
  font-family: var(--fm);
  font-size: 12px;
  color: #8a8c7d;
  letter-spacing: .02em;
}

.email-mock__header {
  padding: 20px 22px 8px;
}

.email-mock__sender-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.email-mock__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #eaeefe;
  color: var(--ac);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--fh);
  font-weight: 700;
  font-size: 15px;
  flex: none;
}

.email-mock__sender-meta {
  min-width: 0;
  flex: 1;
}

.email-mock__sender-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.email-mock__sender-name {
  font-weight: 700;
  color: #20231b;
  font-size: 14.5px;
}

.email-mock__timestamp {
  font-family: var(--fm);
  font-size: 11.5px;
  color: #9a9c8c;
  white-space: nowrap;
}

.email-mock__sender-addr {
  font-size: 13px;
  color: #80836f;
}

.email-mock__subject {
  font-family: var(--fh);
  font-weight: 700;
  color: #20231b;
  font-size: 17px;
  letter-spacing: -.01em;
  margin-bottom: 5px;
}

.email-mock__body {
  font-size: 13.5px;
  line-height: 1.5;
  color: #5f6253;
  margin: 0 0 14px;
}

.email-mock__body-strong {
  color: #20231b;
}

/* ============================================================
   BRIEF TABLE
   ============================================================ */
.brief-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.brief-table thead tr {
  text-align: left;
  color: #9a9c8c;
  font-family: var(--fm);
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.brief-table th {
  font-weight: 500;
  border-top: 1px solid #e6e3d6;
  border-bottom: 1px solid #e6e3d6;
  padding: 9px 8px;
}

.brief-table th:first-child { padding: 9px 22px; }
.brief-table th:last-child  { padding: 9px 22px; text-align: right; }
.brief-table th.col-right   { text-align: right; }

.brief-table tbody { color: #20231b; }

.brief-table tbody tr { border-bottom: 1px solid #efece1; }

.brief-table td {
  padding: 11px 8px;
}

.brief-table td:first-child { padding: 11px 22px; font-weight: 500; }
.brief-table td:last-child  { padding: 11px 22px; text-align: right; }
.brief-table td.col-right   { text-align: right; }
.brief-table td.col-mono    { font-family: var(--fm); }

/* Days-left cell color variants */
.brief-table td.days--urgent { font-family: var(--fm); font-weight: 600; color: #c2410c; }
.brief-table td.days--warn   { font-family: var(--fm); font-weight: 600; color: #9a6a00; }
.brief-table td.days--ok     { font-family: var(--fm); font-weight: 600; color: #157a4b; }

/* Status badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--fm);
  font-size: 10.5px;
  letter-spacing: .04em;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 6px;
}

.badge__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.badge--urgent {
  color: #c2410c;
  background: #fdeee6;
  border: 1px solid #f6c9b4;
}
.badge--urgent .badge__dot { background: #d95a2a; }
.badge--urgent.badge--pulse { animation: ioPulse 2.8s infinite; }

.badge--warn {
  color: #9a6a00;
  background: #fbf4dd;
  border: 1px solid #f0e2a8;
}
.badge--warn .badge__dot { background: #c79a1c; }

.badge--ok {
  color: #157a4b;
  background: #e6f7ee;
  border: 1px solid #bfe9d2;
}
.badge--ok .badge__dot { background: #1f9c5f; }

/* Brief table footer */
.brief-table__footer {
  padding: 13px 22px;
  border-top: 1px solid #e6e3d6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.brief-table__footer-note {
  font-size: 12.5px;
  color: #6f7261;
}

.brief-table__footer-note strong { color: #20231b; }

.brief-table__footer-link {
  font-family: var(--fm);
  font-size: 11px;
  color: #9a9c8c;
}

/* ============================================================
   REPLACES SECTION
   ============================================================ */
.replaces {
  padding: 30px 0 64px;
}

.replaces__label {
  font-family: var(--fm);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #97978c;
}

.replaces__row {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}

.replaces__tools-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}

.replaces__tools-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  background: rgba(217,90,42,.07);
  border: 1px solid rgba(217,90,42,.2);
  border-radius: 14px;
  padding: 12px 20px;
}

.replaces__tool-name {
  font-size: 14.5px;
  font-weight: 500;
  color: #b05a30;
  text-decoration: line-through;
  text-decoration-color: rgba(217,90,42,.6);
}

.replaces__sep {
  color: #d9926e;
  font-size: 11px;
}

.replaces__arrow {
  flex-shrink: 0;
  color: #3b5bf5;
  opacity: .7;
}

.replaces__result {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: var(--ac);
  padding: 12px 24px;
  border-radius: 9999px;
  letter-spacing: -.01em;
  box-shadow: 0 4px 16px rgba(59,91,245,.35);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
#how {
  padding: 100px 0;
  background: #F03C00;
  scroll-margin-top: 80px;
}

#how h2 {
  font-family: var(--fh);
  font-weight: 800;
  font-size: clamp(36px,5.5vw,68px);
  line-height: 1;
  letter-spacing: -.03em;
  margin: 0 0 20px;
  color: #fff;
  text-transform: uppercase;
}

.how__intro {
  text-align: center;
  margin-bottom: 72px;
}

#how .section-sub {
  font-size: clamp(15px,1.3vw,17px);
  line-height: 1.6;
  color: rgba(255,255,255,.65);
  margin: 0 auto;
  max-width: 480px;
}

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

.step-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  padding: 36px 32px;
  backdrop-filter: blur(8px);
}

.step-num {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 14px;
}

#how h3 {
  font-family: var(--fh);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.01em;
  margin: 0 0 12px;
  color: #fff;
}

.step-card p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,.65);
  margin: 0;
}

/* ============================================================
   WHO IT'S FOR
   ============================================================ */
.persona {
  padding: 90px 0;
  border-top: 1px solid rgba(26,24,18,.07);
}

.persona__intro {
  max-width: 640px;
  margin-bottom: 50px;
}

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

.persona-card {
  background: #ffffff;
  border: 1px solid rgba(26,24,18,.08);
  border-radius: 18px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.persona-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.persona-card__name {
  font-family: var(--fh);
  font-weight: 700;
  font-size: 20px;
}

.persona-card__tier {
  font-family: var(--fm);
  font-size: 11.5px;
  color: #6e6e64;
  border: 1px solid rgba(26,24,18,.12);
  padding: 4px 9px;
  border-radius: 7px;
}

.persona-card__role {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ac);
  margin-bottom: 12px;
}

.persona-card__desc {
  font-size: 14.5px;
  line-height: 1.55;
  color: #6e6e64;
  margin: 0 0 20px;
  flex: 1;
}

.persona-card__trigger {
  font-size: 13.5px;
  color: #c2410c;
  border-top: 1px solid rgba(26,24,18,.08);
  padding-top: 14px;
}

.persona-card__trigger-label { color: #97978c; }

/* ============================================================
   BEFORE / AFTER (COMPARE)
   ============================================================ */
.compare {
  padding: 90px 0;
  background: #181814;
}

.compare__intro {
  text-align: center;
  margin-bottom: 64px;
}

.compare__heading {
  font-family: var(--fh);
  font-weight: 800;
  font-size: clamp(36px,5.5vw,72px);
  line-height: 1;
  letter-spacing: -.03em;
  margin: 0;
  color: #fff;
  text-transform: uppercase;
}

.compare__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.compare-before {
  padding: 0 48px 0 0;
  border-right: 1px solid rgba(255,255,255,.08);
}

.compare-after {
  padding: 0 0 0 48px;
}

.compare__badge-wrap { margin-bottom: 36px; }

.compare__badge {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 9999px;
}

.compare__badge--before {
  color: #57574f;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
}

.compare__badge--after {
  color: #fff;
  background: var(--ac);
}

.compare__list {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.compare__item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.compare__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.compare__dot--before { background: #d95a2a; }
.compare__dot--after  { background: var(--ac); }

.compare__time {
  font-family: var(--fh);
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}

.compare__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: #6e6e64;
}

.compare__desc--alert  { color: #c2410c; }
.compare__desc--muted  { color: #a0a094; }
.compare__desc--bright { color: #e8e8e0; font-weight: 500; }

.compare__strong { color: #e8e8e0; font-weight: 500; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: 90px 0;
  border-top: 1px solid rgba(26,24,18,.07);
  scroll-margin-top: 80px;
}

.pricing__intro {
  max-width: 640px;
  margin-bottom: 50px;
}

.pricing__sub {
  font-size: 16px;
  color: #6e6e64;
  margin: 12px 0 0;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}

.pricing-card {
  background: #ffffff;
  border: 1px solid rgba(26,24,18,.08);
  border-radius: 20px;
  padding: 32px;
  transition: border-color .25s, transform .25s;
}

.pricing-card:hover {
  border-color: rgba(26,24,18,.2);
  transform: translateY(-3px);
}

.pricing-card--featured {
  position: relative;
  background: linear-gradient(180deg, rgba(59,91,245,.09), rgba(255,255,255,.55));
  border: 1px solid var(--ac);
  box-shadow: 0 30px 70px -36px rgba(59,91,245,.4);
  /* Override hover for featured card */
  transition: none;
}
.pricing-card--featured:hover {
  border-color: var(--ac);
  transform: none;
}

.pricing-card__popular {
  position: absolute;
  top: -12px;
  left: 32px;
  font-family: var(--fm);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
  background: var(--ac);
  padding: 5px 11px;
  border-radius: 7px;
}

.pricing-card__name {
  font-family: var(--fh);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 6px;
}

.pricing-card__skus {
  font-size: 13.5px;
  color: #6e6e64;
  margin-bottom: 20px;
}

.pricing-card__price-row {
  margin-bottom: 24px;
  padding: 14px 0;
  border-top: 1px solid rgba(26,24,18,.07);
  border-bottom: 1px solid rgba(26,24,18,.07);
}

.pricing-card--featured .pricing-card__price-row {
  border-top-color: rgba(59,91,245,.15);
  border-bottom-color: rgba(59,91,245,.15);
}

.pricing-card__price-note {
  font-size: 14px;
  color: #97978c;
}

.pricing-card--featured .pricing-card__price-note {
  color: #6e6e64;
}

.pricing-card__cta {
  display: block;
  text-align: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 13px;
  border-radius: 11px;
  margin-bottom: 26px;
}

.pricing-card__cta--outline {
  color: #1b1b18;
  border: 1px solid rgba(26,24,18,.18);
  transition: background .2s;
}
.pricing-card__cta--outline:hover { background: rgba(26,24,18,.06); }

.pricing-card__cta--solid {
  color: #fff;
  background: var(--ac);
  transition: filter .2s;
}
.pricing-card__cta--solid:hover { filter: brightness(1.07); }

.pricing-card__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.pricing-card__feature {
  display: flex;
  gap: 11px;
  font-size: 14.5px;
  color: #57574f;
}

.pricing-card__feature--featured { color: #33332e; }

.pricing-card__check {
  color: var(--ac);
  flex: none;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 90px 0;
  border-top: 1px solid rgba(26,24,18,.07);
  scroll-margin-top: 80px;
}

.faq__intro { margin-bottom: 44px; }

.faq__list { display: flex; flex-direction: column; }

.faq__item { border-top: 1px solid rgba(26,24,18,.1); }

.faq__item:last-child { border-bottom: 1px solid rgba(26,24,18,.1); }

.faq__summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 2px;
  font-family: var(--fh);
  font-weight: 600;
  font-size: 18px;
  color: #1b1b18;
}

.faq__toggle {
  color: var(--ac);
  font-size: 22px;
  font-weight: 400;
  flex: none;
  line-height: 1;
}

.faq__answer {
  margin: 0 2px 22px;
  font-size: 15.5px;
  line-height: 1.6;
  color: #6e6e64;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-section {
  padding: 30px 0 100px;
  scroll-margin-top: 80px;
}

.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(59,91,245,.24);
  background:
    radial-gradient(900px 460px at 80% -20%, rgba(59,91,245,.16), transparent 60%),
    #ffffff;
  padding: clamp(40px,5vw,72px);
}

.cta-box__eyebrow {
  font-family: var(--fm);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ac);
  margin-bottom: 18px;
}

.cta-box__heading {
  font-family: var(--fh);
  font-weight: var(--fhw);
  font-size: clamp(34px,4.6vw,58px);
  line-height: 1.03;
  letter-spacing: -.03em;
  margin: 0 0 18px;
  max-width: 680px;
}

.cta-box__subhead {
  font-size: clamp(16px,1.4vw,19px);
  line-height: 1.55;
  color: #57574f;
  max-width: 560px;
  margin: 0 0 32px;
}

.cta-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 520px;
}

.cta-input {
  flex: 1;
  min-width: 220px;
  background: rgba(14,17,11,.6);
  border: 1px solid rgba(26,24,18,.16);
  border-radius: 12px;
  padding: 15px 18px;
  color: #1b1b18;
  font-size: 15px;
  font-family: var(--fb);
  outline: none;
  transition: border-color .2s;
}
.cta-input:focus { border-color: var(--ac); }

.cta-submit {
  background: var(--ac);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  font-family: var(--fb);
  padding: 15px 26px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: filter .2s, transform .2s;
}
.cta-submit:hover {
  filter: brightness(1.07);
  transform: translateY(-1px);
}

.cta-box__fine {
  font-family: var(--fm);
  font-size: 12.5px;
  letter-spacing: .04em;
  color: #97978c;
  margin: 18px 0 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid rgba(26,24,18,.08);
  padding: 56px 0 40px;
}

.footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer__brand { max-width: 280px; }

.footer__logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: #1b1b18;
  margin-bottom: 14px;
}

.footer__logo-name {
  font-family: var(--fh);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -.02em;
}

.footer__tagline {
  font-size: 14px;
  line-height: 1.5;
  color: #97978c;
  margin: 0;
}

.footer__nav {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.footer__col { display: flex; flex-direction: column; gap: 12px; }

.footer__col-heading {
  font-family: var(--fm);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #a0a094;
  margin-bottom: 2px;
}

.footer__link {
  text-decoration: none;
  color: #6e6e64;
  font-size: 14.5px;
}

.footer__bottom {
  max-width: 1180px;
  margin: 36px auto 0;
  padding: 0 28px;
}

.footer__copy {
  border-top: 1px solid rgba(26,24,18,.08);
  padding-top: 22px;
  font-family: var(--fm);
  font-size: 12px;
  color: #a0a094;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  [data-hero-grid] {
    grid-template-columns: 1fr !important;
    max-width: 640px !important;
  }

  .how__grid,
  .persona__grid,
  .pricing__grid {
    grid-template-columns: 1fr !important;
  }

  .compare__grid {
    grid-template-columns: 1fr !important;
  }

  .compare-before {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 0 0 48px 0;
  }

  .compare-after {
    padding: 48px 0 0 0;
  }

  [data-navlinks] a:not(:last-child) { display: none; }
}

@media (max-width: 600px) {
  [data-hero-grid] { gap: 36px !important; }
}
