/* Spilno marketing site — self-contained, theme-aware, no external CSS. */
:root {
  --bg: #f6f8f5;
  --surface: #ffffff;
  --surface-elevated: #ffffff;
  --surface-selected: #eaf2ec;
  --text: #182620;
  --text-secondary: #4e5d55;
  --text-muted: #8a978f;
  --text-on-accent: #ffffff;
  --accent: #5fa07e;
  --accent-strong: #4c8a69;
  --accent-soft: #e7f1eb;
  --accent-border: #b7d6c4;
  --premium: #e4a63a;
  --premium-strong: #c8871e;
  --premium-soft: #fbf1dc;
  --border: #e3e8e3;
  --border-strong: #cdd5ce;
  --overlay: rgba(20, 32, 26, 0.45);
  --shadow-card: 0 6px 24px rgba(27, 42, 32, 0.08);
  --shadow-float: 0 18px 40px rgba(27, 42, 32, 0.18);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --font-brand: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #10150f;
    --surface: #181f19;
    --surface-elevated: #1f271f;
    --surface-selected: #26332a;
    --text: #eaf1ec;
    --text-secondary: #a3b1a8;
    --text-muted: #6e7c72;
    --text-on-accent: #0e1611;
    --accent: #7fbe9b;
    --accent-strong: #98d0b0;
    --accent-soft: #1e2c24;
    --accent-border: #345143;
    --premium: #ebb44e;
    --premium-strong: #f4c978;
    --premium-soft: #2c2415;
    --border: #28312a;
    --border-strong: #39443c;
    --overlay: rgba(0, 0, 0, 0.55);
    --shadow-card: 0 6px 24px rgba(0, 0, 0, 0.35);
    --shadow-float: 0 18px 40px rgba(0, 0, 0, 0.5);
  }
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

html[dir='rtl'] body {
  direction: rtl;
}

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

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

/* ————— Nav ————— */
.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 14px 32px;
  background: color-mix(in srgb, var(--bg) 85%, transparent);
  backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.brand {
  flex-shrink: 0;
}

.brand img {
  height: 44px;
}

.nav-links {
  display: flex;
  gap: 20px;
  margin-inline-start: auto;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ————— Buttons ————— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius-lg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: transform 0.05s ease, opacity 0.15s ease, background 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--accent);
  color: var(--text-on-accent);
}

.btn-primary:hover {
  background: var(--accent-strong);
}

.btn-secondary {
  background: var(--surface-selected);
  color: var(--text);
}

.btn-ghost {
  background: transparent;
  color: var(--accent-strong);
  border: 1px solid var(--accent-border);
}

.btn-lg {
  padding: 14px 22px;
  font-size: 15px;
}

/* ————— Language picker ————— */
.lang-picker {
  position: relative;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  inset-inline-end: 0;
  min-width: 160px;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  z-index: 30;
}

.lang-menu li {
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 13px;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.lang-menu li:hover {
  background: var(--surface-selected);
}

.lang-menu li[aria-selected='true']::after {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
}

/* ————— Hero ————— */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 32px 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
  margin: 20px 0 16px;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 28px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.hero-ctas.centered {
  justify-content: center;
}

.store-stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
}

.store-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  font-weight: 500;
}

.hero-badges {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  color: var(--text-secondary);
  font-size: 14px;
}

.hero-badges li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-badges svg {
  color: var(--accent);
}

/* ————— iPhone mockup ————— */
.hero-visual {
  display: flex;
  justify-content: center;
}

.iphone {
  --iphone-w: 320px;
  --iphone-h: 660px;
  --iphone-bezel: 12px;
  --iphone-radius: 52px;
  --iphone-screen-radius: 40px;

  width: var(--iphone-w);
  height: var(--iphone-h);
  position: relative;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.35));
}

.iphone-frame {
  position: absolute;
  inset: 0;
  border-radius: var(--iphone-radius);
  background:
    linear-gradient(135deg, #2a2f2c 0%, #0e1210 45%, #1d211f 100%);
  padding: var(--iphone-bezel);
  box-shadow:
    inset 0 0 0 1.5px #3a4340,
    inset 0 0 0 3px #0a0d0b,
    inset 0 0 0 4.5px #22262b;
}

/* Dynamic island */
.iphone-island {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 112px;
  height: 32px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
}

/* Side buttons (subtle depth) — silent/volume on the left, power on the right */
.iphone-side-btn {
  position: absolute;
  width: 3px;
  background: linear-gradient(90deg, #1b1f1d 0%, #3a4340 50%, #1b1f1d 100%);
  border-radius: 2px;
  z-index: 4;
}

.iphone-side-btn.silent { left: -3px; top: 110px; height: 24px; }
.iphone-side-btn.vol-up { left: -3px; top: 150px; height: 46px; }
.iphone-side-btn.vol-down { left: -3px; top: 210px; height: 46px; }
.iphone-side-btn.power { right: -3px; top: 170px; height: 70px; }

.iphone-screen {
  position: relative;
  height: 100%;
  border-radius: var(--iphone-screen-radius);
  background: var(--bg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.phone-status {
  padding: 14px 30px 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  height: 44px;
}

.status-icons {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
}

.phone-body {
  position: relative;
  flex: 1;
  padding: 14px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow: hidden;
}

.phone-header {
  padding: 0 4px;
}

.phone-title {
  font-size: 12px;
  color: var(--text-secondary);
}

.phone-name {
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: 20px;
  margin-top: 2px;
}

.list-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list-card-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.list-emoji {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}

.list-card-copy {
  min-width: 0;
  flex: 1;
}

.list-name {
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: 15px;
}

.list-progress {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.progress-bar {
  height: 6px;
  border-radius: 999px;
  background: var(--surface-selected);
  overflow: hidden;
}

.progress-bar span {
  display: block;
  width: 42%;
  height: 100%;
  background: var(--accent);
}

/* Member stack — fixed sizing, no flex-stretch surprises */
.member-stack {
  display: flex;
  align-items: center;
  align-self: flex-start;
}

.avatar {
  flex: none;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  border: 2px solid var(--surface);
  font-size: 10px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  line-height: 1;
}

.avatar + .avatar {
  margin-inline-start: -9px;
}

.avatar-premium {
  background: #f6c98a;
  color: #6b4a13;
}

.avatar-premium .crown {
  position: absolute;
  top: -8px;
  inset-inline-end: -6px;
  background: var(--premium);
  color: #fff;
  font-size: 9px;
  padding: 2px 3px;
  border-radius: 999px;
  line-height: 1;
}

.row-buttons {
  display: flex;
  gap: 8px;
}

.row-buttons .btn {
  flex: 1;
  padding: 10px 12px;
  font-size: 13px;
}

.fab {
  position: absolute;
  inset-inline-end: 20px;
  bottom: 22px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-lg);
  background: var(--accent);
  color: var(--text-on-accent);
  font-size: 28px;
  line-height: 1;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-float);
}

/* ————— Sections ————— */
.section {
  padding-top: 40px;
  padding-bottom: 60px;
}

.section-head {
  max-width: 700px;
  margin: 0 auto 32px;
  text-align: center;
}

.section-head h2,
.faq h2,
.premium-head h2,
.download h2,
.together h2 {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: clamp(28px, 3.5vw, 40px);
  letter-spacing: -0.01em;
  margin: 12px 0;
}

.section-head p {
  color: var(--text-secondary);
  font-size: 16px;
}

/* ————— Features ————— */
.features {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--accent-soft);
  display: grid;
  place-items: center;
  font-size: 24px;
  margin-bottom: 12px;
}

.feature-card h3 {
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: 18px;
  margin: 4px 0 8px;
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0;
}

/* ————— Together ————— */
.together {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.together > .together-copy > p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 20px;
}

.together h2 {
  margin: 12px 0 16px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  padding-inline-start: 28px;
  position: relative;
  color: var(--text);
}

.check-list li::before {
  content: '✓';
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

.together-visual {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-card);
}

.item-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  background: var(--surface);
}

.item-row:has(.checkbox.checked) {
  background: var(--accent-soft);
  border-color: var(--accent);
}

.checkbox {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 2px solid var(--border-strong);
  display: grid;
  place-items: center;
  color: var(--text-on-accent);
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.checkbox.checked {
  background: var(--accent);
  border-color: var(--accent);
}

.item-body {
  flex: 1;
}

.item-name {
  font-weight: 600;
  font-size: 14px;
}

.item-caption {
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.qty {
  font-weight: 600;
  font-size: 13px;
  color: var(--text-secondary);
}

.unit {
  font-size: 12px;
  color: var(--text-secondary);
  background: var(--surface-selected);
  padding: 2px 8px;
  border-radius: var(--radius-sm);
}

.live-tag {
  position: absolute;
  top: -14px;
  inset-inline-end: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  color: var(--accent-strong);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: var(--shadow-card);
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  animation: pulse 1.6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* ————— Premium ————— */
.premium {
  max-width: 900px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
  text-align: center;
}

.premium-head {
  margin-bottom: 32px;
}

.premium-crown {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  background: var(--premium);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 36px;
  margin: 0 auto 12px;
}

.premium-head p {
  color: var(--text-secondary);
  font-size: 16px;
}

.premium-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: start;
}

.premium-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--border);
}

.pill {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--premium-soft);
  color: var(--premium-strong);
  display: grid;
  place-items: center;
  font-weight: 700;
  flex-shrink: 0;
}

.premium-list strong {
  display: block;
  font-family: var(--font-brand);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 4px;
}

.premium-list span {
  color: var(--text-secondary);
  font-size: 13px;
}

/* ————— Download / final CTA ————— */
.download {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
  text-align: center;
}

.download p {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 24px;
}

/* Store buttons — used both in hero and download */
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-lg);
  background: var(--text);
  color: var(--bg);
  font-family: var(--font-body);
  min-width: 190px;
}

.store-btn small {
  display: block;
  font-size: 11px;
  opacity: 0.8;
  line-height: 1;
}

.store-btn strong {
  display: block;
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.1;
}

.store-btn-disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* ————— FAQ ————— */
.faq {
  max-width: 800px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}

.faq h2 {
  text-align: center;
  margin-bottom: 24px;
}

.faq details {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
  padding: 14px 18px;
  margin-bottom: 10px;
}

.faq summary {
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.faq summary::after {
  content: '+';
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
  transition: transform 0.15s ease;
}

.faq details[open] summary::after {
  content: '−';
}

.faq p {
  margin: 12px 0 0;
  color: var(--text-secondary);
  font-size: 14px;
}

/* ————— Footer ————— */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand img {
  height: 40px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 13px;
  margin: 10px 0 0;
}

.footer-links {
  display: flex;
  gap: 20px;
  justify-content: center;
  font-size: 14px;
}

.footer-links a {
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--text);
}

.footer-legal {
  text-align: end;
  font-size: 12px;
  color: var(--text-muted);
}

/* ————— Auth pages ————— */
.auth-wrap {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: 32px;
}

.auth-card .brand-block {
  text-align: center;
  margin-bottom: 24px;
}

.auth-card .brand-block img {
  height: 56px;
  margin: 0 auto 12px;
}

.auth-card h1 {
  font-family: var(--font-brand);
  font-weight: 700;
  font-size: 26px;
  text-align: center;
  margin: 0 0 4px;
}

.auth-card .subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin: 0 0 24px;
  font-size: 14px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
}

.field input {
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.15s ease;
}

.field input:focus {
  border-color: var(--accent);
}

.form-message {
  padding: 10px 12px;
  border-radius: var(--radius-md);
  font-size: 13px;
  border: 1px solid transparent;
}

.form-message.error {
  color: #a63232;
  background: #fbe7e4;
  border-color: #f2c9c3;
}

.form-message.success {
  color: var(--accent-strong);
  background: var(--accent-soft);
  border-color: var(--accent-border);
}

.auth-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-secondary);
}

.auth-footer a {
  color: var(--accent-strong);
  font-weight: 600;
}

.auth-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: 14px;
  margin-bottom: 20px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 12px;
  margin: 4px 0;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.btn-apple {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-strong);
  background: #000;
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease, opacity 0.15s ease;
  width: 100%;
}

.btn-apple:hover {
  background: #1a1a1a;
}

.btn-apple:disabled {
  opacity: 0.55;
  cursor: default;
}

.btn-apple svg {
  flex-shrink: 0;
}

@media (prefers-color-scheme: dark) {
  .btn-apple {
    background: #fff;
    color: #000;
    border-color: var(--border);
  }
  .btn-apple:hover {
    background: #e8e8e8;
  }
}

/* ————— Responsive ————— */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 40px; }
  .hero-visual { order: -1; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .together { grid-template-columns: 1fr; }
  .premium-list { grid-template-columns: 1fr; }
  .footer { grid-template-columns: 1fr; text-align: center; }
  .footer-legal { text-align: center; }
  .footer-links { justify-content: center; }
  .footer-brand p { text-align: center; }
  .footer-brand img { margin: 0 auto; }
}

@media (max-width: 560px) {
  .nav { padding: 12px 20px; gap: 12px; }
  .brand img { height: 36px; }
  .hero, .features, .together, .premium, .download, .faq { padding-inline: 20px; }
  .feature-grid { grid-template-columns: 1fr; }
  .iphone { --iphone-w: 280px; --iphone-h: 580px; }
  .hero-ctas { justify-content: center; }
}
