/* ==========================================================================
   Cubeduck — site stylesheet
   Rebuilt from the design mockups. Desktop (>=1280px) reproduces the mockup
   pixel for pixel; below that the same layout reflows instead of being
   scaled down by a transform, which is what the original export did.
   ========================================================================== */

/* --- Fonts ---------------------------------------------------------------- */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/assets/fonts/inter-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url(/assets/fonts/inter-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --- Tokens --------------------------------------------------------------- */

:root {
  --green: #0c8c5e;
  --green-text: #0b8459;
  --indigo: #5b58e0;
  --indigo-hi: #6d6aea;
  --ink: #08090a;
  --body: #000000;
  --white: #ffffff;
  --mist: #f2f2f2;
  --cloud: #dddddd;
  --paper: #fafafa;
  --teal: #0e6f7a;
  --night: #0b1416;

  --shadow-hair: rgba(255, 255, 255, 0.05) 0 2px 4px 0;
  --shadow-ink: rgba(8, 9, 10, 0.03) 0 2px 4px 0;
  --shadow-card: rgba(4, 40, 58, 0.2) 0 24px 64px 0;

  --wrap: 1280px;
  --wrap-wide: 1600px;
  --gutter: 96px;
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  --font: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
}

/* --- Reset ---------------------------------------------------------------- */

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--white);
  color: var(--body);
  font-family: var(--font);
  font-feature-settings: 'ss01' on, 'cv11' on;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: var(--green-text);
  text-decoration: none;
  transition: color .18s ease, background-color .18s ease, opacity .18s ease,
    border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
a:hover { color: var(--ink); }

h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
ul, ol { margin: 0; }

button { font: inherit; }

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

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
}
.skip-link:focus { top: 16px; color: var(--white); }

/* --- Layout helpers ------------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: calc(var(--wrap) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--wide { max-width: calc(var(--wrap-wide) + var(--gutter) * 2); }
.wrap--post { max-width: calc(1500px + var(--gutter) * 2); }
.wrap--flush { padding-inline: 0; }

/* --- Announcement bar ----------------------------------------------------- */

.announce {
  position: relative;
  z-index: 6;
  min-height: 56px;
  background: var(--indigo);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 24px;
  text-align: center;
  flex-wrap: wrap;
}
.announce p {
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}
.announce a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .6);
  padding-bottom: 1px;
}
.announce a:hover { color: var(--ink); border-bottom-color: var(--ink); }

/* --- Header --------------------------------------------------------------- */

.nav {
  position: relative;
  z-index: 5;
  height: 90px;
  display: flex;
  align-items: center;
  gap: 48px;
  padding-inline: var(--gutter);
}

.brand {
  display: flex;
  align-items: center;
  flex: none;
}
/* The logo is a fixed-aspect lockup, so only its height is ever set. */
.brand__logo {
  display: block;
  height: 34px;
  width: auto;
}

.nav > nav { margin-right: auto; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: 24px;
  list-style: none;
  padding: 0;
}
.nav__links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}
.nav__links a[aria-current='page'] { color: var(--green-text); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: none;
}

.nav__toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--cloud);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--ink);
}

/* Header sitting on the dark hero photo */
.nav--onphoto .nav__links a,
.nav--onphoto .nav__toggle { color: var(--white); }
.nav--onphoto .nav__toggle { border-color: rgba(255, 255, 255, .45); }
.nav--onphoto .nav__links a[aria-current='page'] { color: var(--white); }

/* --- Buttons -------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-pill);
  font-weight: 500;
  white-space: nowrap;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
}
.btn--sm { font-size: 15px; padding: 10px 20px; }
.btn--md { font-size: 16px; padding: 14px 26px; }
.btn--lg { font-size: 17px; padding: 16px 28px; letter-spacing: -.17px; }

.btn--dark { background: var(--ink); color: var(--white); box-shadow: var(--shadow-ink); }
.btn--dark:hover { background: var(--body); color: var(--white); }

.btn--light { background: var(--white); color: var(--ink); box-shadow: var(--shadow-hair); }
.btn--light:hover { background: var(--mist); color: var(--ink); }

.btn--outline { background: var(--white); color: var(--ink); border-color: var(--cloud); }
.btn--outline:hover { background: var(--mist); color: var(--ink); }

.btn--mist { background: var(--mist); color: var(--ink); }
.btn--mist:hover { background: var(--cloud); color: var(--ink); }

.btn--indigo {
  background: linear-gradient(180deg, var(--indigo-hi) 0%, var(--indigo) 100%);
  color: var(--white);
  box-shadow: rgba(91, 88, 224, .45) 0 8px 22px 0, rgba(255, 255, 255, .35) 0 1px 0 0 inset;
}
.btn--indigo:hover {
  background: linear-gradient(180deg, #7b78f0 0%, #6b68e8 100%);
  color: var(--white);
}

.btn--ghostlight { color: var(--white); padding: 9px 16px; font-size: 15px; }
.btn--ghostlight:hover { background: rgba(255, 255, 255, .14); color: var(--white); }

.btn--ghostdark { color: var(--ink); padding: 9px 16px; font-size: 15px; }
.btn--ghostdark:hover { background: var(--mist); color: var(--ink); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 17px;
  font-weight: 500;
  color: var(--green-text);
}
.link-arrow--light { color: var(--white); }
.link-arrow--light:hover { color: var(--white); opacity: .8; }
.link-arrow svg { flex: none; }
.link-arrow:hover svg { transform: translateX(2px); }
.link-arrow svg { transition: transform .18s ease; }

/* --- Email capture pill --------------------------------------------------- */

.capture {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 620px;
  max-width: 100%;
  padding: 8px 8px 8px 24px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .35);
}
.capture--sm { width: 520px; gap: 10px; }
.capture--blur { background: rgba(255, 255, 255, .12); border-color: rgba(255, 255, 255, .32); backdrop-filter: blur(12px); }

.capture input[type='email'] {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -.17px;
  padding: 10px 0;
}
.capture input::placeholder { color: rgba(255, 255, 255, .78); }
.capture input:focus-visible { outline: none; }
.capture:focus-within { border-color: rgba(255, 255, 255, .7); }

.capture button {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  color: var(--ink);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -.17px;
  padding: 14px 28px;
  border: 0;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: var(--shadow-hair);
  cursor: pointer;
}
.capture button:hover { background: var(--mist); }
.capture--sm button { padding: 14px 26px; }

.capture-note {
  font-size: 14px;
  color: rgba(255, 255, 255, .75);
  margin-top: 4px;
}

/* --- Eyebrow / section headings ------------------------------------------- */

.eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .65px;
  text-transform: uppercase;
  color: var(--ink);
}
.eyebrow--green { color: var(--green-text); }
.eyebrow--light { color: var(--white); letter-spacing: 1px; font-size: 14px; }

.h1 {
  font-size: 72px;
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: -1.7px;
  text-wrap: balance;
}
.h2 {
  font-size: 56px;
  line-height: 1.1;
  font-weight: 600;
  letter-spacing: -1.4px;
  color: var(--ink);
  text-wrap: balance;
}
.h3 {
  font-size: 32px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -.8px;
  color: var(--ink);
}
.lede {
  font-size: 18px;
  line-height: 1.55;
  font-weight: 400;
  color: var(--body);
  text-wrap: pretty;
}

/* --- Home: hero ----------------------------------------------------------- */

/* The hero photograph is painted by an absolutely positioned layer on the page
   header, pushed to z-index -1 so it sits behind <main> without <main> having
   to be nested inside it. That keeps the landmark structure valid and means
   the band's height is set in one place rather than derived from the height of
   the announcement bar plus the navigation. */
.pagetop { position: relative; }
.pagetop__bg {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1080px;
  z-index: -1;
  overflow: hidden;
  background: var(--teal);
}
.pagetop__bg img { width: 100%; height: 100%; object-fit: cover; }
.pagetop__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 40, 58, .66) 0%, rgba(4, 40, 58, .55) 26%,
    rgba(4, 40, 58, .42) 44%, rgba(4, 40, 58, .12) 60%, rgba(4, 40, 58, 0) 74%);
}

.hero {
  position: relative;
  height: 414px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding-inline: var(--gutter);
  text-align: center;
}
.hero h1 { max-width: 1120px; color: var(--white); }
.hero p { max-width: 720px; font-size: 20px; line-height: 1.55; color: var(--white); }

/* --- Home: product screenshot -------------------------------------------- */

.appshot {
  position: relative;
  width: 1280px;
  max-width: calc(100% - 48px);
  height: 720px;
  margin-inline: auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-hair), var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.appshot__bar {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 28px;
  border-bottom: 1px solid var(--mist);
  flex: none;
}
.appshot__logo { display: block; height: 22px; width: auto; flex: none; }
.appshot__tabs { display: flex; align-items: center; gap: 22px; margin-left: 20px; }
.appshot__tabs span { font-size: 15px; font-weight: 400; color: var(--body); }
.appshot__tabs .is-active {
  font-weight: 500; color: var(--green-text);
  padding: 6px 0; border-bottom: 2px solid var(--green);
}
.appshot__tools { margin-left: auto; display: flex; align-items: center; gap: 12px; }
.appshot__search {
  font-size: 14px; color: var(--body);
  border: 1px solid var(--cloud); border-radius: var(--radius-sm); padding: 7px 14px;
}

.appshot__body {
  flex: 1;
  min-height: 0;
  display: grid;
  grid-template-columns: 236px minmax(0, 1fr) 320px;
}
.appshot__side { padding: 24px 20px; display: flex; flex-direction: column; gap: 18px; }
.appshot__side--l { border-right: 1px solid var(--mist); }
.appshot__side--r { border-left: 1px solid var(--mist); padding: 24px 22px; gap: 14px; }
.appshot__feed { padding: 24px 28px; display: flex; flex-direction: column; gap: 18px; min-width: 0; overflow: hidden; }

.appshot__profile { display: flex; flex-direction: column; gap: 10px; }
.appshot__photo { width: 56px; height: 56px; font-size: 19px; }
.appshot__avatar { width: 32px; height: 32px; font-size: 12px; }
.appshot__ava { width: 48px; height: 48px; font-size: 17px; flex: none; }
.appshot__ava--sm { width: 40px; height: 40px; font-size: 14px; }
.appshot__photo,
.appshot__avatar,
.appshot__ava {
  border-radius: var(--radius-sm);
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: .2px;
  flex: none;
}
.appshot__photo::after,
.appshot__avatar::after,
.appshot__ava::after { content: 'MH'; }
.appshot__who { display: flex; flex-direction: column; gap: 2px; }
.appshot__who b { font-size: 16px; font-weight: 600; letter-spacing: -.16px; color: var(--ink); }
.appshot__who span { font-size: 14px; line-height: 1.5; color: var(--body); }

.appshot__stats { border-top: 1px solid var(--mist); padding-top: 16px; display: flex; flex-direction: column; gap: 12px; }
.appshot__stat { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.appshot__stat dt { font-size: 14px; color: var(--body); }
.appshot__stat dd { margin: 0; font-size: 15px; font-weight: 600; color: var(--ink); }
.appshot__stat dd.is-green { color: var(--green-text); }

.appshot__note {
  margin-top: auto;
  border: 1px solid var(--mist);
  border-radius: var(--radius-lg);
  padding: 16px;
  display: flex; flex-direction: column; gap: 6px;
}
.appshot__note span { font-size: 15px; line-height: 1.5; color: var(--body); }

.appshot__post {
  border: 1px solid var(--mist);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  display: flex; flex-direction: column; gap: 14px;
  min-width: 0;
  box-shadow: var(--shadow-hair);
}
.appshot__post--quiet { padding: 20px 24px; gap: 12px; box-shadow: none; }
.appshot__posthead { display: flex; align-items: flex-start; gap: 12px; }
.appshot__posthead--mid { align-items: center; }
.appshot__meta { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.appshot__meta b { font-size: 16px; font-weight: 600; letter-spacing: -.16px; color: var(--ink); }
.appshot__meta span { font-size: 14px; color: var(--body); }
.appshot__meta .is-dim { font-size: 13px; opacity: .6; }
.appshot__tag {
  margin-left: auto; flex: none;
  font-size: 13px; font-weight: 500; letter-spacing: .65px; text-transform: uppercase;
  color: var(--green-text); background: rgba(12, 140, 94, .08);
  border-radius: var(--radius-sm); padding: 5px 10px;
}
.appshot__impr { margin-left: auto; font-size: 14px; font-weight: 500; color: var(--body); }
.appshot__post p { font-size: 16px; line-height: 1.5; letter-spacing: -.16px; color: var(--body); }
.appshot__react {
  border-top: 1px solid var(--mist); padding-top: 13px;
  display: flex; align-items: center; gap: 26px;
  font-size: 14px; color: var(--body);
}
.appshot__react b { font-weight: 500; }
.appshot__react .is-green { margin-left: auto; font-weight: 500; color: var(--green-text); }

.appshot__panel {
  border: 1px solid var(--mist);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  display: flex; flex-direction: column; gap: 6px;
}
.appshot__big { font-size: 40px; font-weight: 600; line-height: 1.15; letter-spacing: -.4px; color: var(--ink); }
.appshot__delta { font-size: 14px; font-weight: 500; color: var(--green-text); }
.appshot__spark { width: 100%; height: 76px; margin-top: 4px; }
.appshot__kpis { gap: 14px; }
.appshot__kpi { display: flex; flex-direction: column; gap: 1px; }
.appshot__kpi b { font-size: 24px; font-weight: 600; letter-spacing: -.24px; color: var(--ink); }
.appshot__kpi span { font-size: 14px; color: var(--body); }
.appshot__draft { gap: 8px; }
.appshot__draft q { font-size: 15px; line-height: 1.5; color: var(--body); quotes: '\201C' '\201D'; }
.appshot__draftbtns { display: flex; align-items: center; gap: 8px; margin-top: 4px; font-size: 14px; font-weight: 500; }
.appshot__draftbtns .is-solid { color: var(--white); background: var(--ink); border-radius: var(--radius-sm); padding: 8px 14px; }
.appshot__draftbtns .is-line { color: var(--body); border: 1px solid var(--cloud); border-radius: var(--radius-sm); padding: 8px 14px; }

/* --- Home: logo row ------------------------------------------------------- */

.logos { padding-top: 96px; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.logos__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  align-items: center;
}
.logos__item { display: flex; align-items: center; justify-content: center; gap: 8px; }
.logos__item span { font-size: 20px; font-weight: 600; letter-spacing: -.4px; color: var(--ink); }
.logos__glyph { width: 22px; height: 22px; background: var(--ink); flex: none; }
.logos__glyph--round { border-radius: var(--radius-sm); }
.logos__glyph--leaf { border-radius: 11px 4px 11px 4px; }
.logos__glyph--frame { border-radius: var(--radius-sm); background: none; border: 4px solid var(--ink); }
.logos__glyph--dot { border-radius: var(--radius-pill); }
.logos__glyph--tri { clip-path: polygon(50% 0, 100% 100%, 0 100%); }
.logos__glyph--ring { border-radius: var(--radius-pill); background: none; border: 4px solid var(--ink); }

/* --- Home: intro + feature cards ----------------------------------------- */

.intro { padding-top: 168px; display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.intro p { max-width: 720px; }

.features {
  padding-top: 103px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.feature {
  border: 1px solid var(--mist);
  border-radius: var(--radius-xl);
  padding: 36px 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--white);
  box-shadow: var(--shadow-hair);
}
.feature p { max-width: 460px; }
.feature__art { margin-top: 28px; }

.chipflow { display: flex; align-items: center; gap: 0; }
.chipflow__col { width: 176px; flex: none; display: flex; flex-direction: column; gap: 12px; }
.chip {
  border: 1px solid var(--mist);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex; flex-direction: column; gap: 8px;
  background: var(--white);
  box-shadow: var(--shadow-hair);
  animation: cdIn 8s ease-out infinite;
}
.chip:nth-child(1) { animation-delay: .2s; }
.chip:nth-child(2) { animation-delay: .6s; }
.chip:nth-child(3) { animation-delay: 1s; }
.chip__head { display: flex; align-items: center; gap: 10px; }
.chip__icon {
  width: 26px; height: 26px; border-radius: 8px;
  background: rgba(91, 88, 224, .12);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.chip__head span { font-size: 15px; font-weight: 500; color: var(--ink); }
.chip__lines { display: flex; flex-direction: column; gap: 5px; }
.bar { height: 6px; border-radius: var(--radius-pill); background: var(--mist); }

.chipflow__link { flex: none; }

.editor {
  flex: 1; min-width: 0;
  border: 1px solid var(--mist);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-hair);
  padding: 16px 18px;
  display: flex; flex-direction: column; gap: 14px;
}
.editor__flag { display: flex; justify-content: flex-end; }
.editor__flag span {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: var(--radius-pill);
  background: rgba(91, 88, 224, .12);
  font-size: 14px; font-weight: 500; color: var(--indigo);
}
.editor__flag i { width: 8px; height: 8px; border-radius: var(--radius-pill); background: var(--indigo); }
.editor__tools {
  display: flex; align-items: center; gap: 16px;
  border-bottom: 1px solid var(--mist); padding-bottom: 12px;
  font-size: 15px; color: var(--ink);
}
.editor__tools b { font-weight: 600; }
.editor__tools i { font-weight: 500; }
.editor__rule { width: 1px; height: 14px; background: var(--cloud); }
.editor__lines { display: flex; flex-direction: column; gap: 9px; }
.editor__row { display: flex; align-items: center; gap: 8px; }
.editor__mark {
  height: 14px; border-radius: var(--radius-sm);
  background: rgba(91, 88, 224, .25);
  transform-origin: left;
  animation: cdHl 8s ease-out infinite;
}
.bar--8 { height: 8px; }

.feedscroll { position: relative; height: 262px; overflow: hidden; border-radius: var(--radius-md); }
.feedscroll__track { display: flex; flex-direction: column; gap: 12px; animation: cdScroll 14s linear infinite; }
.feedcard {
  height: 92px;
  border: 1px solid var(--mist);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex; flex-direction: column; gap: 8px;
  background: var(--white);
}
.feedcard__head { display: flex; align-items: center; gap: 10px; }
.feedcard__ava { width: 26px; height: 26px; border-radius: var(--radius-pill); background: var(--mist); flex: none; }
.feedcard__head span { font-size: 14px; font-weight: 500; color: var(--ink); }
.feedcard__lines { display: flex; flex-direction: column; gap: 5px; }
.bar--7 { height: 7px; }
.feedcard--gap {
  border-color: var(--indigo);
  background: rgba(91, 88, 224, .05);
  align-items: center; justify-content: center; flex-direction: row; gap: 10px;
}
.feedcard--gap span { font-size: 15px; font-weight: 500; color: var(--indigo); }
.feedscroll__fade { position: absolute; left: 0; right: 0; height: 36px; pointer-events: none; }
.feedscroll__fade--t { top: 0; background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0) 100%); }
.feedscroll__fade--b { bottom: 0; background: linear-gradient(0deg, #fff 0%, rgba(255, 255, 255, 0) 100%); }

/* --- Home: how it works --------------------------------------------------- */

.panel {
  margin: 38px 32px 0;
  border-radius: 28px;
  background: var(--paper);
}
.panel__inner {
  width: 100%;
  max-width: calc(var(--wrap) + var(--gutter) * 2);
  margin-inline: auto;
  padding: 80px var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.howitworks { display: grid; grid-template-columns: 420px minmax(0, 1fr); gap: 96px; align-items: start; }
.howitworks__lead { display: flex; flex-direction: column; gap: 20px; min-width: 0; padding-top: 26px; }
.howitworks__lead h2 { font-size: 56px; line-height: 1; letter-spacing: -2px; }
.howitworks__lead p { max-width: 330px; }
.howitworks__lead .btn { align-self: flex-start; margin-top: 12px; }

.steps { display: flex; flex-direction: column; min-width: 0; list-style: none; padding: 0; counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 32px;
  padding: 26px 0 34px;
  border-top: 1px solid var(--cloud);
}
.step__n {
  display: flex; align-items: flex-start; justify-content: center;
  width: 64px; font-size: 22px; font-weight: 500; letter-spacing: .4px;
  color: var(--ink); opacity: .6; padding-top: 2px;
}
.step__body { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.step__body h3 { font-size: 26px; line-height: 1.15; font-weight: 600; letter-spacing: -.6px; color: var(--ink); }
.step__body p { max-width: 560px; }

/* --- Photo band with stats (customer story) ------------------------------- */

.showband {
  position: relative;
  width: 100%;
  height: 560px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--ink);
}
.showband img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.showband__wash-x { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4, 40, 58, .92) 0%, rgba(4, 40, 58, .8) 42%, rgba(4, 40, 58, .3) 100%); }
.showband__wash-y { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(4, 40, 58, .85) 0%, rgba(4, 40, 58, .45) 28%, rgba(4, 40, 58, 0) 55%); }
.showband__inner {
  position: absolute; inset: 0;
  padding: 56px 56px 48px;
  display: flex; flex-direction: column;
}
.showband__inner h3 {
  margin-top: 14px;
  max-width: 600px;
  font-size: 40px; line-height: 1.15; font-weight: 600; letter-spacing: -1px;
  color: var(--white); text-wrap: balance;
}
.showband__inner .link-arrow { margin-top: 24px; align-self: flex-start; }
.showband__stats { margin-top: auto; display: flex; align-items: flex-end; gap: 96px; flex-wrap: wrap; }
.showband__stat { display: flex; flex-direction: column; gap: 4px; }
.showband__stat b { font-size: 52px; font-weight: 600; line-height: 1; letter-spacing: -1.3px; color: var(--white); }
.showband__stat span { font-size: 16px; color: var(--white); }

/* --- Home: story cards ---------------------------------------------------- */

.stories { padding-top: 41px; display: flex; flex-direction: column; align-items: center; gap: 48px; }
.stories__head { display: flex; flex-direction: column; align-items: center; gap: 18px; text-align: center; }
.stories__head p { max-width: 640px; }

.stories__rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 405px;
  gap: 32px;
  /* The rail runs past the right-hand gutter, as in the design, so the fourth
     card is half visible and reads as "there is more". */
  width: calc(100% + var(--gutter) + 224px);
  align-self: start;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  padding-bottom: 4px;
}
.stories__rail::-webkit-scrollbar { display: none; }

.story { display: flex; flex-direction: column; gap: 16px; scroll-snap-align: start; }
.story__art {
  height: 240px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: var(--teal);
}
.story__art img { width: 100%; height: 100%; object-fit: cover; }
.story__art span { font-size: 30px; font-weight: 600; letter-spacing: -.6px; color: var(--white); }
.story__art--ink { background: var(--ink); }
.story__art--green { background: var(--green); }
.story p { font-size: 18px; line-height: 1.55; color: var(--body); text-wrap: pretty; }
.story .link-arrow { align-self: flex-start; }

.rail-nav { display: flex; align-items: center; gap: 12px; }
.rail-nav button {
  width: 38px; height: 38px; border-radius: var(--radius-pill);
  border: 0; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  background: var(--mist);
}
.rail-nav button[data-dir='next'] { background: var(--ink); }
.rail-nav button:disabled { opacity: .35; cursor: default; }

/* --- FAQ ------------------------------------------------------------------ */

.faq { padding-top: 91px; display: grid; grid-template-columns: 480px minmax(0, 1fr); gap: 72px; align-items: start; }
.faq__lead { display: flex; flex-direction: column; gap: 20px; min-width: 0; }
.faq__lead h2 { font-size: 56px; line-height: 1.05; letter-spacing: -1.4px; }
.faq__lead p { max-width: 340px; }
.faq__list { display: flex; flex-direction: column; min-width: 0; }

.qa { border-top: 1px solid var(--cloud); }
.qa:last-of-type { border-bottom: 1px solid var(--cloud); }
.qa summary {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  padding: 26px 0;
  font-size: 22px; font-weight: 500; letter-spacing: -.4px; color: var(--ink);
  cursor: pointer;
  list-style: none;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--green-text); }
.qa__sign { flex: none; position: relative; width: 18px; height: 18px; }
.qa__sign::before,
.qa__sign::after {
  content: ''; position: absolute; background: var(--ink); opacity: .5;
  transition: transform .2s ease, opacity .2s ease;
}
.qa__sign::before { left: 0; top: 8.3px; width: 18px; height: 1.4px; }
.qa__sign::after { top: 0; left: 8.3px; height: 18px; width: 1.4px; }
.qa[open] .qa__sign::after { transform: scaleY(0); }
.qa__answer {
  padding: 0 52px 26px 0;
  font-size: 18px; line-height: 1.65; color: var(--body);
  max-width: 78ch;
}
.faq__more { align-self: flex-start; margin-top: 32px; }

/* --- Footer --------------------------------------------------------------- */

.footer {
  position: relative;
  margin-top: 57px;
  border-radius: 28px 28px 0 0;
  overflow: hidden;
  background: var(--night);
}
.footer > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.footer__inner {
  position: relative;
  background: linear-gradient(180deg, rgba(4, 10, 12, .62) 0%, rgba(4, 10, 12, .82) 38%, rgba(4, 10, 12, .94) 100%);
}
.footer__cta {
  padding: 80px 64px 88px;
  display: flex; flex-direction: column; align-items: center; gap: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  text-align: center;
}
.footer__cta > span { font-size: 17px; color: var(--white); opacity: .55; }
.footer__cta h2 { max-width: 900px; color: var(--white); }
.footer__cta form { margin-top: 10px; }

.footer__cols {
  padding: 64px 64px 0;
  display: grid;
  grid-template-columns: 480px repeat(3, minmax(0, 1fr));
  align-items: start;
}
.footer__about { display: flex; flex-direction: column; gap: 180px; padding-right: 48px; }
.footer__about .brand__logo { height: 30px; }
.footer__about p { max-width: 320px; font-size: 17px; line-height: 1.6; color: var(--white); opacity: .75; }

.footer__col {
  display: flex; flex-direction: column; gap: 18px;
  padding: 0 40px;
  border-right: 1px solid rgba(255, 255, 255, .14);
}
.footer__col:last-child { border-right: 0; padding-right: 0; }
.footer__col h2 { font-size: 17px; font-weight: 400; color: var(--white); opacity: .55; }
.footer__col a { font-size: 17px; font-weight: 400; color: var(--white); }
.footer__col a:hover { color: var(--green); }

.footer__base {
  padding: 64px 64px 48px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
  flex-wrap: wrap;
}
.footer__base > span { max-width: 380px; font-size: 17px; line-height: 1.6; color: var(--white); opacity: .55; }
.footer__legal { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; }
.footer__legal a { font-size: 17px; color: var(--white); opacity: .75; }
.footer__legal a:hover { opacity: 1; color: var(--white); }
.footer__social {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, .1);
  opacity: 1;
}
.footer__social:hover { background: var(--green); }

/* --- Pricing -------------------------------------------------------------- */

.pricehero { padding-top: 64px; display: flex; flex-direction: column; align-items: center; gap: 26px; text-align: center; }
.pricehero h1 { max-width: 1000px; font-size: 64px; line-height: 1.08; letter-spacing: -1.8px; color: var(--ink); text-wrap: balance; }
.pricehero p { max-width: 640px; }
.pricehero__cur {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 18px; border-radius: var(--radius-pill);
  border: 1px solid var(--cloud);
  font-size: 16px; font-weight: 500; color: var(--ink);
  margin-top: 6px;
}

.plans {
  padding-top: 84px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.plan {
  position: relative;
  border: 1px solid var(--cloud);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-hair);
  padding: 32px 30px 34px;
  display: flex; flex-direction: column; gap: 22px;
  min-width: 0;
}
.plan__head { display: flex; flex-direction: column; gap: 8px; }
.plan__head h2 { font-size: 26px; line-height: 1.15; font-weight: 600; letter-spacing: -.6px; color: var(--ink); }
.plan__head p { font-size: 16px; line-height: 1.5; color: var(--body); }
.plan__price { display: flex; flex-direction: column; gap: 8px; }
.plan__amount { display: flex; align-items: baseline; gap: 10px; }
.plan__amount b { font-size: 48px; line-height: 1; font-weight: 600; letter-spacing: -1.6px; color: var(--ink); }
.plan__amount span { font-size: 16px; color: var(--body); }
.plan__fine { font-size: 15px; color: var(--body); opacity: .6; }
.plan__ctas { display: flex; flex-direction: column; gap: 12px; }
.plan__ctas .btn { padding: 15px 20px; font-size: 16px; }
.plan__talk { align-self: center; font-size: 16px; font-weight: 500; color: var(--ink); }
.plan__talk:hover { color: var(--green-text); }
.plan__list { border-top: 1px solid var(--mist); padding-top: 20px; display: flex; flex-direction: column; gap: 14px; list-style: none; padding-left: 0; }
.plan__list b { font-size: 16px; font-weight: 600; color: var(--ink); }
.plan__list li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; line-height: 1.5; color: var(--body); }
.plan__list svg { flex: none; margin-top: 4px; }

.plan--feature {
  border: 0; padding: 14px; overflow: hidden; border-radius: 22px;
  background: none; box-shadow: none; display: flex;
}
.plan--feature > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.plan__wash { position: absolute; inset: 0; background: rgba(4, 40, 58, .28); }
.plan__card {
  position: relative; flex: 1; min-width: 0;
  border-radius: 14px; background: var(--white);
  border-top: 5px solid var(--indigo);
  padding: 28px 26px 26px;
  overflow: hidden;
  display: flex; flex-direction: column; gap: 18px;
  box-shadow: rgba(8, 9, 10, .14) 0 12px 32px 0;
}
.plan__sweep { position: absolute; top: -5px; left: 0; right: 0; height: 5px; overflow: hidden; pointer-events: none; }
.plan__sweep i {
  display: block; width: 45%; height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .95) 50%, rgba(255, 255, 255, 0) 100%);
  animation: cdSweep 2.8s ease-in-out infinite;
}
.plan__badge {
  padding: 7px 18px; border-radius: var(--radius-pill);
  border: 1px solid var(--cloud);
  font-size: 15px; font-weight: 500; color: var(--ink);
}
.plan__card .plan__head { align-items: center; gap: 14px; text-align: center; }
.plan__card .plan__head h2 { font-size: 34px; line-height: 1.1; letter-spacing: -1px; }
.plan__card .plan__list b { font-size: 20px; font-weight: 600; letter-spacing: -.4px; }
.plan__card .plan__list { gap: 16px; }
.plan__foot { margin-top: auto; border-top: 1px solid var(--mist); padding-top: 18px; text-align: center; font-size: 16px; color: var(--body); opacity: .6; }

.addon {
  position: relative;
  margin-top: 167px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--night);
  padding: 44px 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.addon > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.addon__wash { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4, 10, 12, .9) 0%, rgba(4, 10, 12, .82) 55%, rgba(4, 10, 12, .7) 100%); }
.addon__copy { position: relative; display: flex; flex-direction: column; gap: 14px; min-width: 0; }
.addon__copy h2 { font-size: 32px; line-height: 1.15; font-weight: 600; letter-spacing: -.8px; color: var(--white); }
.addon__copy p { max-width: 520px; font-size: 17px; line-height: 1.55; color: var(--white); }
.addon__copy .btn { align-self: flex-start; margin-top: 8px; }
.addon__list { position: relative; display: flex; flex-direction: column; gap: 16px; min-width: 0; list-style: none; padding: 0; }
.addon__list li { display: flex; align-items: center; gap: 12px; font-size: 17px; color: var(--white); }
.addon__list svg { flex: none; }

/* The pricing page's own vertical rhythm. Its FAQ and footer sit on the same
   design grid as the home page's, but the sections above them are shorter. */
.page-pricing .faq { padding-top: 130px; }
.page-pricing .footer { margin-top: 88px; }

.plans__note {
  margin-top: 28px;
  max-width: 940px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--body);
  opacity: .75;
}
.plans__note strong { font-weight: 600; opacity: 1; }
@media (max-width: 720px) { .plans__note { font-size: 15.5px; margin-top: 20px; } }

/* --- Blog index ----------------------------------------------------------- */

.blogpage { background: var(--paper); }
.bloghero { position: relative; max-width: 1500px; margin-inline: auto; padding-top: 100px; display: flex; flex-direction: column; align-items: center; gap: 28px; text-align: center; }
.bloghero::before {
  content: '';
  position: absolute;
  top: 20px; left: -80px; right: -80px; height: 220px;
  background: linear-gradient(90deg, rgba(91, 88, 224, 0) 0%, rgba(91, 88, 224, .55) 22%, rgba(91, 88, 224, .62) 55%, rgba(91, 88, 224, .18) 100%);
  filter: blur(60px);
  pointer-events: none;
  z-index: -1;
}
.bloghero h1 { font-size: 62px; line-height: 1.12; font-weight: 600; letter-spacing: -1.8px; color: var(--ink); text-wrap: balance; }
.bloghero h1 .dim { color: var(--body); opacity: .45; }
.bloghero p { max-width: 720px; font-size: 18px; line-height: 1.55; color: var(--body); }

.blogbar {
  margin-top: 90px;
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  flex-wrap: wrap;
}
.chips { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; list-style: none; padding: 0; }
.chip-btn {
  display: inline-block;
  padding: 11px 22px; border-radius: var(--radius-pill);
  border: 1px solid var(--cloud); background: transparent;
  color: var(--ink); font-size: 16px; font-weight: 500;
  cursor: pointer;
}
.chip-btn[aria-pressed='true'] { background: var(--ink); color: var(--white); border-color: var(--ink); }
.blogbar__count { font-size: 16px; color: var(--body); opacity: .55; }
.blogrule { margin-top: 28px; height: 1px; background: var(--cloud); }

.postgrid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: stretch;
}
.pcard {
  display: flex; flex-direction: column;
  border-radius: 18px; overflow: hidden;
  background: var(--white);
  border: 1px solid var(--cloud);
  box-shadow: var(--shadow-hair);
  min-width: 0;
  color: var(--ink);
}
.pcard:hover { color: var(--ink); border-color: var(--ink); box-shadow: rgba(8, 9, 10, .08) 0 8px 24px 0; }
.pcard__art { position: relative; height: 260px; overflow: hidden; background: var(--paper); }
.pcard__art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pcard__body { padding: 26px 28px 28px; display: flex; flex-direction: column; gap: 14px; flex: 1; }
.pcard__kicker { font-size: 14px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--body); opacity: .55; }
.pcard h2 { font-size: 24px; line-height: 1.2; font-weight: 600; letter-spacing: -.5px; color: var(--ink); text-wrap: pretty; }
.pcard p { font-size: 17px; line-height: 1.55; color: var(--body); }
.pcard__read {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: auto; padding-top: 18px;
  font-size: 16px; font-weight: 500; color: var(--indigo);
}
.postgrid__empty { grid-column: 1 / -1; padding: 48px 0; font-size: 17px; color: var(--body); opacity: .6; }
.blogfoot { margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--cloud); font-size: 16px; color: var(--body); opacity: .55; }

/* --- Blog post ------------------------------------------------------------ */

.posthero {
  position: relative;
  margin-top: 28px;
  height: 700px;
  border-radius: 22px;
  overflow: hidden;
}
.posthero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.posthero__wash { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(4, 10, 12, .3) 0%, rgba(4, 10, 12, .52) 45%, rgba(4, 10, 12, .78) 100%); }
.posthero__inner {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 0 72px 64px;
  display: flex; flex-direction: column; gap: 22px;
}
.posthero__meta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.posthero__cat {
  padding: 7px 16px; border-radius: var(--radius-pill);
  background: var(--indigo); color: var(--white);
  font-size: 14px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase;
}
.posthero__date { font-size: 15px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--white); }
.posthero h1 { max-width: 820px; font-size: 60px; line-height: 1.06; font-weight: 600; letter-spacing: -1.8px; color: var(--white); text-wrap: balance; }
.posthero__by { font-size: 18px; color: var(--white); }

.postgridlayout {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}
.postgridlayout--solo { grid-template-columns: minmax(0, 1fr); max-width: 860px; }
.toc { position: sticky; top: 40px; display: flex; flex-direction: column; gap: 18px; }
.toc__label { font-size: 15px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--body); opacity: .55; }
.toc__links { display: flex; flex-direction: column; gap: 12px; }
.toc__links a { font-size: 18px; color: var(--ink); }
.toc__links a:hover { color: var(--indigo); }
.toc__cta { border-top: 1px solid var(--cloud); padding-top: 22px; display: flex; flex-direction: column; gap: 18px; }
.toc__cta p { font-size: 18px; line-height: 1.55; color: var(--body); }
.toc__cta .btn {
  background: var(--indigo); color: var(--white);
  padding: 16px 24px; font-size: 17px;
  box-shadow: rgba(91, 88, 224, .35) 0 8px 22px 0;
}
.toc__cta .btn:hover { background: #4a47d0; color: var(--white); }

.prose { display: flex; flex-direction: column; gap: 22px; min-width: 0; }
.prose h2 { margin-top: 28px; font-size: 34px; line-height: 1.2; font-weight: 600; letter-spacing: -.9px; color: var(--ink); scroll-margin-top: 24px; }
.prose h3 { margin-top: 18px; font-size: 23px; line-height: 1.25; font-weight: 600; letter-spacing: -.5px; color: var(--ink); }
.prose p { font-size: 19px; line-height: 1.7; color: var(--body); }
.prose ul, .prose ol { padding-left: 26px; font-size: 19px; line-height: 1.7; color: var(--body); display: flex; flex-direction: column; gap: 10px; }
.prose a { color: var(--indigo); text-decoration: underline; text-underline-offset: 2px; }
.prose .btn { text-decoration: none; }
.prose a:hover { color: var(--ink); }
.prose strong { font-weight: 600; }
.prose code { background: var(--mist); padding: 2px 6px; border-radius: var(--radius-sm); font-size: .92em; }
.prose blockquote {
  padding: 2px 0 2px 20px;
  border-left: 2px solid var(--indigo);
  font-size: 19px; line-height: 1.65; color: var(--body);
}

.answerbox {
  border-radius: 20px; background: var(--white);
  border: 1px solid var(--cloud);
  padding: 44px 48px;
  display: flex; flex-direction: column; gap: 20px;
}
.answerbox__label { font-size: 15px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--body); opacity: .55; }
.answerbox p { font-size: 24px; line-height: 1.6; color: var(--ink); }
.answerbox .answerbox__note { font-size: 19px; line-height: 1.65; color: var(--body); opacity: .7; }

.ptable { width: 100%; overflow-x: auto; }
.ptable table { width: 100%; min-width: 620px; border-collapse: collapse; }
.ptable th, .ptable td {
  padding: 16px 20px;
  border-top: 1px solid var(--cloud);
  font-size: 17px; line-height: 1.5;
  text-align: left; vertical-align: top;
}
.ptable thead th { font-weight: 500; color: var(--ink); }
.ptable tbody th { font-weight: 500; color: var(--body); white-space: nowrap; }
.ptable td { font-weight: 400; color: var(--body); }
.ptable .is-hi { background: rgba(91, 88, 224, .06); }
.ptable__note { font-size: 19px; line-height: 1.7; color: var(--body); }

.postbanner {
  position: relative;
  margin: 20px 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--night);
  padding: 40px 44px;
}
.postbanner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.postbanner__wash { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4, 10, 12, .9) 0%, rgba(4, 10, 12, .74) 100%); }
.postbanner__inner { position: relative; display: flex; flex-direction: column; gap: 12px; }
.postbanner h2 { font-size: 28px; line-height: 1.2; font-weight: 600; letter-spacing: -.6px; color: var(--white); }
.postbanner p { max-width: 560px; font-size: 18px; line-height: 1.55; color: var(--white); }
.postbanner .btn {
  align-self: flex-start; margin-top: 10px;
  background: var(--indigo); color: var(--white);
  padding: 15px 28px; font-size: 16px;
}
.postbanner .btn:hover { background: var(--white); color: var(--ink); }

.prose .qa summary { font-size: 19px; font-weight: 600; letter-spacing: -.3px; padding: 22px 0; }
.prose .qa__answer { font-size: 18px; line-height: 1.65; padding-bottom: 22px; max-width: 78ch; }

.readnext {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--cloud);
}
.readnext h2 { font-size: 15px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--body); opacity: .55; margin-bottom: 20px; }
.readnext__list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.readnext__list a {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--cloud);
  border-radius: 14px;
  overflow: hidden;
  color: var(--ink);
  text-decoration: none;
}
.readnext__list a:hover { border-color: var(--ink); box-shadow: rgba(8, 9, 10, .06) 0 6px 18px 0; color: var(--ink); }
.readnext__art {
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--paper);
  overflow: hidden;
}
.readnext__art img { width: 100%; height: 100%; object-fit: cover; display: block; }
.readnext__body { display: flex; flex-direction: column; gap: 8px; padding: 18px 20px 20px; }
.readnext__cat { font-size: 13px; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; color: var(--indigo); }
.readnext__title { font-size: 17px; line-height: 1.35; font-weight: 600; letter-spacing: -.2px; }
@media (max-width: 1024px) { .readnext__list { grid-template-columns: 1fr 1fr; } }
@media (max-width: 720px)  { .readnext { margin-top: 44px; } .readnext__list { grid-template-columns: 1fr; gap: 12px; } }

.postnav {
  margin-top: 64px; padding-top: 32px; border-top: 1px solid var(--cloud);
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}

/* --- Animations ----------------------------------------------------------- */

@keyframes cdIn {
  0% { opacity: 0; transform: translateX(-10px); }
  20%, 92% { opacity: 1; transform: translateX(0); }
  100% { opacity: 0; transform: translateX(-10px); }
}
@keyframes cdHl {
  0%, 10% { transform: scaleX(0); opacity: 0; }
  34%, 90% { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(0); opacity: 0; }
}
@keyframes cdScroll {
  from { transform: translateY(0); }
  to { transform: translateY(-416px); }
}
@keyframes cdDot {
  0%, 100% { transform: scale(.8); opacity: .5; }
  50% { transform: scale(1); opacity: 1; }
}
@keyframes cdSweep {
  0% { transform: translateX(-60%); }
  100% { transform: translateX(160%); }
}
.dotpulse { transform-origin: 48px 90px; animation: cdDot 3s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

/* Large desktop down to laptop --------------------------------------------- */
@media (max-width: 1500px) {
  :root { --gutter: 56px; }
  .panel { margin-inline: 24px; }
  .panel__inner { padding-inline: 56px; }
  .howitworks { grid-template-columns: 360px minmax(0, 1fr); gap: 64px; }
  .footer__cols { grid-template-columns: 340px repeat(3, minmax(0, 1fr)); }
  .footer__about { gap: 96px; padding-right: 32px; }
  .footer__cta, .footer__cols, .footer__base { padding-inline: 56px; }
}

@media (max-width: 1240px) {
  :root { --gutter: 40px; }
  .h1 { font-size: 56px; letter-spacing: -1.3px; }
  .h2, .faq__lead h2, .howitworks__lead h2 { font-size: 44px; letter-spacing: -1.1px; }
  .pricehero h1 { font-size: 52px; letter-spacing: -1.4px; }
  .bloghero h1 { font-size: 48px; letter-spacing: -1.3px; }
  .posthero h1 { font-size: 46px; letter-spacing: -1.3px; }
  .posthero { height: 560px; }
  .posthero__inner { padding: 0 48px 48px; }

  .hero { height: auto; padding-block: 64px 48px; }
  .pagetop__bg { height: 900px; }

  .appshot { height: auto; }
  .appshot__body { grid-template-columns: 1fr; }
  .appshot__side--l, .appshot__side--r { border: 0; border-top: 1px solid var(--mist); }
  .appshot__side--l { order: 2; }
  .appshot__feed { order: 1; }
  .appshot__side--r { order: 3; }
  .appshot__note { margin-top: 0; }

  .plans { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .postgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .postgridlayout { grid-template-columns: 280px minmax(0, 1fr); gap: 48px; }
  .faq { grid-template-columns: 1fr; gap: 32px; padding-top: 96px; }
  .faq__lead h2 br { display: none; }
  .howitworks { grid-template-columns: 1fr; gap: 40px; }
  .howitworks__lead { padding-top: 0; }
  .showband { height: auto; min-height: 480px; }
  .showband__inner { position: relative; inset: auto; padding: 48px 40px 40px; min-height: 480px; }
  .showband__stats { gap: 48px; margin-top: 56px; }
  .addon { grid-template-columns: 1fr; gap: 32px; }
  .footer__cols { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer__about { gap: 24px; grid-column: 1 / -1; padding-right: 0; }
  .footer__col { border-right: 0; padding-inline: 0; }
}

/* Tablet ------------------------------------------------------------------- */
@media (max-width: 1024px) {
  :root { --gutter: 32px; }

  .nav__links,
  .nav__actions { display: none; }
  .nav__toggle { display: flex; }
  .nav { gap: 16px; height: 76px; }

  .nav.is-open + .navdrawer,
  .navdrawer.is-open { display: block; }

  .features { grid-template-columns: 1fr; padding-top: 64px; }
  .feature { padding: 28px 28px 32px; }
  .feature p { max-width: none; }
  .chipflow { flex-direction: column; align-items: stretch; gap: 20px; }
  .chipflow__col { width: 100%; flex-direction: row; }
  .chipflow__col .chip { flex: 1; }
  .chipflow__link { display: none; }

  .logos { padding-top: 72px; }
  .logos__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px 16px; }
  .intro { padding-top: 88px; }
  .panel { margin-top: 88px; }
  .panel__inner { padding: 56px 32px; gap: 40px; }
  .stories { padding-top: 88px; gap: 36px; }
  .stories__rail { grid-auto-columns: 340px; width: calc(100% + var(--gutter)); }
  .plans { padding-top: 64px; }
  .addon { margin-top: 88px; padding: 32px 28px; }
  .pricehero { padding-top: 72px; }
  .bloghero { padding-top: 64px; }
  .blogbar { margin-top: 56px; }
  .postgrid { margin-top: 40px; gap: 24px; }

  .postgridlayout { grid-template-columns: 1fr; gap: 40px; margin-top: 48px; }
  .toc { position: static; }
  .toc__links { flex-flow: row wrap; gap: 8px 20px; }

  .footer { margin-top: 88px; }
  .footer__cta { padding: 56px 32px 64px; }
  .footer__cols { padding: 48px 32px 0; }
  .footer__base { padding: 48px 32px 40px; }
}

/* Mobile ------------------------------------------------------------------- */
@media (max-width: 720px) {
  :root { --gutter: 20px; }

  .brand__logo { height: 28px; }
  .announce { gap: 10px; padding: 12px 20px; }
  .announce p, .announce a { font-size: 14px; }

  .h1, .hero h1 { font-size: 36px; letter-spacing: -.8px; }
  .h2, .faq__lead h2, .howitworks__lead h2 { font-size: 30px; letter-spacing: -.7px; }
  .h3 { font-size: 24px; letter-spacing: -.5px; }
  .lede { font-size: 16px; }
  .hero p { font-size: 17px; }
  .eyebrow { font-size: 12px; }

  .pagetop__bg { height: 660px; }
  .hero { padding-block: 40px 32px; gap: 20px; }

  .capture, .capture--sm {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px;
    border-radius: 20px;
  }
  .capture input[type='email'] {
    font-size: 16px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: var(--radius-pill);
  }
  .capture button { justify-content: center; width: 100%; font-size: 16px; padding: 14px 20px; }

  .appshot { max-width: calc(100% - 32px); border-radius: 18px; }
  .appshot__bar { flex-wrap: wrap; gap: 10px; padding: 14px 18px; }
  .appshot__tabs { display: none; }
  .appshot__feed { padding: 18px; }
  .appshot__side { padding: 18px; }
  .appshot__side--r { padding: 18px; }
  .appshot__posthead { flex-wrap: wrap; }
  .appshot__meta { flex: 1 1 0; min-width: 0; }
  .appshot__tag,
  .appshot__impr { order: 3; flex-basis: 100%; margin-left: 0; }
  .appshot__react { flex-wrap: wrap; gap: 12px; }
  .appshot__react .is-green { margin-left: 0; }
  .appshot__big { font-size: 34px; }

  .logos__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .logos__item span { font-size: 18px; }

  .panel { margin-inline: 12px; border-radius: 20px; }
  .panel__inner { padding: 40px 20px; }
  .step { grid-template-columns: 44px minmax(0, 1fr); gap: 16px; padding: 20px 0 26px; }
  .step__n { width: 44px; font-size: 18px; }
  .step__body h3 { font-size: 21px; }

  .showband { min-height: 0; }
  .showband__inner { padding: 32px 22px; min-height: 0; }
  .showband__inner h3 { font-size: 26px; letter-spacing: -.6px; }
  .showband__stats { gap: 28px; margin-top: 40px; }
  .showband__stat b { font-size: 36px; letter-spacing: -.9px; }

  .stories__rail { grid-auto-columns: min(300px, 82vw); gap: 20px; }
  .story__art { height: 190px; }
  .story p { font-size: 16px; }

  .qa summary { font-size: 18px; gap: 20px; padding: 20px 0; }
  .qa__answer { font-size: 16px; padding-right: 30px; padding-bottom: 20px; }

  .plans { grid-template-columns: 1fr; }
  .plan { padding: 26px 22px 28px; }
  .plan--feature { padding: 10px; }
  .plan__card { padding: 24px 20px; }
  .pricehero h1 { font-size: 34px; letter-spacing: -.8px; }
  .addon { padding: 26px 20px; }
  .addon__copy h2 { font-size: 24px; }

  .bloghero h1 { font-size: 32px; letter-spacing: -.8px; }
  .blogbar { margin-top: 40px; gap: 16px; }
  .chip-btn { padding: 9px 16px; font-size: 14px; }
  .postgrid { grid-template-columns: 1fr; }
  .pcard__art { height: 200px; }
  .pcard__body { padding: 20px 20px 22px; }
  .pcard h2 { font-size: 21px; }

  .posthero { height: 420px; margin-top: 16px; border-radius: 16px; }
  .posthero__inner { padding: 0 22px 28px; gap: 16px; }
  .posthero h1 { font-size: 30px; letter-spacing: -.7px; }
  .posthero__meta { gap: 10px; }
  .posthero__date { font-size: 13px; }
  .posthero__by { font-size: 15px; }

  .prose p, .prose ul, .prose ol, .prose blockquote { font-size: 17px; }
  .prose h2 { font-size: 26px; letter-spacing: -.6px; margin-top: 18px; }
  .prose h3 { font-size: 20px; }
  .answerbox { padding: 26px 22px; border-radius: 16px; }
  .answerbox p { font-size: 19px; }
  .answerbox .answerbox__note { font-size: 17px; }
  .postbanner { padding: 26px 22px; }
  .postbanner h2 { font-size: 22px; }
  .postbanner p { font-size: 16px; }
  .ptable th, .ptable td { font-size: 15px; padding: 12px 14px; }

  .footer { margin-top: 72px; border-radius: 20px 20px 0 0; }
  .footer__cta { padding: 44px 20px 48px; gap: 16px; }
  .footer__cols { padding: 40px 20px 0; grid-template-columns: 1fr; gap: 32px; }
  .footer__col h2, .footer__col a, .footer__about p, .footer__base > span, .footer__legal a { font-size: 16px; }
  .footer__base { padding: 36px 20px 32px; gap: 20px; }
  .footer__legal { gap: 20px; }
}

/* --- Mobile navigation drawer --------------------------------------------- */

.navdrawer {
  display: none;
  position: relative;
  z-index: 8;
  background: var(--white);
  border-bottom: 1px solid var(--mist);
  padding: 8px 32px 24px;
}
.navdrawer ul { list-style: none; padding: 0; display: flex; flex-direction: column; }
.navdrawer a {
  display: block;
  padding: 14px 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid var(--mist);
}
.navdrawer__actions { display: flex; flex-direction: column; gap: 10px; margin-top: 20px; }
.navdrawer__actions .btn { width: 100%; padding: 14px 20px; font-size: 16px; }
@media (max-width: 720px) { .navdrawer { padding-inline: 20px; } }

/* --- Plain document page (privacy, and anything like it) ------------------ */

.docpage { padding-top: 64px; }
.docpage h1 { margin-bottom: 8px; }
@media (max-width: 720px) { .docpage { padding-top: 40px; } }

/* --- Print ---------------------------------------------------------------- */

@media print {
  .announce, .nav, .navdrawer, .footer, .toc, .postbanner, .rail-nav { display: none !important; }
  body { background: #fff; }
  .prose p, .prose li { font-size: 12pt; }
}
