:root {
  --bg: #f7f4ef;
  --bg-soft: #fbfaf7;
  --surface: #ffffff;
  --surface-warm: #f0ede8;
  --text: #111111;
  --muted: #625d57;
  --line: #e7e2dc;
  --orange: #ff6338;
  --orange-dark: #c84320;
  --orange-deep: #a93217;
  --orange-soft: #fff0ea;
  --green: #34c759;
  --green-dark: #1d7a38;
  --green-soft: #e9f8ee;
  --blue: #0a84ff;
  --blue-dark: #0066c7;
  --blue-soft: #e8f3ff;
  --amber: #ff9f0a;
  --amber-dark: #955500;
  --amber-soft: #fff5e3;
  --shadow-sm: 0 10px 24px rgba(24, 21, 18, 0.06);
  --shadow-md: 0 22px 55px rgba(24, 21, 18, 0.12);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --header-height: 76px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

p {
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.62;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 15ch;
  font-size: clamp(2.85rem, 6.8vw, 4.75rem);
}

h2 {
  max-width: 13ch;
  font-size: clamp(2.1rem, 7vw, 4.15rem);
}

h3 {
  font-size: 1.3rem;
}

button,
input,
select {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.narrow {
  max-width: 820px;
}

.section-pad {
  padding: 86px 0;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

.compact-top {
  padding-top: 34px;
}

.band {
  background:
    radial-gradient(circle at top left, rgba(255, 99, 56, 0.08), transparent 34rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0));
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px max(18px, calc((100vw - var(--container)) / 2));
  background: rgba(247, 244, 239, 0.86);
  border-bottom: 1px solid rgba(231, 226, 220, 0.72);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 1.05rem;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  overflow: hidden;
  color: #fff;
  background: linear-gradient(145deg, #171717, #2b2b2b);
  border-radius: 12px;
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.16);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-mark::after {
  content: attr(data-letter);
  position: absolute;
  font-weight: 950;
  font-size: 1.1rem;
}

.brand-mark.has-image::after {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-nav a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  color: #3d3935;
  border-radius: 999px;
  font-weight: 750;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.site-nav a:hover {
  background: var(--surface-warm);
  transform: translateY(-1px);
}

.site-nav .nav-cta {
  color: #fff;
  background: var(--orange-dark);
  box-shadow: 0 10px 22px rgba(255, 99, 56, 0.24);
}

.site-nav .nav-cta:hover {
  color: #fff;
  background: var(--orange-deep);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 99px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 18%, rgba(255, 99, 56, 0.16), transparent 24rem),
    radial-gradient(circle at 18% 82%, rgba(52, 199, 89, 0.12), transparent 23rem);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.75fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
}

.hero-subtitle {
  max-width: 620px;
  color: #5f5a54;
  font-size: clamp(1.16rem, 3vw, 1.42rem);
  line-height: 1.58;
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero-platform {
  margin: 18px 0 0;
  color: #4d4944;
  font-size: 0.95rem;
  font-weight: 800;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 22px;
  border: 0;
  border-radius: 18px;
  cursor: pointer;
  font-weight: 900;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button:focus-visible,
a:focus-visible,
.faq-question:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(10, 132, 255, 0.34);
  outline-offset: 3px;
}

.button-primary {
  color: #fff;
  background: var(--orange-dark);
  box-shadow: 0 16px 32px rgba(255, 99, 56, 0.26);
}

.button-primary:hover {
  background: var(--orange-deep);
  box-shadow: 0 18px 34px rgba(255, 99, 56, 0.32);
}

.button-secondary {
  color: var(--text);
  background: var(--surface);
  box-shadow: inset 0 0 0 1px var(--line), var(--shadow-sm);
}

.hero-visual {
  min-height: 560px;
  display: grid;
  place-items: center;
}

.phone-stack {
  position: relative;
  width: min(100%, 390px);
  min-height: 580px;
}

.phone-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: #111;
  border: 10px solid #111;
  border-radius: 42px;
  box-shadow: var(--shadow-md);
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 2;
  width: 86px;
  height: 24px;
  background: #111;
  border-radius: 0 0 16px 16px;
  transform: translateX(-50%);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  background: var(--bg-soft);
}

.phone-main {
  width: 315px;
  aspect-ratio: 1320 / 2868;
  margin-inline: auto;
}

.mini-card {
  position: absolute;
  z-index: 4;
  margin: 0;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.mini-card span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.mini-card strong {
  display: block;
  margin-top: 4px;
  font-size: 1.35rem;
}

.macro-card {
  right: -18px;
  top: 76px;
  width: 160px;
}

.progress {
  height: 8px;
  margin-top: 12px;
  overflow: hidden;
  background: #dfe9df;
  border-radius: 99px;
}

.progress span {
  height: 100%;
  background: var(--green);
}

.section-heading {
  display: grid;
  justify-items: center;
  margin-bottom: 34px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  max-width: 650px;
  font-size: 1.08rem;
}

.section-heading.align-left {
  justify-items: start;
  text-align: left;
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

.card,
.feature-card,
.waitlist-form,
.legal-doc {
  background: var(--surface);
  border: 1px solid rgba(231, 226, 220, 0.88);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.card {
  padding: 28px;
}

.card p,
.feature-card p {
  margin-bottom: 0;
}

.split-grid,
.early-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
}

.flow-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.flow-step {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 22px;
}

.flow-step span {
  display: grid;
  width: 30px;
  height: 30px;
  margin-bottom: 12px;
  place-items: center;
  color: var(--orange);
  background: var(--orange-soft);
  border-radius: 10px;
  font-weight: 900;
}

.flow-step strong {
  display: block;
  line-height: 1.15;
}

.flow-step p {
  margin: 8px 0 0;
  font-size: 0.98rem;
}

.flow-step.success {
  background: #f7fff9;
  border-color: #ccefd5;
}

.flow-step.signature {
  color: #fff;
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  box-shadow: 0 12px 26px rgba(255, 99, 56, 0.24);
}

.flow-step.signature span {
  color: var(--orange-dark);
  background: #fff;
}

.flow-step.signature p {
  color: rgba(255, 255, 255, 0.88);
}

.flow-arrow {
  color: var(--muted);
  font-weight: 900;
}

.macro {
  margin-right: 6px;
  font-weight: 900;
}

.protein {
  color: var(--green-dark);
}

.carbs {
  color: var(--blue-dark);
}

.fat {
  color: var(--amber-dark);
}

.feature-card {
  padding: 24px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.feature-card-signature {
  background: #fff8f4;
  border-color: rgba(255, 99, 56, 0.58);
  box-shadow: 0 14px 30px rgba(255, 99, 56, 0.1);
}

.feature-card-signature .feature-icon {
  color: #fff;
  background: var(--orange-dark);
}

.feature-kicker {
  margin: 0 0 12px;
  color: var(--orange-dark) !important;
  font-size: 0.75rem !important;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.feature-card:hover,
.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--orange);
  background: var(--orange-soft);
  border-radius: 15px;
}

.feature-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.repeat-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 28px;
  padding: 24px 26px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.repeat-cta h3 {
  margin: 0;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  line-height: 1.2;
}

.repeat-cta .button {
  min-width: 190px;
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.screenshot-item {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.screenshot-item p {
  margin: 0;
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 900;
  text-align: center;
}

.showcase-phone {
  aspect-ratio: 9 / 19.5;
  max-height: 700px;
}

.screenshot-item:nth-child(2) {
  margin-top: 38px;
}

.screenshot-item:nth-child(3) {
  margin-top: 76px;
}

.screenshot-item:nth-child(4) {
  margin-top: 114px;
}

.early-grid {
  padding: clamp(24px, 5vw, 42px);
  background:
    linear-gradient(135deg, rgba(255, 99, 56, 0.1), rgba(52, 199, 89, 0.08)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.waitlist-form {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.waitlist-form label {
  color: #312d29;
  font-weight: 850;
}

.optional {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.waitlist-form input,
.waitlist-form select {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  color: var(--text);
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.waitlist-form input[aria-invalid="true"],
.waitlist-form select[aria-invalid="true"] {
  border-color: #c9342f;
  box-shadow: 0 0 0 3px rgba(201, 52, 47, 0.12);
}

.field-error {
  min-height: 0;
  color: #a42b27;
  font-size: 0.88rem;
  font-weight: 750;
}

.field-error:not(:empty) {
  min-height: 20px;
  margin-top: -4px;
}

.waitlist-form .button[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-message {
  min-height: 24px;
  margin: 4px 0 0;
  color: var(--green-dark);
  font-weight: 800;
}

.form-message.is-error {
  color: #a42b27;
}

.form-message.is-duplicate {
  color: #5b4a18;
}

.form-message:focus {
  outline: 3px solid rgba(10, 132, 255, 0.28);
  outline-offset: 4px;
}

.form-consent {
  margin: 4px 0 0;
  color: #625d57;
  font-size: 0.9rem;
  line-height: 1.5;
}

.form-consent a {
  color: var(--orange-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}

.faq-item h3 {
  margin: 0;
}

.faq-question {
  width: 100%;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: var(--text);
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.35;
  text-align: left;
}

.faq-question:hover {
  color: var(--orange-dark);
}

.faq-icon {
  position: relative;
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--orange);
  background: var(--orange-soft);
  border-radius: 50%;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-question[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-panel {
  display: grid;
  grid-template-rows: 1fr;
  opacity: 1;
  transition: grid-template-rows 220ms ease, opacity 160ms ease;
}

.faq-panel-inner {
  min-height: 0;
  overflow: hidden;
}

.faq-enhanced .faq-panel {
  grid-template-rows: 0fr;
  opacity: 0;
}

.faq-enhanced .faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-panel p {
  margin: 0;
  padding: 0 20px 20px;
  color: #5a554f;
  font-size: 1.0625rem;
  line-height: 1.62;
}

.faq-panel p a {
  color: var(--orange-dark);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.site-footer {
  padding: 32px 0;
  background: #111;
  color: #fff;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-company {
  display: block;
  margin-top: 0.35rem;
}

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  font-weight: 750;
}

.site-footer a:hover {
  color: #fff;
}

.legal-main {
  padding: 58px 0 82px;
}

.legal-doc {
  padding: clamp(24px, 5vw, 46px);
}

.legal-doc h1 {
  max-width: 100%;
  margin-bottom: 24px;
  font-size: clamp(2.5rem, 8vw, 4.5rem);
}

.legal-doc h2 {
  max-width: 100%;
  margin: 34px 0 10px;
  font-size: clamp(1.35rem, 4vw, 1.9rem);
}

.legal-doc p,
.legal-doc li {
  color: #5f5a54;
  font-size: 1.03rem;
}

.legal-doc a {
  color: var(--orange-dark);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.legal-doc ul {
  padding-left: 1.2rem;
}

.shot-missing {
  display: grid;
  min-height: 100%;
  place-items: center;
  padding: 28px;
  background:
    linear-gradient(180deg, var(--bg-soft), var(--surface-warm));
  color: var(--muted);
  text-align: center;
  font-weight: 850;
}

.shot-missing::before {
  content: "Replace with app screenshot";
}

.reveal,
.reveal-on-load {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 620ms ease, transform 620ms ease;
}

.js-animations .reveal,
.js-animations .reveal-on-load {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.is-visible,
.reveal-on-load.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 120ms;
  animation-delay: 900ms;
}

.delay-2 {
  transition-delay: 220ms;
  animation-delay: 1400ms;
}

.delay-3 {
  transition-delay: 320ms;
  animation-delay: 1700ms;
}

.float-soft {
  animation: floatSoft 6.5s ease-in-out infinite;
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

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

@media (max-width: 1100px) and (min-width: 941px) {
  .split-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 4.1rem;
  }
}

@media (max-width: 940px) {
  .hero-grid,
  .split-grid,
  .early-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    min-height: 500px;
  }

  .phone-stack {
    min-height: 500px;
  }

  .phone-main {
    width: min(82vw, 300px);
  }

  .card-grid.three,
  .card-grid.features,
  .screenshot-grid {
    grid-template-columns: 1fr 1fr;
  }

  .flow-card {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    transform: rotate(90deg);
    justify-self: center;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 68px;
  }

  .container {
    width: min(100% - 28px, var(--container));
  }

  .section-pad {
    padding: 64px 0;
  }

  .compact-top {
    padding-top: 20px;
  }

  .site-header {
    padding: 11px 14px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 12px auto;
    display: grid;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    justify-content: flex-start;
    min-height: 48px;
  }

  .legal-nav {
    position: static;
    display: flex;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .legal-nav a {
    min-height: 44px;
    padding: 8px 10px;
    font-size: 0.94rem;
  }

  h1 {
    max-width: 10ch;
  }

  h2 {
    max-width: 12ch;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .repeat-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 22px;
  }

  .repeat-cta .button {
    min-width: 0;
  }

  .hero-visual {
    min-height: 470px;
  }

  .phone-main {
    width: min(82vw, 276px);
    border-radius: 36px;
  }

  .mini-card {
    display: none;
  }

  .card-grid.three,
  .card-grid.features,
  .screenshot-grid {
    grid-template-columns: 1fr;
  }

  .showcase-phone,
  .screenshot-item:nth-child(2),
  .screenshot-item:nth-child(3),
  .screenshot-item:nth-child(4) {
    margin-top: 0;
  }

  .showcase-phone {
    width: min(82vw, 315px);
    margin-inline: auto;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand {
    font-size: 1rem;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }

  .card,
  .feature-card {
    padding: 22px;
  }

  .phone-main {
    width: min(86vw, 258px);
  }

  .phone-frame {
    border-width: 8px;
  }

  .phone-frame::before {
    width: 72px;
    height: 20px;
  }
}

@media (max-width: 340px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  h1 {
    font-size: 2.55rem;
  }

  .site-header {
    padding-inline: 10px;
  }

  .brand {
    gap: 7px;
    font-size: 0.94rem;
  }
}
