:root {
  --cream: #f8f5f0;
  --cream-strong: #fff4e9;
  --card: #ffffff;
  --ink: #111111;
  --muted: #6d6259;
  --soft: #eee3d8;
  --orange: #ff6b35;
  --orange-dark: #e94e18;
  --shadow: 0 22px 70px rgba(64, 39, 22, 0.12);
  --soft-shadow: 0 12px 34px rgba(64, 39, 22, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 107, 53, 0.08), transparent 26%),
    radial-gradient(circle at 90% 6%, rgba(255, 196, 145, 0.24), transparent 24%),
    linear-gradient(180deg, #fffaf5 0%, var(--cream) 42%, #fff 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
}

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

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

.page-shell {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 250, 245, 0.88);
  border-bottom: 1px solid rgba(238, 227, 216, 0.78);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 40px));
  height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  object-fit: cover;
}

.brand-title {
  display: grid;
  line-height: 1.02;
  font-size: 22px;
}

.brand-title span {
  color: var(--orange);
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  color: #16110e;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  content: "";
  border-radius: 99px;
  background: var(--orange);
  transition: width 180ms ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta,
.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), #ff3f12);
  color: white;
  font-weight: 900;
  box-shadow: 0 16px 28px rgba(255, 107, 53, 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.nav-cta:hover,
.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 34px rgba(255, 107, 53, 0.35);
}

.hero {
  position: relative;
  width: min(1280px, 100%);
  min-height: 690px;
  margin: 0 auto;
  padding: 76px 48px 46px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: 34px;
}

.food-decor {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.decor-left {
  left: -84px;
  bottom: 16px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 52% 47%, transparent 0 42%, rgba(255, 255, 255, 0.9) 43% 46%, transparent 47%),
    url("https://images.unsplash.com/photo-1551183053-bf91a1d81141?auto=format&fit=crop&w=520&q=75") center/cover;
  box-shadow: var(--shadow);
}

.decor-right {
  right: -72px;
  top: 72px;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: url("https://images.unsplash.com/photo-1540420773420-3366772f4999?auto=format&fit=crop&w=520&q=75") center/cover;
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-phones {
  position: relative;
  z-index: 1;
}

.hero-logo {
  width: 94px;
  height: 94px;
  margin-bottom: 22px;
  border-radius: 30px;
  background: white;
  padding: 10px;
  box-shadow: var(--soft-shadow);
}

.hero h1 {
  max-width: 545px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(44px, 5.1vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
  color: var(--orange);
}

.hero p {
  max-width: 520px;
  margin: 24px 0 0;
  color: #403832;
  font-size: 20px;
  line-height: 1.65;
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 176px;
  min-height: 58px;
  padding: 10px 18px;
  border-radius: 12px;
  background: #0e0e0f;
  color: white;
  box-shadow: 0 14px 30px rgba(15, 13, 12, 0.22);
  transition: transform 180ms ease;
}

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

.store-icon {
  font-size: 25px;
  line-height: 1;
}

.store-badge small {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  line-height: 1;
}

.store-badge strong {
  display: block;
  font-size: 20px;
  line-height: 1.12;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.avatar-stack {
  display: flex;
}

.avatar-stack span,
.review-avatar {
  width: 36px;
  height: 36px;
  margin-left: -8px;
  border: 3px solid #fff;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 34%, #f5c7a6 0 18%, transparent 19%),
    linear-gradient(145deg, #32343a, #f4a375);
}

.avatar-stack span:first-child {
  margin-left: 0;
}

.stars {
  color: var(--orange);
  font-size: 18px;
  letter-spacing: 3px;
}

.rating-copy {
  margin-top: 4px;
  color: #332c27;
  font-size: 14px;
  line-height: 1.45;
}

.hero-phones {
  min-height: 640px;
}

.phone {
  position: absolute;
  overflow: hidden;
  border: 9px solid #161616;
  border-radius: 46px;
  background: #fff;
  box-shadow: 0 28px 70px rgba(19, 14, 11, 0.28);
}

.phone-front {
  left: 40px;
  top: 8px;
  z-index: 2;
  width: 338px;
  height: 650px;
}

.phone-back {
  right: 18px;
  top: 70px;
  z-index: 1;
  width: 306px;
  height: 590px;
  transform: rotate(9deg);
  opacity: 0.96;
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 4;
  width: 96px;
  height: 26px;
  transform: translateX(-50%);
  border-radius: 0 0 18px 18px;
  background: #111;
}

.screen {
  width: 100%;
  height: 100%;
  padding: 38px 16px 16px;
  background: #fffaf5;
}

.mini-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 12px;
  font-weight: 900;
}

.mini-brand img {
  width: 26px;
  height: 26px;
  border-radius: 9px;
}

.screen-dot {
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-size: 11px;
  font-weight: 900;
}

.search-pill {
  height: 40px;
  margin: 16px 0;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--soft);
  border-radius: 999px;
  background: white;
  color: #7b716a;
  font-size: 12px;
  box-shadow: 0 8px 20px rgba(64, 39, 22, 0.06);
}

.main-food {
  position: relative;
  height: 210px;
  overflow: hidden;
  border-radius: 24px;
  background: url("https://images.unsplash.com/photo-1550547660-d9450f859349?auto=format&fit=crop&w=760&q=80") center/cover;
}

.main-food::after {
  position: absolute;
  inset: auto 0 0;
  height: 62%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
}

.premium-pill {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 2;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #3a2e27;
  font-size: 12px;
  font-weight: 900;
}

.lock-pill {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
}

.screen-title {
  margin: 18px 0 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 23px;
  line-height: 1.12;
}

.meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  color: #655b54;
  font-size: 12px;
  font-weight: 800;
}

.screen-copy {
  margin: 12px 0 16px;
  color: #5c514a;
  font-size: 12px;
  line-height: 1.5;
}

.screen-button {
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), #ff3f12);
  color: white;
  font-size: 14px;
  font-weight: 900;
}

.screen-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.screen-dots span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #ded7d0;
}

.screen-dots span:first-child {
  width: 23px;
  background: var(--orange);
}

.explore-screen .chip-row {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

.chip-row span {
  padding: 8px 11px;
  border-radius: 999px;
  background: white;
  color: #5f554e;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 6px 18px rgba(64, 39, 22, 0.06);
}

.recipe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.recipe-tile {
  min-height: 170px;
  padding: 10px;
  border-radius: 22px;
  background: white;
  box-shadow: 0 10px 24px rgba(64, 39, 22, 0.08);
}

.tile-image {
  height: 96px;
  border-radius: 17px;
  background: url("https://images.unsplash.com/photo-1603894584373-5ac82b2ae398?auto=format&fit=crop&w=420&q=75") center/cover;
}

.recipe-tile:nth-child(2) .tile-image {
  background-image: url("https://images.unsplash.com/photo-1551782450-a2132b4ba21d?auto=format&fit=crop&w=420&q=75");
}

.recipe-tile:nth-child(3) .tile-image {
  background-image: url("https://images.unsplash.com/photo-1512621776951-a57141f2eefd?auto=format&fit=crop&w=420&q=75");
}

.recipe-tile:nth-child(4) .tile-image {
  background-image: url("https://images.unsplash.com/photo-1563379926898-05f4575a45d8?auto=format&fit=crop&w=420&q=75");
}

.recipe-tile strong {
  display: block;
  margin-top: 10px;
  font-size: 12px;
}

.recipe-tile small {
  display: block;
  margin-top: 5px;
  color: #6c625a;
  font-weight: 800;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-kicker {
  margin: 0 0 9px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
}

.section-heading p {
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--soft);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--soft-shadow);
}

.feature-card {
  min-height: 178px;
  padding: 32px;
  border-right: 1px solid var(--soft);
  transition: transform 180ms ease, background 180ms ease;
}

.feature-card:last-child {
  border-right: 0;
}

.feature-card:hover {
  transform: translateY(-5px);
  background: white;
}

.feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #fff0e8;
  color: var(--orange);
  font-size: 27px;
}

.feature-card h3 {
  margin: 20px 0 8px;
  font-size: 18px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.screenshots-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(248, 245, 240, 0.66));
}

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

.screenshot-card {
  text-align: center;
}

.app-screen-frame {
  position: relative;
  height: 520px;
  margin: 0 auto 18px;
  overflow: hidden;
  border-radius: 34px;
  background: transparent;
  box-shadow: none;
}

.app-screen-frame::before {
  display: none;
}

.screen-image {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  z-index: 1;
}

.screenshot-card h3 {
  margin: 0 0 7px;
  font-size: 17px;
}

.screenshot-card p {
  margin: 0 auto;
  max-width: 180px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.stats-section {
  padding-top: 32px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid #ffd2bd;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255, 245, 235, 0.94), white);
  box-shadow: var(--soft-shadow);
}

.stat-card {
  min-height: 130px;
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  border-right: 1px solid #ffd8c7;
}

.stat-card:last-child {
  border-right: 0;
}

.stat-icon {
  color: var(--orange);
  font-size: 35px;
}

.stat-card strong {
  display: block;
  color: var(--orange-dark);
  font-size: 27px;
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 7px;
  color: #302821;
  font-size: 14px;
  font-weight: 700;
}

.review-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card,
.faq-card {
  padding: 30px;
  border: 1px solid var(--soft);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 36px rgba(64, 39, 22, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.review-card:hover,
.faq-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 44px rgba(64, 39, 22, 0.13);
}

.quote {
  color: var(--orange);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 54px;
  line-height: 0.7;
}

.review-card p,
.faq-card p {
  color: #403832;
  font-size: 15px;
  line-height: 1.65;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.review-avatar {
  margin: 0;
}

.avatar-two {
  background:
    radial-gradient(circle at 50% 34%, #d59b7b 0 18%, transparent 19%),
    linear-gradient(145deg, #1d2634, #9bb4d7);
}

.avatar-three {
  background:
    radial-gradient(circle at 50% 34%, #efc2a6 0 18%, transparent 19%),
    linear-gradient(145deg, #3a2218, #d48d64);
}

.review-person strong {
  display: block;
  font-size: 14px;
}

.review-person .stars {
  font-size: 12px;
}

.faq-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.faq-card p {
  margin: 0;
  color: var(--muted);
}

.cta-section {
  width: min(1120px, calc(100% - 40px));
  margin: 32px auto 0;
  padding: 0 0 72px;
}

.cta-banner {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 8% 20%, rgba(255, 255, 255, 0.3), transparent 20%),
    linear-gradient(135deg, #ff7b39, #ff3d12);
  color: white;
  box-shadow: 0 30px 70px rgba(255, 107, 53, 0.32);
}

.cta-banner img {
  position: absolute;
  left: 64px;
  bottom: -48px;
  width: 210px;
  transform: rotate(-9deg);
  border-radius: 38px;
  box-shadow: 0 24px 50px rgba(65, 23, 6, 0.22);
}

.cta-copy {
  margin-left: min(350px, 34%);
  padding: 46px 56px 42px 0;
}

.cta-copy h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 4.1vw, 52px);
  line-height: 1.04;
}

.cta-copy p {
  max-width: 570px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.55;
}

.cta-copy .store-row {
  margin-top: 24px;
}

.site-footer {
  background: #fffaf5;
  border-top: 1px solid var(--soft);
}

.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 44px 0 28px;
  display: grid;
  grid-template-columns: 1.45fr 0.8fr 0.8fr 0.9fr;
  gap: 34px;
}

.footer-brand p,
.footer-col a,
.footer-col p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.footer-col h3 {
  margin: 0 0 14px;
  font-size: 15px;
}

.footer-col a {
  display: block;
  margin: 8px 0;
  transition: color 180ms ease;
}

.footer-col a:hover {
  color: var(--orange);
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.social-row a {
  width: 36px;
  height: 36px;
  margin: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff0e8;
  color: var(--orange);
  font-size: 13px;
  font-weight: 1000;
}

.copyright {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 30px;
  color: #8b8178;
  font-size: 13px;
}

.legal-page {
  width: min(860px, calc(100% - 40px));
  margin: 54px auto 88px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--soft);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--soft-shadow);
}

.legal-page h1 {
  margin: 8px 0 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
}

.legal-page h2 {
  margin: 34px 0 10px;
  font-size: 22px;
}

.legal-page p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.blog-hero {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0 40px;
  text-align: center;
}

.blog-hero h1 {
  max-width: 820px;
  margin: 8px auto 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.02;
}

.blog-hero p {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.7;
}

.blog-grid-section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 84px;
}

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

.blog-card {
  overflow: hidden;
  border: 1px solid var(--soft);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 42px rgba(64, 39, 22, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 56px rgba(64, 39, 22, 0.14);
}

.blog-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.blog-card div {
  padding: 24px;
}

.blog-tag {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.blog-card h2 {
  margin: 0;
  font-size: 23px;
  line-height: 1.18;
}

.blog-card p:not(.blog-tag) {
  margin: 14px 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.blog-card a {
  color: var(--orange-dark);
  font-weight: 900;
}

.blog-empty,
.article-shell {
  width: min(880px, calc(100% - 40px));
  margin: 56px auto 86px;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid var(--soft);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--soft-shadow);
}

.article-back {
  display: inline-flex;
  margin-bottom: 24px;
  color: var(--orange-dark);
  font-weight: 900;
}

.article-shell h1 {
  margin: 10px 0 16px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
}

.article-excerpt {
  color: #403832;
  font-size: 20px;
  line-height: 1.65;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 22px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.article-cover {
  width: 100%;
  max-height: 440px;
  object-fit: cover;
  border-radius: 28px;
  margin: 12px 0 34px;
  box-shadow: 0 18px 42px rgba(64, 39, 22, 0.12);
}

.article-content h2 {
  margin: 34px 0 12px;
  font-size: 30px;
}

.article-content h3 {
  margin: 26px 0 10px;
  font-size: 22px;
}

.article-content p,
.article-content li {
  color: #403832;
  font-size: 18px;
  line-height: 1.78;
}

.article-content ul {
  padding-left: 24px;
}

.article-cta {
  margin-top: 42px;
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--orange), #ff3d12);
  color: white;
  text-align: center;
}

.article-cta h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(30px, 4vw, 46px);
}

.article-cta p {
  color: rgba(255, 255, 255, 0.88);
}

.article-cta .primary-cta {
  background: white;
  color: var(--orange-dark);
  box-shadow: none;
}

.blog-cta {
  width: min(940px, calc(100% - 40px));
  margin: 0 auto 82px;
  padding: clamp(34px, 5vw, 58px);
  border-radius: 34px;
  background: linear-gradient(135deg, var(--orange), #ff3d12);
  color: white;
  text-align: center;
  box-shadow: 0 30px 70px rgba(255, 107, 53, 0.28);
}

.blog-cta h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(32px, 4.5vw, 54px);
}

.blog-cta p {
  margin: 12px auto 24px;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  line-height: 1.55;
}

.blog-cta .primary-cta {
  background: white;
  color: var(--orange-dark);
  box-shadow: none;
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 54px;
    text-align: center;
  }

  .hero-logo,
  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .store-row,
  .rating-row {
    justify-content: center;
  }

  .hero-phones {
    width: min(720px, 100%);
    min-height: 620px;
    margin: 0 auto;
  }

  .phone-front {
    left: 14%;
  }

  .phone-back {
    right: 8%;
  }

  .feature-strip,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card:nth-child(2),
  .stat-card:nth-child(2) {
    border-right: 0;
  }

  .feature-card:nth-child(-n + 2),
  .stat-card:nth-child(-n + 2) {
    border-bottom: 1px solid var(--soft);
  }

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

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

@media (max-width: 820px) {
  .nav {
    width: min(100% - 28px, 680px);
    height: auto;
    padding: 14px 0;
    flex-wrap: wrap;
  }

  .brand-title {
    font-size: 18px;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
    justify-content: flex-start;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-cta {
    min-height: 42px;
    padding: 0 16px;
    font-size: 13px;
  }

  .hero {
    padding: 38px 20px 34px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 62px);
  }

  .hero p {
    font-size: 17px;
  }

  .hero-phones {
    min-height: 520px;
  }

  .phone-front {
    left: 50%;
    width: 292px;
    height: 560px;
    transform: translateX(-50%);
  }

  .phone-back {
    display: none;
  }

  .decor-left,
  .decor-right {
    opacity: 0.34;
  }

  .section,
  .cta-section {
    width: calc(100% - 28px);
    padding-top: 62px;
  }

  .feature-strip,
  .stats-grid,
  .review-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .feature-card,
  .stat-card {
    border-right: 0;
    border-bottom: 1px solid var(--soft);
  }

  .feature-card:last-child,
  .stat-card:last-child {
    border-bottom: 0;
  }

  .screenshot-row {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .app-screen-frame {
    height: min(560px, 118vw);
  }

  .cta-banner img {
    display: none;
  }

  .cta-copy {
    margin-left: 0;
    padding: 42px 24px;
    text-align: center;
  }

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

@media (max-width: 540px) {
  .store-row {
    flex-direction: column;
    align-items: stretch;
  }

  .store-badge {
    width: 100%;
    justify-content: center;
  }

  .rating-row {
    align-items: flex-start;
    text-align: left;
  }

  .phone-front {
    width: min(286px, calc(100vw - 54px));
  }

  .screen {
    padding-left: 13px;
    padding-right: 13px;
  }

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

/* Hero refresh: keep the first screen compact and use real app preview images. */
.hero {
  min-height: calc(100vh - 84px);
  max-height: 720px;
  padding-bottom: 28px;
  padding-top: 38px;
}

.hero-logo {
  height: 76px;
  margin-bottom: 18px;
  width: 76px;
}

.hero h1 {
  font-size: clamp(42px, 4.5vw, 68px);
  max-width: 520px;
}

.hero p {
  font-size: 18px;
  line-height: 1.55;
  margin-top: 18px;
}

.hero .store-row,
.hero .rating-row {
  margin-top: 22px;
}

.hero-phones {
  height: min(590px, calc(100vh - 128px));
  min-height: 480px;
}

.phone {
  background: transparent;
  border: 0;
  box-shadow: none;
}

.phone .screen,
.phone .phone-notch {
  display: none;
}

.phone::before {
  display: none;
}

.phone::after {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  inset: 0;
  position: absolute;
  z-index: 1;
}

.phone-front {
  height: 555px;
  left: 10px;
  top: 0;
  width: 390px;
}

.phone-front::after {
  background-image: url("./assets/screens/home-real.png");
}

.phone-back {
  height: 500px;
  opacity: 0.9;
  right: -12px;
  top: 78px;
  transform: rotate(8deg);
  width: 335px;
}

.phone-back::after {
  background-image: url("./assets/screens/explore-real.png");
  background-size: contain;
  inset: 0;
}

@media (max-width: 1100px) {
  .hero {
    max-height: none;
  }

  .hero-phones {
    height: 610px;
    min-height: 610px;
  }

  .phone-front {
    left: 50%;
    transform: translateX(-58%);
  }

  .phone-back {
    right: 5%;
  }
}

@media (max-width: 820px) {
  .hero {
    padding-top: 30px;
  }

  .hero-phones {
    height: 560px;
    min-height: 560px;
  }

  .phone-front {
    height: 540px;
    left: 50%;
    transform: translateX(-50%);
    width: min(380px, calc(100vw - 24px));
  }

  .phone-back {
    display: none;
  }
}

/* Above-the-fold hero fit using transparent app mockups. */
@media (min-width: 1110px) {
  .nav {
    height: 72px;
  }

  .brand img {
    height: 46px;
    width: 46px;
  }

  .brand-title {
    font-size: 20px;
  }

  .nav-cta {
    min-height: 44px;
    padding: 0 22px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.82fr) minmax(440px, 0.98fr);
    height: calc(100vh - 72px);
    max-height: 640px;
    min-height: 560px;
    overflow: hidden;
    padding: 20px 48px 18px;
  }

  .hero-logo {
    height: 60px;
    margin-bottom: 12px;
    padding: 7px;
    width: 60px;
  }

  .hero h1 {
    font-size: clamp(40px, 4vw, 58px);
    max-width: 500px;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.48;
    margin-top: 14px;
    max-width: 520px;
  }

  .hero .store-row {
    gap: 10px;
    margin-top: 16px;
  }

  .hero .store-badge {
    min-height: 46px;
    min-width: 158px;
    padding: 7px 14px;
  }

  .hero .store-badge strong {
    font-size: 16px;
  }

  .hero .rating-row {
    margin-top: 14px;
  }

  .hero-phones {
    align-self: center;
    height: min(500px, calc(100vh - 104px));
    min-height: 455px;
  }

  .phone {
    box-shadow: none;
    overflow: visible;
  }

  .phone::after {
    background-size: contain;
    inset: 0;
  }

  .phone-front {
    height: 500px;
    left: 34px;
    top: 0;
    width: 330px;
  }

  .phone-back {
    height: 455px;
    right: 38px;
    top: 34px;
    transform: rotate(6deg);
    width: 300px;
  }

  .decor-left {
    bottom: -46px;
    opacity: 0.32;
    width: 190px;
    height: 190px;
  }

  .decor-right {
    opacity: 0.38;
    right: -92px;
    top: 74px;
  }
}

@media (min-width: 1400px) {
  .hero {
    width: min(1360px, 100%);
  }

  .phone-front {
    left: 48px;
  }

  .phone-back {
    right: 28px;
  }
}
