/* TubeBoard website — 24 July 2026 release, revision C */
:root {
  --page: #f6f6f3;
  --surface: #ffffff;
  --surface-soft: #edede8;
  --ink: #11120f;
  --copy: #30322e;
  --muted: #686b65;
  --rule: #cfd1ca;
  --rule-strong: #9da19a;
  --board: #050607;
  --board-raised: #0e1011;
  --cream: #f6f1dd;
  --orange: #ff9729;
  --yellow: #ffd329;
  --focus: #005fcc;
  --max: 1240px;
  --gutter: clamp(20px, 5vw, 72px);
  --font-ui: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --font-board: var(--font-ui);
}

* {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  background: var(--page);
  color: var(--copy);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

p,
h1,
h2,
h3,
dl,
dd,
figure {
  margin-top: 0;
}

figure {
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: -0.035em;
  text-wrap: balance;
}

h1 {
  margin-bottom: 30px;
  font-size: clamp(3.5rem, 6vw, 6.2rem);
  font-weight: 760;
  line-height: 0.92;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4.6vw, 4.8rem);
  font-weight: 720;
  line-height: 0.98;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  text-decoration: none;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 10px var(--gutter);
  background: rgba(246, 246, 243, 0.96);
  border-bottom: 1px solid var(--rule);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-weight: 760;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand img {
  display: block;
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
}

.site-header nav a {
  color: var(--copy);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  text-underline-offset: 5px;
}

.site-header nav a:hover {
  text-decoration: underline;
}

.nav-toggle {
  display: none;
  min-height: 44px;
  padding: 0 2px;
  border: 0;
  border-bottom: 2px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 650;
  cursor: pointer;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(370px, 0.88fr);
  gap: clamp(48px, 7vw, 118px);
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(64px, 7vw, 92px) var(--gutter) clamp(74px, 9vw, 120px);
}

.product-name,
.section-context {
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 650;
}

.product-name {
  margin-bottom: clamp(34px, 4.5vw, 58px);
}

.hero-copy {
  padding-bottom: 2vw;
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 34px;
  font-size: clamp(1.16rem, 1.8vw, 1.48rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 150ms ease, background-color 150ms ease;
}

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

.button-primary {
  background: var(--ink);
  color: white;
}

.button-primary:hover {
  background: #292b27;
}

.text-link {
  color: var(--ink);
  font-weight: 650;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.release-note,
.copy-note,
.pricing-note,
.surface-note {
  color: var(--muted);
  font-size: 0.92rem;
}

.release-note {
  margin: 22px 0 0;
}

.hero-product {
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: center;
  padding-top: 8px;
}

.product-frame {
  overflow: hidden;
  background: #000;
  border: 1px solid #282b2c;
  box-shadow: 0 26px 70px rgba(20, 21, 18, 0.17);
}

.product-frame picture,
.product-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.product-frame-hero {
  width: min(325px, 100%);
  margin: auto;
  padding: 7px;
  border-radius: 44px;
}

.product-frame-hero img {
  border-radius: 37px;
}

.product-caption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  width: min(430px, 100%);
  margin: 20px auto 0;
  padding-top: 12px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.83rem;
}

.product-caption strong {
  color: var(--ink);
}

.proof-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 var(--gutter);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--rule);
}

.proof-line p {
  margin: 0;
  padding: 17px 18px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 620;
  text-align: center;
  border-left: 1px solid var(--rule);
}

.proof-line p:first-child {
  border-left: 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.5fr);
  column-gap: clamp(42px, 8vw, 132px);
  row-gap: 74px;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(90px, 12vw, 170px) var(--gutter);
}

.intro-heading h2 {
  max-width: 830px;
}

.intro-copy {
  align-self: end;
  padding-bottom: 12px;
  font-size: 1.12rem;
}

.service-points {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 0;
  border-top: 1px solid var(--ink);
}

.service-points div {
  padding: 22px 28px 8px 0;
  border-left: 1px solid var(--rule);
}

.service-points div:first-child {
  border-left: 0;
}

.service-points div:not(:first-child) {
  padding-left: 28px;
}

.service-points dt {
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 720;
}

.service-points dd {
  margin-left: 0;
  color: var(--muted);
}

.story {
  display: grid;
  grid-template-columns: minmax(360px, 0.96fr) minmax(0, 1.04fr);
  min-height: 760px;
  border-top: 1px solid var(--rule);
}

.story-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 650px;
  padding: clamp(70px, 9vw, 130px) var(--gutter);
}

.story-copy > p:not(.section-context):not(.copy-note) {
  font-size: 1.12rem;
}

.story-media {
  display: grid;
  place-items: center;
  min-height: 760px;
  padding: clamp(60px, 8vw, 110px);
  overflow: hidden;
}

.story-media-light {
  background: #e8e9e4;
}

.story-media-dark {
  background: var(--board);
}

.product-frame-story {
  width: min(310px, 100%);
  padding: 6px;
  border-radius: 40px;
}

.product-frame-story img {
  border-radius: 34px;
}

.plain-list {
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--rule-strong);
  list-style: none;
}

.plain-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--rule);
}

.story-detail {
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
}

.copy-note {
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}

.commute {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(350px, 0.9fr);
  gap: clamp(48px, 8vw, 140px);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(90px, 12vw, 170px) var(--gutter);
}

.commute-copy > p:not(.section-context) {
  max-width: 650px;
  font-size: 1.12rem;
}

.fact-list {
  margin: 44px 0 0;
  border-top: 1px solid var(--ink);
}

.fact-list div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
}

.fact-list dt {
  color: var(--ink);
  font-weight: 700;
}

.fact-list dd {
  margin-left: 0;
}

.commute-media {
  justify-self: center;
}

.product-frame-commute {
  width: min(320px, 100%);
  padding: 6px;
  border-radius: 40px;
}

.product-frame-commute img {
  border-radius: 34px;
}

.surfaces {
  padding: clamp(90px, 11vw, 150px) var(--gutter);
  background: #e8e9e4;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.surfaces-heading {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 40px;
  max-width: var(--max);
  margin: 0 auto clamp(70px, 9vw, 110px);
}

.surfaces-heading h2 {
  max-width: 850px;
}

.surface-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max);
  margin: 0 auto;
  border-top: 1px solid var(--ink);
}

.surface-list article {
  min-height: 220px;
  padding: 24px 24px 20px 0;
  border-left: 1px solid var(--rule-strong);
}

.surface-list article:first-child {
  border-left: 0;
}

.surface-list article:not(:first-child) {
  padding-left: 24px;
}

.surface-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.surface-note {
  max-width: var(--max);
  margin: 36px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--rule-strong);
}

.premium {
  padding: clamp(90px, 12vw, 170px) var(--gutter);
  background: var(--board);
  color: #d8dad6;
}

.premium h2,
.premium h3,
.premium .section-context {
  color: white;
}

.premium-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.55fr);
  gap: clamp(50px, 9vw, 150px);
  align-items: end;
  max-width: var(--max);
  margin: 0 auto 76px;
}

.premium-intro .section-context {
  grid-column: 1 / -1;
  margin-bottom: -36px;
}

.premium-intro h2 {
  margin-bottom: 0;
}

.premium-intro > p:last-child {
  margin-bottom: 8px;
  color: #b3b7b2;
  font-size: 1.05rem;
}

.premium-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: var(--max);
  margin: 0 auto 78px;
  border-top: 1px solid #737771;
}

.premium-features p {
  min-height: 86px;
  margin: 0;
  padding: 18px 24px 18px 0;
  border-bottom: 1px solid #3c3f3c;
}

.premium-features p:nth-child(3n + 2),
.premium-features p:nth-child(3n + 3) {
  padding-left: 24px;
  border-left: 1px solid #3c3f3c;
}

.price-list {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0;
  border-top: 1px solid #9a9f98;
  list-style: none;
}

.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
  min-height: 124px;
  padding: 20px 0;
  border-bottom: 1px solid #3c3f3c;
}

.price-row h3 {
  margin-bottom: 6px;
  font-size: 1.28rem;
}

.price-row p {
  margin-bottom: 0;
  color: #aaaFAA;
}

.price-row-yearly {
  box-shadow: inset 5px 0 0 var(--yellow);
  padding-left: 22px;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-align: right;
}

.price strong {
  color: var(--orange);
  font-family: var(--font-board);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.price span {
  color: #b3b7b2;
  font-size: 0.88rem;
}

.pricing-note {
  max-width: var(--max);
  margin: 20px auto 0;
  color: #929791;
}

.comparison-wrap {
  max-width: var(--max);
  margin: 100px auto 0;
  overflow-x: auto;
}

.comparison {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
  color: #dadcd8;
}

.comparison caption {
  padding-bottom: 20px;
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: left;
}

.comparison th,
.comparison td {
  padding: 15px 18px;
  border-top: 1px solid #3c3f3c;
  text-align: left;
}

.comparison thead th {
  color: #aeb2ad;
  font-size: 0.86rem;
  font-weight: 650;
}

.comparison tbody th {
  color: white;
  font-weight: 560;
}

.trust {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
  gap: clamp(50px, 9vw, 150px);
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(90px, 12vw, 170px) var(--gutter);
}

.trust-copy {
  align-self: end;
  font-size: 1.04rem;
}

.trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  margin-top: 34px;
}

.faq {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
  gap: clamp(48px, 9vw, 140px);
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  background: var(--surface);
  border-top: 1px solid var(--rule);
}

.faq-heading {
  max-width: 460px;
}

.faq-list {
  border-top: 1px solid var(--ink);
}

details {
  border-bottom: 1px solid var(--rule);
}

summary {
  position: relative;
  padding: 23px 44px 23px 0;
  color: var(--ink);
  font-weight: 680;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 19px;
  right: 4px;
  font-size: 1.4rem;
  font-weight: 400;
}

details[open] summary::after {
  content: "–";
}

details p {
  max-width: 760px;
  padding: 0 44px 24px 0;
  color: var(--muted);
}

.final-cta {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 70px var(--gutter);
  border-top: 1px solid var(--ink);
}

.final-cta img {
  width: 76px;
  height: 76px;
  border-radius: 18px;
}

.final-cta h2 {
  margin-bottom: 6px;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.final-cta p {
  margin-bottom: 0;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: 0.7fr 0.7fr 1.3fr;
  gap: 40px;
  padding: 54px var(--gutter);
  background: #dedfd9;
  border-top: 1px solid var(--rule-strong);
  color: #555851;
  font-size: 0.86rem;
}

.footer-brand strong {
  color: var(--ink);
  font-size: 1.12rem;
}

.footer-brand p {
  margin: 7px 0 0;
}

.site-footer nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.site-footer a {
  color: var(--ink);
  text-underline-offset: 4px;
}

.footer-legal p {
  margin-bottom: 10px;
}

.legal-page {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 140px) var(--gutter) clamp(100px, 13vw, 170px);
}

.legal-intro {
  max-width: 960px;
  margin-bottom: clamp(80px, 12vw, 150px);
}

.legal-intro h1 {
  max-width: 900px;
}

.legal-lead {
  max-width: 760px;
  font-size: clamp(1.15rem, 2vw, 1.48rem);
}

.policy-date {
  margin-top: 30px;
  color: var(--muted);
  font-size: 0.9rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(54px, 9vw, 150px);
  align-items: start;
}

.legal-summary {
  position: sticky;
  top: 110px;
  padding-top: 18px;
  border-top: 1px solid var(--ink);
}

.legal-summary h2 {
  margin-bottom: 18px;
  font-size: 1.2rem;
  letter-spacing: -0.015em;
}

.legal-summary ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.legal-summary li {
  padding: 11px 0;
  border-bottom: 1px solid var(--rule);
}

.legal-copy {
  max-width: 760px;
}

.legal-copy section {
  padding: 0 0 44px;
  margin-bottom: 44px;
  border-bottom: 1px solid var(--rule);
}

.legal-copy h2,
.support-grid h2,
.support-contact h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.35rem);
  line-height: 1.08;
}

.legal-copy p:last-child,
.support-grid p:last-child {
  margin-bottom: 0;
}

.support-intro .button {
  margin-top: 20px;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ink);
}

.support-grid section {
  min-height: 360px;
  padding: 30px 44px 52px 0;
  border-bottom: 1px solid var(--rule);
}

.support-grid section:nth-child(even) {
  padding-right: 0;
  padding-left: 44px;
  border-left: 1px solid var(--rule);
}

.support-number {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.support-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(44px, 8vw, 120px);
  margin-top: clamp(80px, 11vw, 140px);
  padding-top: 28px;
  border-top: 1px solid var(--ink);
}

.not-found {
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: 100svh;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px var(--gutter);
}

.not-found img {
  width: 72px;
  height: 72px;
  margin-bottom: 52px;
  border-radius: 17px;
}

.not-found h1 {
  margin-bottom: 24px;
}

.not-found p:not(.section-context) {
  max-width: 600px;
  margin-bottom: 32px;
  font-size: 1.12rem;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
    gap: 42px;
  }

  .product-name {
    margin-bottom: 48px;
  }

  .story,
  .story-detail {
    grid-template-columns: 1fr 1fr;
  }

  .story-copy {
    padding-left: 44px;
    padding-right: 44px;
  }

  .story-media {
    padding-left: 50px;
    padding-right: 50px;
  }

  .surface-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .surface-list article:nth-child(3) {
    border-left: 0;
  }

  .premium-features {
    grid-template-columns: repeat(2, 1fr);
  }

  .premium-features p:nth-child(3n + 2),
  .premium-features p:nth-child(3n + 3) {
    padding-left: 0;
    border-left: 0;
  }

  .premium-features p:nth-child(even) {
    padding-left: 24px;
    border-left: 1px solid #3c3f3c;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 70px;
  }

  .site-header {
    min-height: 62px;
  }

  .has-nav-toggle .nav-toggle {
    display: inline-flex;
    align-items: center;
  }

  .has-nav-toggle .site-header nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px var(--gutter) 16px;
    background: var(--page);
    border-bottom: 1px solid var(--ink);
  }

  .has-nav-toggle.nav-open .site-header nav {
    display: flex;
  }

  .has-nav-toggle .site-header nav a {
    padding: 11px 0;
    border-bottom: 1px solid var(--rule);
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(215px, 0.55fr);
    gap: 26px;
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 72px;
  }

  .product-name {
    margin-bottom: 34px;
  }

  .hero-lead {
    font-size: 1.08rem;
  }

  .product-frame-hero {
    border-radius: 34px;
  }

  .product-frame-hero img {
    border-radius: 28px;
  }

  .product-caption {
    display: block;
  }

  .product-caption span {
    display: block;
    margin-top: 4px;
  }

  .proof-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-line p:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--rule);
  }

  .proof-line p:nth-child(4) {
    border-top: 1px solid var(--rule);
  }

  .intro {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }

  .service-points {
    grid-column: 1;
    grid-template-columns: 1fr;
    margin-top: 35px;
  }

  .service-points div,
  .service-points div:not(:first-child) {
    padding: 19px 0;
    border-left: 0;
    border-bottom: 1px solid var(--rule);
  }

  .story,
  .story-detail {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    min-height: 660px;
  }

  .story-copy {
    padding: 64px 34px;
  }

  .story-media {
    min-height: 660px;
    padding: 50px 34px;
  }

  .story-detail .story-copy {
    order: 2;
  }

  .story-detail .story-media {
    order: 1;
  }

  .commute {
    grid-template-columns: 1fr 0.72fr;
    gap: 42px;
  }

  .surfaces-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .premium-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .premium-intro .section-context {
    margin-bottom: 0;
  }

  .trust,
  .faq {
    grid-template-columns: 1fr;
  }

  .final-cta {
    grid-template-columns: auto 1fr;
  }

  .final-cta .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-summary {
    position: static;
  }

  .footer-legal {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(3.15rem, 15vw, 4.8rem);
  }

  h2 {
    font-size: clamp(2.2rem, 11vw, 3.5rem);
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 42px;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .product-name {
    margin-bottom: 30px;
  }

  .hero-product {
    grid-template-columns: minmax(0, 1fr) 96px;
    gap: 18px;
    padding-top: 22px;
  }

  .product-frame-hero {
    width: min(255px, 100%);
    margin-left: 0;
  }

  .product-caption {
    align-self: end;
    margin: 0;
    padding-top: 10px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .proof-line {
    margin-right: 0;
    margin-left: 0;
  }

  .story,
  .story-detail {
    grid-template-columns: 1fr;
  }

  .story-media {
    min-height: auto;
    padding: 60px var(--gutter);
  }

  .story-copy {
    padding: 68px var(--gutter);
  }

  .story-picker .story-media {
    order: 2;
  }

  .story-picker .story-copy {
    order: 1;
  }

  .story-detail .story-media {
    order: 2;
  }

  .story-detail .story-copy {
    order: 1;
  }

  .product-frame-story {
    width: min(270px, 100%);
  }

  .commute {
    grid-template-columns: 1fr;
  }

  .commute-media {
    justify-self: start;
  }

  .product-frame-commute {
    width: min(270px, 100%);
  }

  .surface-list {
    grid-template-columns: 1fr;
  }

  .surface-list article,
  .surface-list article:not(:first-child) {
    min-height: auto;
    padding: 20px 0;
    border-left: 0;
    border-bottom: 1px solid var(--rule-strong);
  }

  .premium-features {
    grid-template-columns: 1fr;
  }

  .premium-features p,
  .premium-features p:nth-child(even) {
    min-height: auto;
    padding: 16px 0;
    border-left: 0;
  }

  .price-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 26px 0;
  }

  .price-row-yearly {
    padding-left: 16px;
  }

  .price {
    justify-content: space-between;
    text-align: left;
  }

  .comparison-wrap {
    margin-top: 72px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .support-grid,
  .support-contact {
    grid-template-columns: 1fr;
  }

  .support-grid section,
  .support-grid section:nth-child(even) {
    min-height: auto;
    padding: 30px 0 42px;
    border-left: 0;
  }

  .footer-legal {
    grid-column: 1;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
