:root {
  --bg: #f7f6f3;
  --bg-strong: #ffffff;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --surface-dark: #171419;
  --ink: #151515;
  --muted: #646260;
  --line: rgba(22, 18, 23, 0.08);
  --blue: #2f7df6;
  --green: #24a66b;
  --orange: #d98545;
  --shadow: 0 24px 70px rgba(27, 25, 22, 0.09);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: min(1160px, calc(100vw - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7f6f3 0%, #ffffff 46%, #f8f8f6 100%);
}

html.modal-open,
body.modal-open {
  overflow: hidden;
  overscroll-behavior: none;
}

html.menu-open,
body.menu-open {
  overscroll-behavior: none;
}

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

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

button,
input {
  font: inherit;
}

.page-glow {
  display: none;
}

.page-glow-left {
  top: -10rem;
  left: -8rem;
  background: rgba(40, 195, 111, 0.3);
}

.page-glow-right {
  top: 20rem;
  right: -10rem;
  background: rgba(31, 130, 255, 0.26);
}

.container {
  width: var(--container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.section {
  padding: 2.5rem 0 4rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(20px);
  background: rgba(247, 246, 243, 0.82);
  border-bottom: 1px solid rgba(22, 18, 23, 0.06);
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.header-row,
.footer-row,
.hero-grid,
.support-grid {
  display: grid;
  gap: 1.5rem;
}

.header-row {
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 5.25rem;
  transition: min-height 180ms ease;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 0.8rem;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.brand,
.footer-brand {
  display: inline-flex;
  gap: 0.9rem;
  align-items: center;
}

.brand img,
.footer-brand img {
  width: 3rem;
  height: 3rem;
  border-radius: 0.9rem;
  box-shadow: 0 12px 28px rgba(27, 25, 22, 0.1);
  transition:
    width 180ms ease,
    height 180ms ease,
    border-radius 180ms ease;
}

.brand strong,
.footer-brand strong {
  display: block;
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  font-size: 1.1rem;
}

.brand span,
.footer-brand span {
  color: var(--muted);
  font-size: 0.92rem;
  transition: opacity 180ms ease;
}

.main-nav {
  display: inline-flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.main-nav a,
.footer-links a {
  color: var(--muted);
  font-weight: 700;
  transition: color 180ms ease;
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.lang-toggle,
.button,
.filter-chip,
.recipe-card button,
.modal-close {
  border: 0;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.9rem;
  background: var(--surface-strong);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(27, 25, 22, 0.07);
  color: var(--ink);
  font-weight: 800;
}

.menu-toggle {
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  width: 3.2rem;
  height: 3.2rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--surface-strong);
  box-shadow: 0 16px 40px rgba(57, 32, 61, 0.08);
}

.menu-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
}

.mobile-menu {
  position: fixed;
  top: 5.25rem;
  left: 0;
  right: 0;
  z-index: 11;
  max-height: calc(100dvh - 5.25rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding: 0.4rem 0 0.75rem;
  background: linear-gradient(180deg, rgba(245, 239, 243, 0.96), rgba(245, 239, 243, 0.9));
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(22, 18, 23, 0.06);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu-inner {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: var(--shadow);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mobile-menu-header strong {
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  font-size: 1.05rem;
}

.mobile-menu-close {
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(22, 18, 23, 0.06);
  color: var(--ink);
  font-size: 1.75rem;
  line-height: 1;
  transform: rotate(45deg);
}

.mobile-menu-nav {
  display: grid;
  gap: 0.65rem;
}

.mobile-menu-nav a {
  display: flex;
  align-items: center;
  min-height: 3.15rem;
  padding: 0.75rem 0.95rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-weight: 800;
  box-shadow: inset 0 0 0 1px rgba(22, 18, 23, 0.05);
}

.mobile-lang-toggle {
  justify-self: start;
}

.lang-toggle-label {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 0.82rem;
}

.hero {
  padding-top: 4rem;
}

.compact-hero {
  padding-bottom: 1.25rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
}

.hero-copy {
  grid-column: 1;
}

.hero-visual {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: flex;
  justify-content: end;
  align-items: center;
}

.hero-lower {
  grid-column: 1;
}

.eyebrow,
.mini-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
}

h1,
h2,
h3 {
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  line-height: 1;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  font-size: clamp(2.7rem, 6vw, 4.45rem);
  margin-top: 1rem;
}

h2 {
  font-size: clamp(2rem, 4.3vw, 3.4rem);
}

h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text,
.section-heading p,
.support-copy p {
  font-size: 1.08rem;
  max-width: 42rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.25rem 0 1.5rem;
}

.app-store-badge {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: min(100%, 19rem);
  padding: 0.95rem 1.2rem 1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #1e1e22 0%, #070709 100%);
  color: #fff;
  box-shadow:
    0 22px 40px rgba(7, 7, 9, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.app-store-badge:hover {
  transform: translateY(-2px);
  box-shadow:
    0 28px 52px rgba(7, 7, 9, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16);
  filter: brightness(1.03);
}

.app-store-badge-kicker {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.app-store-badge-title {
  color: #fff;
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  font-size: 1.32rem;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-highlight {
  display: grid;
  gap: 0.9rem;
  max-width: 42rem;
  margin-bottom: 0;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.94), rgba(247, 246, 243, 0.92));
  border: 1px solid rgba(22, 18, 23, 0.06);
  box-shadow: 0 18px 44px rgba(27, 25, 22, 0.07);
}

.hero-highlight strong {
  font-size: 1rem;
  line-height: 1.45;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  font-weight: 800;
}

.button:hover,
.lang-toggle:hover,
.recipe-card button:hover,
.filter-chip:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 20px 40px rgba(31, 130, 255, 0.26);
}

.button-secondary {
  background: var(--surface-strong);
  color: var(--ink);
  box-shadow: 0 16px 40px rgba(57, 32, 61, 0.08);
}

.hero-stats {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat-card,
.feature-card,
.recipe-card,
.support-info-card,
.recipe-notice,
.trust-grid > div,
.device-panel {
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(22, 18, 23, 0.06);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-lg);
}

.stat-card span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.stat-card strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1rem;
}

.hero-menu-panel {
  width: min(100%, 25rem);
  display: grid;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(247, 246, 243, 0.82));
  border: 1px solid rgba(22, 18, 23, 0.06);
  box-shadow: var(--shadow);
}

.hero-menu-item {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  align-items: center;
  gap: 0.9rem;
  min-height: 4.4rem;
  padding: 0.72rem 0.85rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(22, 18, 23, 0.05);
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 12px 34px rgba(27, 25, 22, 0.05);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.hero-menu-item:hover,
.hero-menu-item:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(47, 125, 246, 0.22);
  box-shadow: 0 18px 40px rgba(27, 25, 22, 0.08);
  outline: none;
}

.hero-menu-icon {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: rgba(47, 125, 246, 0.1);
  color: var(--blue);
}

.hero-menu-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-menu-item:nth-child(2) .hero-menu-icon {
  background: rgba(36, 166, 107, 0.1);
  color: var(--green);
}

.hero-menu-item:nth-child(3) .hero-menu-icon {
  background: rgba(47, 125, 246, 0.1);
  color: var(--blue);
}

.hero-menu-item:nth-child(4) .hero-menu-icon {
  background: rgba(217, 133, 69, 0.12);
  color: var(--orange);
}

.hero-menu-item:nth-child(5) .hero-menu-icon {
  background: rgba(22, 18, 23, 0.07);
  color: var(--ink);
}

.orb-card {
  position: absolute;
  border-radius: 999px;
  filter: blur(50px);
}

.orb-card-a {
  inset: 3rem auto auto 2rem;
  width: 12rem;
  height: 12rem;
  background: rgba(40, 195, 111, 0.24);
}

.orb-card-b {
  inset: auto 2rem 6rem auto;
  width: 14rem;
  height: 14rem;
  background: rgba(31, 130, 255, 0.2);
}

.device-panel {
  position: absolute;
  border-radius: 2.25rem;
  padding: 1rem;
}

.device-panel-large {
  inset: 1rem 5rem auto 0;
  transform: rotate(-5deg);
}

.device-panel-small {
  inset: auto 0 0 10rem;
  transform: rotate(7deg);
}

.device-frame {
  background: linear-gradient(180deg, #0e0c10, #1d181e);
  border-radius: 2rem;
  padding: 0.9rem;
  width: min(100%, 25rem);
}

.device-frame.compact {
  width: 18rem;
}

.device-notch {
  width: 8rem;
  height: 1.45rem;
  border-radius: 999px;
  background: #050505;
  margin: 0 auto 0.7rem;
}

.device-screen {
  min-height: 22rem;
  border-radius: 1.4rem;
  background:
    radial-gradient(circle at top right, rgba(31, 130, 255, 0.08), transparent 10rem),
    linear-gradient(180deg, #fbfbfc, #f0edf2);
  padding: 1.2rem;
}

.screen-header,
.preview-window {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.badge,
.tiny-pill,
.mini-chip,
.tag-pill,
.meta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
}

.badge,
.tiny-pill,
.mini-chip {
  min-height: 2rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.86rem;
}

.badge-blue,
.preview-highlight,
.mini-chip {
  background: rgba(31, 130, 255, 0.12);
  color: var(--blue);
}

.badge-green {
  background: rgba(40, 195, 111, 0.14);
  color: #118447;
}

.tiny-pill {
  background: rgba(22, 18, 23, 0.06);
  color: var(--muted);
}

.week-dots {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.45rem;
  margin: 1.2rem 0;
}

.week-dots span {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(22, 18, 23, 0.05);
  font-weight: 800;
  color: var(--muted);
}

.week-dots .active {
  background: var(--blue);
  color: white;
}

.task-panel {
  padding: 1rem;
  border-radius: 1.2rem;
  background: white;
  box-shadow: inset 0 0 0 1px rgba(22, 18, 23, 0.05);
}

.task-panel strong {
  display: block;
  font-size: 1.15rem;
}

.task-panel span {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
}

.mock-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.55rem;
}

.mock-list li {
  padding: 0.8rem 0.9rem;
  border-radius: 1rem;
  background: rgba(22, 18, 23, 0.05);
  font-weight: 700;
}

.trust-strip {
  padding-top: 0;
}

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

.trust-grid > div {
  padding: 1.2rem;
  border-radius: var(--radius-lg);
}

.trust-grid strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1rem;
}

.section-heading {
  display: grid;
  gap: 1rem;
  max-width: 44rem;
  margin-bottom: 2rem;
}

.feature-grid,
.recipe-grid {
  display: grid;
  gap: 1.25rem;
}

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

.feature-card {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
}

.feature-preview {
  position: relative;
  min-height: 15rem;
  margin-bottom: 1.1rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #f7f6f3, #ebe9e6);
  padding: 0;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(22, 18, 23, 0.05);
}

.feature-preview::before {
  content: none;
}

.app-shot-preview {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 25rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(235, 233, 230, 0.68)),
    #f0eeeb;
}

.app-shot-preview img {
  width: min(100%, 19rem);
  max-width: none;
  aspect-ratio: 1290 / 2796;
  object-fit: cover;
  object-position: top center;
  border-radius: 1.45rem;
  box-shadow:
    0 24px 60px rgba(27, 25, 22, 0.16),
    0 0 0 1px rgba(22, 18, 23, 0.06);
  transform: translateY(1.15rem);
}

.preview-title,
.tablet-title {
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
  font-size: 1.55rem;
  line-height: 1;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.preview-window {
  flex-direction: column;
  align-items: stretch;
  gap: 0.7rem;
}

.preview-bar,
.preview-line,
.tablet-lines span {
  display: block;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
}

.preview-bar {
  width: 44%;
  height: 0.9rem;
}

.preview-line {
  width: 100%;
  height: 1.25rem;
}

.preview-line-large {
  width: 88%;
}

.preview-highlight {
  width: 65%;
}

.feature-preview-overview {
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 122, 89, 0.18), transparent 8rem),
    radial-gradient(circle at top right, rgba(40, 195, 111, 0.18), transparent 10rem),
    linear-gradient(160deg, rgba(31, 130, 255, 0.15), rgba(255, 255, 255, 0.9));
}

.overview-mock {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 3.5rem minmax(0, 1fr);
  gap: 0.9rem;
  align-items: stretch;
}

.overview-sidebar,
.overview-board,
.collab-screen,
.tablet-shell,
.handset-shell {
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 22px 45px rgba(35, 24, 39, 0.12);
}

.overview-sidebar {
  display: grid;
  gap: 0.75rem;
  align-content: start;
  padding: 1rem 0.7rem;
  border-radius: 1.4rem;
  background: linear-gradient(180deg, rgba(22, 18, 23, 0.9), rgba(43, 38, 48, 0.92));
}

.overview-sidebar span {
  display: block;
  height: 0.75rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.35));
}

.overview-sidebar span:nth-child(2) {
  width: 70%;
}

.overview-board {
  padding: 1rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
}

.overview-board-top,
.overview-days,
.overview-avatars,
.collab-status {
  display: flex;
  align-items: center;
}

.overview-board-top {
  justify-content: space-between;
  gap: 0.75rem;
}

.overview-badge,
.handset-pill,
.collab-pulse {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 2rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
}

.overview-badge {
  color: white;
  background: linear-gradient(135deg, var(--blue), #5ab1ff);
}

.overview-avatars {
  gap: 0.35rem;
}

.overview-avatars span,
.collab-avatar {
  display: grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 999px;
  color: white;
  font-size: 0.74rem;
  font-weight: 800;
}

.overview-avatars span:first-child,
.avatar-green {
  background: linear-gradient(135deg, var(--green), #5fd396);
}

.overview-avatars span:last-child,
.avatar-blue {
  background: linear-gradient(135deg, var(--blue), #73b8ff);
}

.overview-days {
  gap: 0.45rem;
  margin: 0.95rem 0;
  flex-wrap: wrap;
}

.overview-days span {
  min-width: 2.1rem;
  padding: 0.35rem 0.5rem;
  border-radius: 0.9rem;
  background: rgba(22, 18, 23, 0.06);
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 700;
  text-align: center;
}

.overview-days .is-active {
  color: white;
  background: linear-gradient(135deg, var(--orange), #ff9b7d);
}

.overview-cards {
  display: grid;
  gap: 0.65rem;
}

.overview-card {
  padding: 0.82rem 0.9rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: inset 0 0 0 1px rgba(22, 18, 23, 0.05);
}

.overview-card strong,
.collab-bubble strong,
.tablet-card strong,
.collab-panel strong {
  display: block;
  font-size: 0.88rem;
}

.overview-card span,
.collab-bubble span,
.tablet-card span,
.collab-panel-kicker {
  display: block;
  margin-top: 0.22rem;
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.overview-card-primary {
  background: linear-gradient(135deg, rgba(31, 130, 255, 0.16), rgba(255, 255, 255, 0.95));
}

.overview-card-accent {
  background: linear-gradient(135deg, rgba(40, 195, 111, 0.18), rgba(255, 255, 255, 0.92));
}

.feature-preview.duo {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  align-items: end;
}

.mini-phone,
.tablet-shell {
  border-radius: 2rem;
  background: #111015;
  padding: 0.6rem;
}

.mini-phone {
  min-height: 12rem;
}

.mini-phone.alt {
  transform: translateY(1.5rem);
}

.mini-phone-notch {
  width: 4.4rem;
  height: 0.85rem;
  border-radius: 999px;
  background: black;
  margin: 0 auto 1rem;
}

.mini-chip {
  margin: 0 auto;
  background: white;
  width: fit-content;
}

.feature-preview-sync {
  background:
    radial-gradient(circle at 20% 18%, rgba(40, 195, 111, 0.18), transparent 8rem),
    radial-gradient(circle at 85% 15%, rgba(31, 130, 255, 0.2), transparent 9rem),
    linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(31, 130, 255, 0.08));
}

.icon-phone,
.icon-tablet {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 22px 45px rgba(35, 24, 39, 0.14);
}

.icon-phone {
  align-self: end;
  min-height: 12rem;
  padding: 0.55rem;
  border-radius: 2rem;
  background: linear-gradient(180deg, #141117, #26212a);
}

.icon-phone-left {
  transform: rotate(-8deg);
}

.icon-phone-right,
.icon-phone-floating {
  transform: rotate(8deg);
}

.icon-phone-right {
  margin-bottom: 1.25rem;
}

.icon-phone-notch {
  width: 4.4rem;
  height: 0.85rem;
  margin: 0 auto 0.85rem;
  border-radius: 999px;
  background: black;
}

.icon-phone-screen {
  min-height: 10rem;
  padding: 0.85rem;
  border-radius: 1.45rem;
  background:
    radial-gradient(circle at top right, rgba(31, 130, 255, 0.12), transparent 7rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 240, 245, 0.95));
}

.icon-phone-pill,
.icon-phone-line,
.icon-tablet-bar,
.icon-tablet-card {
  display: block;
  border-radius: 999px;
}

.icon-phone-pill {
  width: 48%;
  height: 0.8rem;
  background: linear-gradient(135deg, rgba(40, 195, 111, 0.9), rgba(31, 130, 255, 0.9));
}

.icon-phone-pill.blue {
  background: linear-gradient(135deg, rgba(31, 130, 255, 0.9), rgba(108, 189, 255, 0.9));
}

.icon-phone-line {
  height: 0.72rem;
  margin-top: 0.7rem;
  background: rgba(22, 18, 23, 0.1);
}

.icon-phone-line.short,
.icon-tablet-card.short {
  width: 70%;
}

.icon-phone-orb {
  display: block;
  width: 2.8rem;
  height: 2.8rem;
  margin-top: 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, var(--orange), #ffb26a);
  box-shadow: 0 16px 32px rgba(255, 122, 89, 0.18);
}

.icon-phone-orb.green {
  background: linear-gradient(135deg, var(--green), #83dfad);
  box-shadow: 0 16px 32px rgba(40, 195, 111, 0.2);
}

.icon-phone-orb.blue {
  background: linear-gradient(135deg, var(--blue), #8ac5ff);
  box-shadow: 0 16px 32px rgba(31, 130, 255, 0.2);
}

.device-icons {
  position: relative;
  z-index: 1;
  min-height: 12rem;
}

.icon-tablet {
  min-height: 12.8rem;
  padding: 0.95rem;
  border-radius: 2.4rem;
  background: linear-gradient(180deg, #121015, #27212a);
}

.icon-tablet-camera {
  width: 0.65rem;
  height: 0.65rem;
  margin: 0 auto 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
}

.icon-tablet-screen {
  min-height: 10.2rem;
  padding: 1rem;
  border-radius: 1.6rem;
  background:
    radial-gradient(circle at top right, rgba(31, 130, 255, 0.12), transparent 8rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 240, 245, 0.95));
}

.icon-tablet-bar {
  width: 38%;
  height: 0.85rem;
  background: linear-gradient(135deg, rgba(40, 195, 111, 0.82), rgba(31, 130, 255, 0.82));
}

.icon-tablet-card {
  height: 1rem;
  margin-top: 0.8rem;
  background: rgba(22, 18, 23, 0.1);
}

.icon-phone-floating {
  position: absolute;
  right: 0.4rem;
  bottom: -0.35rem;
  width: 7.3rem;
}

.tablet-preview {
  background:
    radial-gradient(circle at center, rgba(31, 130, 255, 0.18), transparent 12rem),
    linear-gradient(160deg, rgba(40, 195, 111, 0.14), rgba(255, 255, 255, 0.9));
}

.feature-preview-devices {
  min-height: 16rem;
}

.recipe-section {
  position: relative;
}

.recipe-notice {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}

.recipe-notice strong {
  display: block;
  font-size: 1.05rem;
}

.recipe-notice p {
  margin-bottom: 0;
}

.recipe-notice-link {
  background:
    linear-gradient(135deg, rgba(31, 130, 255, 0.08), rgba(40, 195, 111, 0.08)),
    rgba(255, 255, 255, 0.8);
}

.quick-meals-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.95rem;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
}

.quick-meals-link:hover,
.quick-meals-link:focus-visible {
  color: var(--blue);
}

.quick-meal-intro {
  display: grid;
  gap: 0.75rem;
}

.quick-meal-intro p {
  margin: 0;
}

.recipe-toolbar {
  display: grid;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.search-field {
  display: grid;
  gap: 0.65rem;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.search-field input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 1rem;
  min-height: 3.5rem;
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: inset 0 1px 1px rgba(22, 18, 23, 0.03);
}

.search-field input:focus {
  outline: 2px solid rgba(31, 130, 255, 0.26);
  border-color: rgba(31, 130, 255, 0.24);
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.filter-chip {
  min-height: 2.8rem;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--muted);
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(57, 32, 61, 0.05);
}

.filter-chip.active {
  color: white;
  background: linear-gradient(135deg, var(--ink), #403745);
}

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

.recipe-card {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-xl);
}

.recipe-card-image {
  aspect-ratio: 1.45;
  width: 100%;
  max-height: 15rem;
  border-radius: 1.6rem;
  object-fit: cover;
  background: linear-gradient(180deg, #fff, #f4f2f3);
}

.recipe-card-header {
  display: flex;
  justify-content: space-between;
  gap: 0.8rem;
  align-items: start;
}

.recipe-card-title {
  display: grid;
  gap: 0.45rem;
}

.recipe-card-title h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.recipe-card-title p {
  margin: 0;
}

.recipe-card-tags,
.recipe-card-meta,
.modal-tags,
.modal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.tag-pill,
.meta-pill {
  min-height: 2rem;
  padding: 0.38rem 0.78rem;
  font-size: 0.85rem;
}

.tag-pill {
  background: rgba(31, 130, 255, 0.1);
  color: var(--blue);
}

.tag-pill.meat {
  background: rgba(255, 122, 89, 0.16);
  color: #c0492b;
}

.tag-pill.vegetarian {
  background: rgba(40, 195, 111, 0.14);
  color: #118447;
}

.tag-pill.vegan {
  background: rgba(4, 140, 87, 0.15);
  color: #0a6b45;
}

.tag-pill.microwave {
  background: rgba(255, 145, 58, 0.18);
  color: #b75a12;
}

.tag-pill.airfryer {
  background: rgba(90, 105, 255, 0.14);
  color: #4951c8;
}

.tag-pill.sweet {
  background: rgba(255, 94, 153, 0.14);
  color: #d5467a;
}

.tag-pill.fastfood {
  background: rgba(255, 188, 68, 0.22);
  color: #a96d00;
}

.tag-pill.elaborate {
  background: rgba(81, 75, 255, 0.14);
  color: #4f47c9;
}

.meta-pill {
  background: rgba(22, 18, 23, 0.06);
  color: var(--muted);
}

.recipe-card button {
  justify-self: start;
  min-height: 3rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: var(--surface-dark);
  color: white;
  font-weight: 800;
}

.quick-meal-card {
  align-content: start;
  min-height: 100%;
  gap: 0.7rem;
  padding: 0.85rem 0.9rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 0 0 1px rgba(22, 18, 23, 0.05),
    0 10px 24px rgba(57, 32, 61, 0.04);
}

.quick-meal-card-top {
  display: block;
}

.quick-meal-card .recipe-card-tags {
  gap: 0.42rem;
}

.quick-meal-card .recipe-card-title {
  gap: 0.2rem;
}

.quick-meal-card .recipe-card-title h3 {
  margin: 0;
  font-size: clamp(1.02rem, 1.8vw, 1.16rem);
  line-height: 1.25;
}

.quick-meal-card .tag-pill,
.quick-meal-kicker {
  display: inline-flex;
  min-height: 1.8rem;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  font-size: 0.76rem;
}

.quick-meal-kicker {
  background: rgba(22, 18, 23, 0.05);
  color: rgba(22, 18, 23, 0.62);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.empty-state {
  grid-column: 1 / -1;
  padding: 2rem;
  text-align: center;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.support-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: start;
}

.support-list {
  display: grid;
  gap: 1rem;
}

.support-info-card {
  padding: 1.25rem;
  border-radius: var(--radius-xl);
}

.support-kicker {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-info-card h3 {
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.support-info-card p {
  margin: 0.7rem 0 1rem;
}

.support-value {
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  padding: 0.6rem 0.95rem;
  border-radius: 999px;
  background: rgba(22, 18, 23, 0.06);
  color: var(--ink);
  font-weight: 800;
}

.site-footer {
  padding: 0 0 2rem;
}

.error-page {
  min-height: 100vh;
}

.error-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 5.25rem;
}

.error-nav {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.error-header-tools {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.error-nav a {
  color: var(--muted);
  font-weight: 700;
  transition: color 180ms ease;
}

.error-nav a:hover {
  color: var(--ink);
}

.error-shell {
  display: grid;
  align-items: center;
  min-height: calc(100vh - 10rem);
}

.error-grid {
  align-items: center;
}

.error-copy {
  position: relative;
  z-index: 1;
}

.error-highlight {
  max-width: 36rem;
}

.error-stats {
  max-width: 42rem;
}

.error-visual .mock-list a {
  display: block;
}

.footer-row {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(22, 18, 23, 0.08);
}

.footer-links {
  justify-self: end;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.privacy-page {
  background:
    radial-gradient(circle at top left, rgba(40, 195, 111, 0.1), transparent 20rem),
    linear-gradient(180deg, #f8f5f6 0%, #ffffff 100%);
}

.privacy-shell {
  width: min(860px, calc(100vw - 1.5rem));
  margin: 0 auto;
  padding: 1.25rem 0 3rem;
}

.privacy-back {
  display: inline-flex;
  align-items: center;
  min-height: 2.8rem;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 32px rgba(57, 32, 61, 0.08);
  color: var(--ink);
  font-weight: 800;
}

.privacy-wrap {
  margin-top: 1rem;
  padding: 1.25rem;
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(22, 18, 23, 0.05);
  box-shadow: var(--shadow);
}

.privacy-toolbar {
  display: flex;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.privacy-lang-button {
  min-height: 2.5rem;
  padding: 0.45rem 0.85rem;
  border: 0;
  border-radius: 999px;
  background: rgba(22, 18, 23, 0.06);
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}

.privacy-lang-button.is-active {
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: white;
}

.privacy-content {
  font-size: 0.92rem;
  line-height: 1.72;
  color: var(--muted);
}

.privacy-content h1 {
  font-size: clamp(1.55rem, 4vw, 2.2rem);
  margin: 0 0 1rem;
}

.privacy-content h2 {
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: 0;
  margin: 1.6rem 0 0.55rem;
}

.privacy-content p,
.privacy-content li {
  font-size: 0.92rem;
  line-height: 1.72;
}

.privacy-content p {
  margin: 0.55rem 0;
}

.privacy-content ul {
  margin: 0.45rem 0 0.7rem;
  padding-left: 1.15rem;
}

.privacy-content a {
  text-decoration: underline;
  text-underline-offset: 0.12rem;
}

.recipe-notice-extra {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: baseline;
  margin: 0.85rem 0 0;
}

.guidelines-trigger {
  padding: 0;
  border: 0;
  background: none;
  color: var(--ink);
  font: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.15rem;
  cursor: pointer;
}

.guidelines-trigger:hover,
.guidelines-trigger:focus-visible {
  color: var(--blue);
}

.recipe-modal {
  width: min(880px, calc(100vw - 1rem));
  max-height: calc(100dvh - 1rem);
  padding: 0;
  border: 0;
  border-radius: 2rem;
  background: transparent;
  overflow: hidden;
}

.recipe-modal::backdrop {
  background: rgba(13, 11, 16, 0.5);
  backdrop-filter: blur(8px);
}

.modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  z-index: 2;
  width: 2.9rem;
  height: 2.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
  transform: rotate(45deg);
  box-shadow: 0 20px 40px rgba(57, 32, 61, 0.14);
}

.recipe-modal-content {
  display: grid;
  gap: 1.5rem;
  padding: 1rem;
  max-height: calc(100dvh - 1rem);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  border-radius: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 244, 247, 0.96));
  box-shadow: 0 30px 90px rgba(15, 10, 18, 0.22);
}

.modal-hero {
  display: grid;
  gap: 1.3rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

.modal-hero img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 1.6rem;
}

.modal-body {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.modal-card {
  padding: 1rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 0 0 1px rgba(22, 18, 23, 0.06);
}

.modal-card h4 {
  margin: 0 0 0.7rem;
  font-size: 1rem;
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
}

.modal-card ul,
.modal-card ol {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.7;
}

.recipe-guidelines-modal {
  width: min(760px, calc(100vw - 1rem));
}

.recipe-guidelines-content {
  gap: 1.2rem;
  padding: 1.35rem;
}

.guidelines-modal-header h2 {
  margin: 0.35rem 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.guidelines-modal-header p:last-child {
  margin: 0;
  color: var(--muted);
}

.guidelines-modal-body {
  display: grid;
  gap: 1rem;
}

.guidelines-card {
  padding: 1.25rem;
}

.guidelines-card h3 {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
}

.guidelines-card-highlight {
  background: linear-gradient(180deg, rgba(209, 233, 255, 0.7), rgba(255, 255, 255, 0.9));
  box-shadow:
    inset 0 0 0 1px rgba(58, 124, 201, 0.16),
    0 18px 36px rgba(41, 94, 153, 0.1);
}

.guidelines-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
  color: var(--muted);
}

.guidelines-list li {
  position: relative;
  padding-left: 1.85rem;
  line-height: 1.65;
}

.guidelines-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.05rem;
  color: var(--green);
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid,
  .support-grid,
  .modal-hero,
  .modal-body,
  .feature-grid,
  .recipe-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    grid-column: auto;
    grid-row: auto;
    justify-content: start;
  }

  .hero-copy,
  .hero-lower {
    grid-column: auto;
  }

  .device-panel-large {
    inset: 0 auto auto 0;
  }

  .device-panel-small {
    inset: auto 0 0 auto;
  }

  .footer-row {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .header-row {
    grid-template-columns: auto 1fr auto;
    justify-items: stretch;
    min-height: 4.75rem;
  }

  .site-header.is-compact {
    background: rgba(247, 246, 243, 0.93);
    box-shadow: 0 12px 32px rgba(27, 25, 22, 0.07);
  }

  .site-header.is-compact .header-row {
    min-height: 3.85rem;
  }

  .site-header.is-compact .brand img {
    width: 2.35rem;
    height: 2.35rem;
    border-radius: 0.72rem;
  }

  .site-header.is-compact .brand span {
    display: none;
  }

  .error-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 0.9rem 0;
  }

  .header-actions {
    width: 100%;
    justify-content: end;
    justify-self: end;
  }

  .main-nav,
  .lang-toggle-desktop,
  .error-header-tools,
  .error-nav,
  .footer-links {
    justify-content: start;
  }

  .main-nav,
  .lang-toggle-desktop {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-self: end;
  }

  .hero-visual {
    margin-top: 1.25rem;
    padding: 0.5rem 0 0;
    overflow: visible;
  }

  .hero-menu-panel {
    width: 100%;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.4rem;
    padding: 0.65rem 0.55rem;
    border-radius: var(--radius-lg);
  }

  .hero-menu-item {
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: center;
    gap: 0.35rem;
    min-height: 4rem;
    padding: 0.35rem 0.15rem;
    border: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
    font-size: 0.69rem;
    line-height: 1.1;
  }

  .hero-menu-item:hover,
  .hero-menu-item:focus-visible {
    transform: none;
    box-shadow: none;
  }

  .hero-menu-item:first-child {
    grid-column: auto;
  }

  .hero-menu-icon {
    width: 2.2rem;
    height: 2.2rem;
  }

  .hero-menu-icon svg {
    width: 1.05rem;
    height: 1.05rem;
  }

  .footer-links {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 2rem 0 3rem;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .hero-copy {
    position: relative;
    z-index: 2;
  }

  .error-shell {
    min-height: auto;
  }

  .hero-visual {
    margin-top: 1.25rem;
    padding: 0.5rem 0 0;
    overflow: visible;
  }

  .orb-card {
    display: none;
  }

  .hero-menu-panel {
    width: 100%;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.4rem;
    padding: 0.65rem 0.55rem;
    border-radius: var(--radius-lg);
  }

  .hero-menu-item {
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: center;
    gap: 0.35rem;
    min-height: 4rem;
    padding: 0.35rem 0.15rem;
    border: 0;
    background: transparent;
    box-shadow: none;
    text-align: center;
    font-size: 0.69rem;
    line-height: 1.1;
  }

  .hero-menu-item:hover,
  .hero-menu-item:focus-visible {
    transform: none;
    box-shadow: none;
  }

  .hero-menu-item:first-child {
    grid-column: auto;
  }

  .hero-menu-icon {
    width: 2.2rem;
    height: 2.2rem;
  }

  .hero-menu-icon svg {
    width: 1.05rem;
    height: 1.05rem;
  }

  .device-panel {
    position: relative;
    inset: auto;
    padding: 0.75rem;
    transform: none;
    border-radius: 1.6rem;
  }

  .device-panel-large,
  .device-panel-small {
    width: 100%;
  }

  .device-panel-large {
    max-width: 42rem;
    margin: 0 auto;
  }

  .device-panel-small {
    width: min(88%, 20rem);
    margin: 0.2rem auto 0;
    z-index: 1;
  }

  .device-frame {
    width: 100%;
  }

  .device-frame.compact {
    width: 100%;
  }

  .device-screen {
    min-height: 15.8rem;
    padding: 1rem;
  }

  .device-notch {
    width: 6rem;
    height: 1rem;
    margin-bottom: 0.55rem;
  }

  .screen-header {
    align-items: start;
  }

  .week-dots {
    gap: 0.3rem;
    margin: 0.9rem 0;
  }

  .mock-list {
    margin-top: 0.9rem;
  }

  .mock-list li {
    padding: 0.68rem 0.78rem;
  }

  .recipe-toolbar {
    gap: 1.25rem;
  }

  .feature-preview {
    min-height: auto;
  }

  .app-shot-preview {
    min-height: 24rem;
  }

  .overview-mock {
    grid-template-columns: 3rem minmax(0, 1fr);
  }

  .header-row {
    grid-template-columns: auto 1fr auto;
    justify-items: stretch;
  }

  .main-nav,
  .lang-toggle-desktop {
    display: none;
  }

  .header-actions {
    width: 100%;
    justify-content: end;
  }

  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-self: end;
  }
}

@media (max-width: 560px) {
  .main-nav {
    gap: 0.8rem;
  }

  h1 {
    font-size: clamp(2.15rem, 10.4vw, 2.85rem);
  }

  h2 {
    font-size: clamp(1.8rem, 10vw, 2.6rem);
  }

  .hero-actions {
    gap: 0.75rem;
  }

  .button {
    min-height: 3.25rem;
    padding: 0.8rem 1.1rem;
  }

  .header-actions {
    gap: 0.65rem;
  }

  .hero-visual {
    margin-top: 1rem;
  }

  .app-shot-preview {
    min-height: 21rem;
  }

  .app-shot-preview img {
    width: min(100%, 16rem);
    border-radius: 1.2rem;
  }

  .device-panel-small {
    width: min(92%, 18rem);
    margin-top: 0.1rem;
  }

  .device-screen {
    min-height: 15rem;
    padding: 0.95rem;
  }

  .device-notch {
    width: 5.8rem;
    height: 1rem;
    margin-bottom: 0.55rem;
  }

  .feature-preview.duo {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .icon-phone-right {
    transform: none;
    margin-bottom: 0;
  }

  .overview-mock {
    grid-template-columns: 1fr;
  }

  .overview-sidebar {
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    align-content: center;
    padding: 0.7rem 0.85rem;
  }

  .overview-sidebar span:nth-child(2) {
    width: 100%;
  }

  .icon-phone-floating {
    right: 0;
    bottom: -0.8rem;
  }

  .stat-card {
    padding: 1rem;
  }

  .modal-close {
    top: 0.5rem;
    right: 0.5rem;
  }

  .recipe-modal {
    width: calc(100vw - 0.5rem);
    max-height: calc(100dvh - 0.5rem);
    border-radius: 1.4rem;
  }

  .recipe-modal-content {
    max-height: calc(100dvh - 0.5rem);
    padding: 0.85rem;
    border-radius: 1.4rem;
  }

  .privacy-shell {
    width: min(100vw - 1rem, 860px);
    padding-top: 0.9rem;
  }

  .privacy-wrap {
    padding: 1rem;
    border-radius: 1.2rem;
  }
}
