:root {
  --bg: #f4efe6;
  --surface: rgba(255, 250, 243, 0.8);
  --surface-strong: #fffaf3;
  --surface-ink: #2a201b;
  --muted: #6d5b52;
  --line: rgba(75, 53, 40, 0.14);
  --accent: #0e9f6e;
  --accent-deep: #0b6f56;
  --accent-soft: #d6f6e8;
  --sand: #eed8bc;
  --shadow: 0 24px 80px rgba(49, 30, 17, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--surface-ink);
  font-family: "Instrument Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(14, 159, 110, 0.18), transparent 30%),
    radial-gradient(circle at top right, rgba(242, 177, 79, 0.2), transparent 24%),
    linear-gradient(180deg, #f8f2e8 0%, #f2eadf 48%, #efe6db 100%);
}

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

.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 48px;
}

.topbar,
.hero,
.trust-strip,
.section,
.final-cta,
.footer {
  position: relative;
  z-index: 1;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(75, 53, 40, 0.1);
  box-shadow: 0 14px 34px rgba(49, 30, 17, 0.08);
  backdrop-filter: blur(10px);
  font-weight: 700;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  overflow: hidden;
  background: linear-gradient(180deg, #eff9f4 0%, #ffffff 100%);
  border: 1px solid rgba(14, 159, 110, 0.16);
  box-shadow: 0 10px 22px rgba(14, 159, 110, 0.14);
}

.brand-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(0.98);
}

.brand-text {
  font-size: 1.18rem;
  letter-spacing: 0.01em;
  line-height: 1;
  color: #19110d;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.nav-cta {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.58);
  font-weight: 600;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 32px;
  align-items: center;
  min-height: calc(100vh - 112px);
  padding: 6px 0 12px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent-deep);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section-intro h2,
.final-cta h2 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.06;
  text-wrap: balance;
}

.hero h1 {
  max-width: 10ch;
  font-size: clamp(2.7rem, 5.2vw, 4.55rem);
  color: #342722;
  line-height: 0.98;
}

.hero-text {
  max-width: 48ch;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.66;
}

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

.button {
  min-height: 52px;
  padding: 0 24px;
  font-weight: 700;
  font-size: 0.98rem;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #129d84 100%);
  color: #fff;
  box-shadow: 0 18px 36px rgba(14, 159, 110, 0.26);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.56);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-meta span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-panel {
  position: relative;
}

.phone-frame {
  position: relative;
  max-width: 590px;
  margin-left: auto;
  padding: 14px;
  border: 1px solid rgba(31, 21, 16, 0.08);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(250, 242, 233, 0.88)),
    rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.screen {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  padding: 16px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(14, 159, 110, 0.18), transparent 34%),
    linear-gradient(180deg, #fffdf8 0%, #f2ece2 100%);
}

.shot-screen {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.shot-frame {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(244, 237, 227, 0.94)),
    #fff;
  box-shadow: inset 0 0 0 1px rgba(75, 53, 40, 0.06);
}

.shot-frame-hero {
  min-height: 438px;
  padding: 14px 8px 0;
}

.app-shot {
  display: block;
  width: 100%;
  height: auto;
}

.app-shot-hero {
  width: auto;
  max-width: 100%;
  max-height: 430px;
  margin: 0 auto;
  border-radius: 26px;
  object-fit: contain;
  box-shadow: 0 24px 50px rgba(32, 24, 18, 0.18);
}

.hero-floating-card {
  position: absolute;
  max-width: 210px;
  padding: 14px 16px;
  border: 1px solid rgba(75, 53, 40, 0.1);
  border-radius: 22px;
  background: rgba(255, 252, 247, 0.82);
  box-shadow: 0 18px 34px rgba(49, 30, 17, 0.1);
  backdrop-filter: blur(12px);
}

.hero-floating-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-floating-card-top {
  top: 24px;
  left: 6px;
}

.floating-kicker {
  display: inline-block;
  color: var(--accent-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.screen-top,
.screen-grid {
  display: grid;
}

.screen-top {
  grid-template-columns: auto auto;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.screen-badge,
.screen-pill,
.screen-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.screen-pill,
.screen-badge {
  padding: 8px 12px;
  border-radius: 999px;
}

.screen-badge {
  color: var(--accent-deep);
  background: var(--accent-soft);
}

.screen-pill {
  color: #624d3d;
  background: rgba(238, 216, 188, 0.58);
}

.screen-card {
  padding: 18px;
  border: 1px solid rgba(62, 45, 35, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 30px rgba(49, 30, 17, 0.07);
}

.screen-card p,
.screen-card h2,
.screen-card h3 {
  margin: 0;
}

.screen-card-lead {
  margin-top: 18px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(14, 159, 110, 0.94), rgba(10, 111, 86, 0.9)),
    #0f8a63;
  color: #fff;
}

.screen-card-lead h2 {
  margin-top: 8px;
  font-size: 2rem;
  line-height: 1;
}

.screen-card-lead p:last-child {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.55;
}

.screen-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.screen-card h3 {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.3;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 10px 0 22px;
}

.trust-strip div {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.52);
  color: #58483f;
  font-size: 0.94rem;
  line-height: 1.45;
}

.product-gallery-section {
  overflow: hidden;
  padding: 24px 28px;
}

.product-gallery-section .section-intro h2 {
  max-width: 14ch;
  font-size: clamp(1.55rem, 2.4vw, 2.3rem);
  line-height: 1.08;
}

.product-gallery-section .section-intro {
  max-width: 700px;
}

.section-lead {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.onboarding-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.onboarding-card {
  padding: 24px;
  border: 1px solid rgba(62, 45, 35, 0.08);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(14, 159, 110, 0.08), transparent 40%),
    rgba(255, 255, 255, 0.82);
}

.onboarding-card h3 {
  margin: 16px 0 0;
  font-size: 1.35rem;
  line-height: 1.14;
}

.onboarding-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.guide-steps {
  margin: 14px 0 0;
  padding-left: 18px;
  color: #4d3e36;
  line-height: 1.66;
}

.guide-steps li + li {
  margin-top: 6px;
}

.carousel-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: 8px;
}

.carousel-note {
  max-width: 40ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.carousel-controls {
  display: flex;
  gap: 10px;
}

.carousel-nav {
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #2d211c;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.carousel-nav:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(49, 30, 17, 0.08);
}

.feature-carousel-shell {
  margin-top: 28px;
}

.feature-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(460px, 520px);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
}

.feature-carousel::-webkit-scrollbar {
  height: 10px;
}

.feature-carousel::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(75, 53, 40, 0.18);
}

.showcase-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
  padding: 20px;
  border: 1px solid rgba(62, 45, 35, 0.08);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(250, 242, 233, 0.8)),
    rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 34px rgba(49, 30, 17, 0.08);
  scroll-snap-align: start;
}

.showcase-copy {
  display: grid;
  align-content: start;
  flex: 1 1 auto;
  min-height: 0;
}

.showcase-copy h3 {
  margin: 8px 0 0;
  font-size: 1.18rem;
  line-height: 1.12;
}

.showcase-copy p:last-of-type {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.shot-frame-showcase {
  min-height: 246px;
  margin-top: auto;
  padding: 12px 10px 0;
}

.app-shot-showcase {
  width: auto;
  max-width: 100%;
  max-height: 222px;
  margin: 0 auto;
  border-radius: 28px;
  object-fit: contain;
  box-shadow: 0 20px 40px rgba(32, 24, 18, 0.16);
}

.app-shot-showcase-narrow {
  max-height: 218px;
}

.app-shot-showcase-crop {
  width: 100%;
  height: 342px;
  max-height: none;
  object-fit: cover;
}

.app-shot-showcase-nearby {
  object-position: 15% 14%;
}

.app-shot-showcase-expense {
  object-position: 17% 64%;
}

.app-shot-showcase-sight {
  object-position: 83% 64%;
}

.app-shot-showcase-safety {
  object-position: 47% 40%;
}

.workflow-steps {
  margin: 10px 0 0;
  padding-left: 18px;
  color: #4b3c34;
  line-height: 1.5;
}

.workflow-steps li + li {
  margin-top: 4px;
}

.section,
.final-cta {
  margin-top: 22px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--surface);
  backdrop-filter: blur(18px);
}

.section-alt {
  background:
    linear-gradient(135deg, rgba(238, 216, 188, 0.26), rgba(255, 255, 255, 0.78)),
    var(--surface);
}

.section-intro {
  max-width: 760px;
}

.section-intro h2,
.final-cta h2 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  max-width: 14ch;
  color: #2b201a;
  line-height: 1.08;
}

.feature-grid,
.spotlight-grid,
.blog-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card,
.spotlight-card,
.faq-item {
  border: 1px solid var(--line);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.8);
}

.feature-card,
.spotlight-card {
  padding: 24px;
}

.feature-card-accent {
  background:
    radial-gradient(circle at top right, rgba(14, 159, 110, 0.16), transparent 36%),
    rgba(255, 255, 255, 0.86);
}

.feature-kicker {
  margin: 0 0 8px;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-card h3,
.spotlight-card h3,
.faq-item summary {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.15;
}

.feature-card p:last-child,
.spotlight-card p,
.faq-item p {
  color: var(--muted);
  line-height: 1.7;
}

.spotlight-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.blog-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.blog-all-link {
  flex: 0 0 auto;
}

.blog-card {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    radial-gradient(circle at top right, rgba(14, 159, 110, 0.08), transparent 36%),
    rgba(255, 255, 255, 0.82);
}

.blog-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(214, 246, 232, 0.9);
  color: var(--accent-deep);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card h3 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.2;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.66;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 4px;
  color: #1d5f4a;
  font-weight: 700;
}

.blog-link::after {
  content: "→";
  transition: transform 180ms ease;
}

.blog-link:hover::after {
  transform: translateX(2px);
}

.spotlight-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 32px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--sand);
  color: #644733;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.faq-item {
  padding: 0 22px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0 0 22px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  background:
    radial-gradient(circle at top left, rgba(14, 159, 110, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(248, 239, 230, 0.88));
}

.final-cta > div {
  min-width: 0;
}

.final-cta h2 {
  max-width: 10ch;
  font-size: clamp(1.95rem, 3.1vw, 3rem);
  line-height: 1.04;
  text-wrap: balance;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 6px 0;
  color: #5d4f47;
}

.footer-brand {
  display: grid;
  gap: 8px;
  max-width: 320px;
}

.footer p {
  margin: 0;
  font-weight: 700;
}

.footer-brand span {
  color: #74655c;
  line-height: 1.55;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, auto));
  gap: 32px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-heading {
  color: #3d3029;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links a {
  color: #5d4f47;
}

.content-page {
  padding-top: 8px;
}

.content-shell {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
}

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

.content-card {
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: var(--surface);
  backdrop-filter: blur(18px);
}

.content-card h1,
.content-card h2 {
  margin: 0;
  font-family: "Newsreader", serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: #2b201a;
}

.content-card h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
}

.content-card h2 {
  margin-top: 26px;
  font-size: 1.6rem;
}

.content-card p,
.content-card li {
  color: var(--muted);
  line-height: 1.72;
}

.content-card ul {
  padding-left: 20px;
}

.content-grid {
  display: grid;
  gap: 18px;
  margin-top: 26px;
}

.content-grid-articles {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-note {
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(75, 53, 40, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
}

.content-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.content-fact {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid rgba(75, 53, 40, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(14, 159, 110, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.74);
}

.content-fact-label {
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.content-fact-value {
  color: #2f241f;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
}

.content-section {
  margin-top: 26px;
}

.content-section:first-of-type {
  margin-top: 30px;
}

.content-section h2 {
  margin-top: 0;
}

.content-section p {
  margin: 0;
}

.content-list {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.content-list li {
  margin: 0;
}

.content-contact-card {
  display: grid;
  gap: 12px;
  margin-top: 24px;
  padding: 20px 22px;
  border: 1px solid rgba(75, 53, 40, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, rgba(14, 159, 110, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.74);
}

.content-contact-card p,
.content-contact-card a {
  margin: 0;
}

.content-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
}

.content-back::before {
  content: "←";
}

.article-card {
  display: grid;
  gap: 28px;
}

.article-header {
  display: grid;
  gap: 14px;
}

.article-intro {
  max-width: 62ch;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.article-meta span {
  padding: 10px 14px;
  border: 1px solid rgba(75, 53, 40, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: #5d4f47;
  font-size: 0.92rem;
  font-weight: 600;
}

.article-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(75, 53, 40, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(14, 159, 110, 0.1), transparent 34%),
    rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 44px rgba(49, 30, 17, 0.1);
}

.article-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 6.8;
  object-fit: cover;
}

.article-body {
  display: grid;
  gap: 28px;
}

.article-section {
  display: grid;
  gap: 14px;
}

.article-section h2 {
  margin-top: 0;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.14;
}

.article-section h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.3;
  color: #2f241f;
}

.article-body p {
  margin: 0;
}

.article-callout {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border: 1px solid rgba(75, 53, 40, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at top right, rgba(14, 159, 110, 0.08), transparent 34%),
    rgba(255, 255, 255, 0.72);
}

.article-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-panel {
    max-width: 560px;
    margin: 0 auto;
  }

  .trust-strip,
  .feature-grid,
  .onboarding-grid,
  .blog-grid,
  .content-grid-articles,
  .content-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-section-head,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 24px, 100%);
    padding-top: 16px;
  }

  .topbar,
  .final-cta,
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 14px;
    min-height: auto;
  }

  .hero h1 {
    max-width: none;
    font-size: clamp(2.5rem, 12vw, 3.6rem);
  }

  .screen {
    min-height: auto;
  }

  .screen-grid,
  .trust-strip,
  .feature-grid,
  .spotlight-grid,
  .onboarding-grid,
  .blog-grid,
  .content-grid-articles,
  .content-facts,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .hero-floating-card {
    position: static;
    max-width: none;
    margin-top: 14px;
  }

  .shot-frame-hero {
    min-height: 360px;
  }

  .app-shot-hero,
  .app-shot-showcase {
    width: auto;
    max-width: 100%;
    height: auto;
  }

  .section,
  .final-cta {
    padding: 24px 20px;
    border-radius: 26px;
  }

  .product-gallery-section {
    padding: 24px 20px;
  }

  .hero-meta span,
  .button,
  .nav-cta {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .carousel-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-carousel {
    grid-auto-columns: minmax(280px, 86vw);
  }

  .showcase-card {
    min-height: auto;
  }

  .shot-frame-showcase {
    min-height: 228px;
  }

  .app-shot-showcase {
    max-height: 198px;
  }

  .app-shot-showcase-crop {
    height: 198px;
  }

  .footer-links {
    gap: 14px;
  }

  .content-shell {
    width: min(100% - 24px, 100%);
  }

  .content-card {
    padding: 24px 20px;
    border-radius: 26px;
  }

  .content-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .article-cta {
    align-items: flex-start;
  }
}
