/* RIANO landing v3 — hand-coded promo scenes, no pasted app screenshots */

:root {
  --bg: #05060b;
  --bg-2: #090b12;
  --card: rgba(16, 20, 31, 0.82);
  --card-2: rgba(23, 29, 42, 0.76);
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f7f8fb;
  --muted: #a4aab8;
  --muted-2: #737b8b;
  --red: #ff464b;
  --red-2: #d72430;
  --red-dark: #82181d;
  --green: #00b979;
  --bluegray: #293443;
  --shadow: 0 38px 120px rgba(0, 0, 0, 0.68);
  --red-shadow: 0 0 42px rgba(255, 54, 59, 0.35);
  --container: 1500px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 56, 64, 0.16), transparent 28vw),
    radial-gradient(circle at 88% 20%, rgba(255, 56, 64, 0.10), transparent 30vw),
    linear-gradient(180deg, #04050a 0%, #080911 44%, #05060b 100%);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 100;
  transform: translateY(-80px);
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--red);
  color: #fff;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Header */

.header {
  position: sticky;
  top: 0;
  z-index: 80;
  min-height: 76px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(4, 5, 10, 0.68);
  backdrop-filter: blur(20px);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.header.is-scrolled {
  background: rgba(4, 5, 10, 0.88);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 38px rgba(255, 58, 62, 0.34);
}

.brand__icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 36px);
  font-size: 1.05rem;
  font-weight: 700;
  color: #d5dae6;
}

.nav a {
  position: relative;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -9px;
  height: 2px;
  border-radius: 999px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.nav a:hover {
  color: #fff;
}

.nav a:hover::after,
.nav a.is-active::after {
  transform: scaleX(1);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-button {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: #fff;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.menu-button.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-button.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */

.button,
.store-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 64px;
  padding: 17px 28px;
  border: 0;
  border-radius: 18px;
  cursor: pointer;
  font-weight: 900;
  color: #fff;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

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

.button--small {
  min-height: 52px;
  padding: 13px 22px;
  border-radius: 16px;
}

.button--primary {
  background: linear-gradient(135deg, #ff575d 0%, #d72a35 100%);
  box-shadow: 0 18px 46px rgba(255, 59, 65, 0.34);
}

.button--glass {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.button--outline {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
}

.store-button {
  padding: 17px 29px 17px 23px;
  background: linear-gradient(135deg, #ff575d 0%, #d62935 100%);
  box-shadow: 0 22px 54px rgba(255, 58, 62, 0.34);
  font-size: 1.06rem;
}

.store-button small {
  display: block;
  margin-bottom: 1px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  line-height: 1;
}

.store-button__icon {
  width: 25px;
  height: 25px;
  display: inline-flex;
}

.store-button__icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

/* Promo sections */

.promo {
  position: relative;
  overflow: hidden;
  padding: 108px 0 118px;
  isolation: isolate;
}

.promo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 50% 35%, rgba(255, 255, 255, 0.04), transparent 34vw),
    radial-gradient(circle at 50% 72%, rgba(255, 52, 60, 0.12), transparent 36vw);
}

.promo--home {
  padding-top: 72px;
}

.promo--income,
.promo--types {
  background:
    radial-gradient(circle at 50% 55%, rgba(255, 52, 60, 0.12), transparent 34vw),
    linear-gradient(180deg, #05060b 0%, #080b12 100%);
}

.promo--schedule {
  background:
    radial-gradient(circle at 70% 48%, rgba(255, 52, 60, 0.10), transparent 34vw),
    linear-gradient(180deg, #06070d 0%, #060810 100%);
}

.promo__inner {
  display: grid;
  justify-items: center;
}

.promo__head {
  text-align: center;
  width: min(100%, 1120px);
  margin-bottom: 52px;
}

.promo__head h1,
.promo__head h2 {
  margin: 0;
  font-size: clamp(4.25rem, 8vw, 8.4rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  font-weight: 950;
  text-shadow: 0 6px 34px rgba(255, 255, 255, 0.12);
}

.promo__head h2 {
  font-size: clamp(3.8rem, 7.2vw, 7.5rem);
}

.promo__head h2 span,
.promo__head h1 span {
  color: var(--red);
  text-shadow: 0 8px 42px rgba(255, 60, 64, 0.30);
}

.promo__head p {
  margin: 28px auto 0;
  width: min(100%, 850px);
  color: var(--muted);
  font-size: clamp(1.45rem, 2.25vw, 2.35rem);
  line-height: 1.28;
  font-weight: 600;
}

.promo__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 30px;
}

.russia-premium-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 860px);
  min-height: 72px;
  margin: 34px auto 0;
  padding: 18px 34px;
  overflow: hidden;
  border: 2px solid rgba(255, 47, 58, 0.96);
  border-radius: 24px;
  background:
    linear-gradient(120deg, rgba(255, 47, 58, 0.18), rgba(255, 255, 255, 0.045) 48%, rgba(255, 47, 58, 0.14)),
    rgba(8, 10, 16, 0.82);
  color: #ffffff;
  box-shadow:
    0 22px 64px rgba(255, 47, 58, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  font-size: clamp(1.04rem, 2vw, 1.42rem);
  font-weight: 950;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.russia-premium-cta::before {
  content: "";
  width: 12px;
  height: 12px;
  margin-right: 14px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 22px rgba(255, 47, 58, 0.92);
}

.russia-premium-cta:hover {
  transform: translateY(-2px);
  border-color: #ff5963;
  box-shadow:
    0 26px 74px rgba(255, 47, 58, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.scene {
  width: 100%;
  max-width: 1280px;
  min-height: 820px;
  position: relative;
  display: grid;
  place-items: center;
}

.scene--hero {
  min-height: 910px;
  margin-top: 8px;
}

.scene--income,
.scene--schedule,
.scene--types {
  max-width: 1340px;
  min-height: 900px;
}

.quick-benefits,
.content-grid {
  width: 100%;
  max-width: 1260px;
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

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

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

.quick-benefits article,
.content-card,
.seo-panel,
.faq-item,
.final-cta__box {
  border: 1px solid var(--line);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(20, 25, 38, 0.88), rgba(9, 12, 21, 0.9));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.quick-benefits article,
.content-card {
  padding: 26px;
}

.quick-benefits strong,
.content-card h3 {
  display: block;
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.18;
}

.quick-benefits span,
.content-card p {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.68;
}

/* Decoration */

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

.decor--dots {
  width: 112px;
  height: 180px;
  opacity: 0.38;
  background-image: radial-gradient(circle, rgba(255, 61, 63, 0.9) 0 5px, transparent 5px);
  background-size: 34px 34px;
}

.decor--dots-left {
  left: clamp(22px, 5vw, 80px);
  top: 26%;
}

.decor--dots-right {
  right: clamp(22px, 8vw, 140px);
  bottom: 8%;
}

.decor--planet {
  width: 290px;
  height: 290px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 81, 82, 0.55), transparent 34%),
    radial-gradient(circle at 50% 50%, #4b1519, #110f15 62%);
  box-shadow: inset -40px -38px 60px rgba(0, 0, 0, 0.55), 0 0 80px rgba(255, 57, 60, 0.24);
}

.decor--planet-left {
  left: -115px;
  bottom: 22%;
}

.decor--planet-right {
  right: -110px;
  top: 8%;
}

.decor--wave {
  width: 360px;
  height: 210px;
  border-radius: 50%;
  border-top: 3px solid rgba(255, 56, 64, 0.78);
  filter: drop-shadow(0 0 18px rgba(255, 57, 61, 0.62));
  transform: rotate(-28deg);
}

.decor--wave-top {
  right: 9%;
  top: 18%;
}

.decor--wave-right {
  right: 6%;
  top: 32%;
  transform: rotate(-18deg);
}

.decor--wave-left {
  left: 4%;
  top: 38%;
  transform: rotate(18deg);
}

.income-planet {
  bottom: 28%;
}

.schedule-planet {
  bottom: 16%;
}

.types-planet {
  top: 24%;
}

/* Phone components */

.phone {
  --phone-w: 430px;
  --phone-h: 790px;
  position: relative;
  width: var(--phone-w);
  height: var(--phone-h);
  border-radius: 64px;
  padding: 13px;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.75), rgba(76, 76, 82, 0.2) 18%, rgba(255, 255, 255, 0.62) 34%, rgba(17, 17, 21, 0.95) 54%, rgba(255, 255, 255, 0.45) 76%, rgba(40, 40, 44, 1));
  box-shadow:
    0 38px 90px rgba(0, 0, 0, 0.72),
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 0 80px rgba(255, 58, 65, 0.14);
}

.phone::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 160px;
  width: 4px;
  height: 72px;
  border-radius: 4px 0 0 4px;
  background: linear-gradient(180deg, #666, #1c1d21);
}

.phone::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 225px;
  width: 4px;
  height: 112px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, #777, #1d1e22);
}

.phone__screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 52px;
  padding: 35px 28px 24px;
  background:
    radial-gradient(circle at 76% 6%, rgba(255, 255, 255, 0.07), transparent 16%),
    radial-gradient(circle at 10% 18%, rgba(255, 65, 68, 0.08), transparent 24%),
    linear-gradient(160deg, #151923 0%, #0d1119 48%, #07090f 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 -18px 48px rgba(0, 0, 0, 0.45);
}

.phone__bezel {
  position: absolute;
  inset: 7px;
  border-radius: 58px;
  z-index: 4;
  pointer-events: none;
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.17),
    inset 0 0 0 8px rgba(0, 0, 0, 0.68);
}

.phone__notch {
  position: absolute;
  top: 20px;
  left: 50%;
  z-index: 8;
  width: 135px;
  height: 38px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #030408;
  box-shadow: inset 0 -2px 7px rgba(255, 255, 255, 0.05);
}

.phone__notch::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 11px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 45% 45%, rgba(55, 128, 255, 0.62), transparent 28%),
    #07101f;
}

.status {
  position: relative;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px 0 16px;
  font-size: 1.02rem;
  font-weight: 900;
  color: #fff;
}

.status__icons {
  display: flex;
  align-items: center;
  gap: 5px;
}

.status__icons i {
  display: block;
  width: 17px;
  height: 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.95);
}

.status__icons i:nth-child(1) {
  width: 18px;
  height: 13px;
  clip-path: polygon(0 100%, 18% 100%, 18% 68%, 37% 68%, 37% 45%, 57% 45%, 57% 22%, 76% 22%, 76% 0, 100% 0, 100% 100%);
}

.status__icons i:nth-child(2) {
  width: 18px;
  height: 13px;
  clip-path: polygon(0 42%, 16% 28%, 50% 10%, 84% 28%, 100% 42%, 85% 58%, 50% 38%, 15% 58%);
}

.status__icons i:nth-child(3) {
  width: 26px;
  height: 13px;
  border: 2px solid #fff;
  background: transparent;
}

.status__icons i:nth-child(3)::after {
  content: "";
}

.phone-title {
  margin: 34px 0 20px;
  font-size: 1.65rem;
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.muted-title {
  color: #d4d8e2;
}

/* Icons */

.red-app-icon,
.red-icon,
.mini-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, #ff565a 0%, #d72a35 100%);
  box-shadow: 0 16px 34px rgba(255, 58, 62, 0.3);
}

.red-app-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
}

.red-icon {
  width: 58px;
  height: 58px;
  border-radius: 19px;
}

.mini-icon {
  width: 25px;
  height: 25px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.calendar-icon::before {
  content: "▦";
  font-size: 1.4rem;
  line-height: 1;
}

.wallet-icon::before {
  content: "▰";
  font-size: 1.55rem;
}

.moon-icon::before {
  content: "◖";
  font-size: 2rem;
}

.money-icon::before {
  content: "▭";
  font-size: 0.95rem;
}

.timer-icon::before {
  content: "◷";
  font-size: 0.95rem;
}

.clock-icon::before {
  content: "◔";
  font-size: 0.95rem;
}

.target-icon::before {
  content: "⌖";
  font-size: 2rem;
}

.document-icon::before {
  content: "▤";
  font-size: 1.75rem;
}

.cycle-icon::before {
  content: "↻";
  font-size: 1.9rem;
}

.edit-icon::before {
  content: "✎";
  font-size: 1.75rem;
}

.shield-icon::before {
  content: "✓";
  font-size: 1.65rem;
}

.nodes-icon::before {
  content: "●●";
  font-size: 1.4rem;
  letter-spacing: -3px;
}

.palette-icon::before {
  content: "●";
  font-size: 1.55rem;
}

/* Hero phone */

.phone--home {
  --phone-w: 450px;
  --phone-h: 820px;
}

.phone--home .phone__screen::after,
.phone--income .phone__screen::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  z-index: 8;
  height: 118px;
  border-radius: 0 0 43px 43px;
  background: linear-gradient(180deg, rgba(9, 12, 19, 0.08), rgba(9, 12, 19, 0.98) 20%, #090c13 100%);
  pointer-events: none;
}

.premium-pill {
  position: absolute;
  z-index: 10;
  top: 82px;
  right: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  font-weight: 900;
  backdrop-filter: blur(14px);
}

.app-hero-card {
  margin-top: 64px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 29px;
  background: linear-gradient(145deg, rgba(29, 35, 49, 0.88), rgba(12, 15, 24, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.app-hero-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-pill {
  padding: 8px 11px;
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.11);
  font-size: 0.75rem;
  font-weight: 900;
}

.app-hero-card .mock-title {
  margin: 20px 0 7px;
  font-size: 1.58rem;
  line-height: 1.08;
  font-weight: 950;
}

.app-hero-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.next-shift {
  display: flex;
  align-items: center;
  gap: 14px;
}

.next-shift > div {
  flex: 1;
  padding: 15px 18px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(41, 50, 65, 0.92), rgba(23, 29, 42, 0.92));
}

.next-shift span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-bottom: 6px;
  font-weight: 700;
}

.next-shift strong {
  font-size: 1rem;
}

.next-shift button {
  width: 61px;
  height: 61px;
  border: 0;
  border-radius: 20px;
  color: #fff;
  background: linear-gradient(145deg, #ff575d 0%, #d62a34 100%);
  box-shadow: 0 15px 32px rgba(255, 58, 62, 0.35);
  font-size: 2rem;
  line-height: 1;
}

.home-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-top: 20px;
}

.home-stats article {
  min-height: 112px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.home-stats small {
  display: block;
  margin: 10px 0 3px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
}

.home-stats strong {
  display: block;
  font-size: 0.98rem;
}

.home-stats em {
  display: block;
  margin-top: 1px;
  font-style: normal;
  font-weight: 900;
  font-size: 0.92rem;
}

.home-stats svg {
  width: 100%;
  height: 16px;
  margin-top: 6px;
}

.home-stats path {
  fill: none;
  stroke: var(--red);
  stroke-width: 2.4;
  stroke-linecap: round;
}

.calendar-panel {
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 24px 24px 0 0;
  background: rgba(255, 255, 255, 0.035);
  padding: 18px 13px 20px;
}

.calendar-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3px 16px;
}

.calendar-panel__head strong {
  font-size: 1.35rem;
}

.calendar-panel__head button {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2.1rem;
  line-height: 1;
}

.weekdays,
.month-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 7px;
}

.weekdays span {
  text-align: center;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.day {
  min-height: 49px;
  padding: 7px 3px 5px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.day b {
  display: block;
  margin-bottom: 5px;
  font-size: 0.92rem;
}

.day i {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  border-radius: 7px;
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 900;
}

.day--red i {
  color: var(--red);
  background: rgba(255, 63, 68, 0.14);
}

.day--green i {
  color: var(--green);
  background: rgba(0, 185, 121, 0.14);
}

.day--gray i {
  color: #8993a2;
  background: rgba(120, 136, 155, 0.16);
}

.bottom-nav {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 14px;
  z-index: 12;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4px;
  min-height: 82px;
  padding: 10px 8px;
  border: 1px solid var(--line);
  border-radius: 25px 25px 40px 40px;
  background: rgba(10, 13, 20, 0.96);
  backdrop-filter: blur(18px);
}

.bottom-nav span {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 4px;
  color: #858d9b;
  font-size: 1.25rem;
  font-weight: 900;
}

.bottom-nav small {
  display: block;
  font-size: 0.64rem;
  font-weight: 800;
}

.bottom-nav .active {
  border-radius: 18px;
  color: #fff;
  background: linear-gradient(145deg, #ff555b 0%, #d82d38 100%);
  box-shadow: 0 15px 32px rgba(255, 60, 64, 0.32);
}

/* Floating scene cards */

.scene-card,
.feature-tile,
.income-chip,
.time-chip,
.palette-chip,
.save-chip {
  position: absolute;
  z-index: 5;
  border: 1px solid rgba(255, 87, 91, 0.25);
  background: linear-gradient(145deg, rgba(26, 31, 43, 0.88), rgba(13, 16, 25, 0.88));
  box-shadow:
    0 24px 72px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 32px rgba(255, 53, 59, 0.12);
  backdrop-filter: blur(18px);
}

.scene-card {
  width: 252px;
  min-height: 188px;
  padding: 24px;
  border-radius: 26px;
}

.scene-card--left {
  left: 13%;
  bottom: 24%;
}

.scene-card--right {
  right: 12%;
  top: 29%;
}

.scene-card strong,
.feature-tile strong {
  display: block;
  margin-top: 13px;
  font-size: 1.38rem;
  line-height: 1.12;
}

.scene-card em,
.feature-tile em {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.46;
  font-style: normal;
}

/* Income scene */

.phone--income {
  --phone-w: 500px;
  --phone-h: 820px;
  transform: rotate(5deg);
}

.phone--income .phone__screen {
  padding-inline: 31px;
}

.income-list {
  display: grid;
  gap: 0;
  margin-top: 18px;
}

.income-row {
  display: grid;
  grid-template-columns: 72px 40px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 45px;
  padding: 0 4px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  color: #f5f6fa;
}

.income-row time,
.income-row strong,
.income-row span {
  font-size: 1.04rem;
}

.income-row span {
  font-weight: 700;
}

.income-row strong {
  font-weight: 500;
}

.income-row.is-active {
  margin-inline: -8px;
  padding-inline: 12px;
  border-radius: 15px;
  border-bottom-color: transparent;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.badge {
  display: inline-grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 11px;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
}

.badge--red {
  color: var(--red);
  background: rgba(255, 62, 67, 0.15);
  box-shadow: inset 0 0 0 1px rgba(255, 62, 67, 0.22);
}

.badge--green {
  color: var(--green);
  background: rgba(0, 185, 121, 0.16);
  box-shadow: inset 0 0 0 1px rgba(0, 185, 121, 0.22);
}

.badge--gray {
  color: #9aa5b5;
  background: rgba(134, 148, 165, 0.16);
  box-shadow: inset 0 0 0 1px rgba(134, 148, 165, 0.20);
}

.income-chip {
  display: grid;
  grid-template-columns: auto 33px 1fr auto;
  align-items: center;
  gap: 12px;
  width: 360px;
  min-height: 78px;
  padding: 16px 21px;
  border-radius: 24px;
  color: #fff;
}

.income-chip b,
.income-chip span,
.income-chip strong {
  font-size: 1.1rem;
}

.income-chip span {
  font-weight: 800;
}

.income-chip strong {
  font-weight: 600;
}

.income-chip--one {
  right: 7%;
  top: 27%;
}

.income-chip--two {
  left: 3%;
  top: 48%;
}

.income-chip--three {
  right: 10%;
  bottom: 30%;
}

.feature-tile {
  width: 210px;
  min-height: 210px;
  padding: 24px;
  border-radius: 28px;
}

.feature-tile--top-left {
  left: 4%;
  top: 22%;
}

.feature-tile--bottom-left {
  left: 3%;
  bottom: 11%;
}

.feature-tile--bottom-right {
  right: 4%;
  bottom: 9%;
}

/* Schedule scene */

.phone--schedule {
  --phone-w: 462px;
  --phone-h: 840px;
}

.edit-sheet,
.type-sheet {
  position: relative;
  margin-top: 20px;
  padding: 28px 18px 22px;
  border: 1px solid var(--line);
  border-radius: 31px;
  background: linear-gradient(160deg, rgba(25, 31, 45, 0.92), rgba(10, 13, 22, 0.95));
  box-shadow: 0 -18px 60px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.sheet-handle {
  position: absolute;
  top: 11px;
  left: 50%;
  width: 62px;
  height: 7px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #87909f;
}

.edit-sheet__header {
  display: flex;
  gap: 17px;
  align-items: center;
  padding: 19px 18px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
}

.edit-sheet__header strong {
  display: block;
  margin-bottom: 5px;
  font-size: 1.25rem;
  line-height: 1.1;
}

.edit-sheet__header p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.35;
}

.form-label {
  display: block;
  margin: 13px 0 8px;
  color: #f4f5f8;
  font-size: 0.88rem;
  font-weight: 850;
}

.input-box,
.select-box,
.date-box,
.delete-box {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border: 1px solid var(--line-strong);
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(145deg, rgba(35, 43, 56, 0.72), rgba(13, 17, 28, 0.78));
  font-size: 1.04rem;
  font-weight: 800;
}

.cycle-list {
  display: grid;
  gap: 10px;
}

.cycle-row {
  min-height: 58px;
  display: grid;
  grid-template-columns: 28px 36px 1fr 32px;
  align-items: center;
  gap: 13px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.035);
}

.drag {
  color: #fff;
  letter-spacing: -5px;
  font-size: 1.22rem;
}

.cycle-row strong {
  font-size: 1rem;
}

.cycle-row small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.8rem;
}

.cycle-row button {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
}

.select-box {
  justify-content: space-between;
  margin-top: 14px;
  color: #b8bfcc;
}

.hint {
  margin: 14px 3px 15px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.date-box {
  justify-content: center;
  gap: 9px;
  font-size: 1rem;
}

.sheet-actions {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 14px;
  margin-top: 16px;
}

.sheet-actions .button {
  min-height: 54px;
  padding: 0 16px;
}

.feature-tile--schedule-left {
  left: 2%;
  top: 42%;
}

.feature-tile--schedule-right-top {
  right: 3%;
  top: 24%;
}

.feature-tile--schedule-right-bottom {
  right: 5%;
  bottom: 15%;
}

/* Types scene */

.scene--types {
  min-height: 930px;
}

.phone--types {
  --phone-w: 460px;
  --phone-h: 820px;
  transform: rotate(-7deg);
}

.phone--types .phone__screen {
  padding-inline: 26px;
}

.type-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  opacity: 0.82;
}

.type-row {
  min-height: 72px;
  display: grid;
  grid-template-columns: 54px 1fr 20px;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
}

.type-row .badge {
  width: 43px;
  height: 43px;
  border-radius: 14px;
}

.type-row strong {
  display: block;
  font-size: 1.05rem;
}

.type-row small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.75rem;
}

.type-row span {
  color: #707888;
  font-size: 1.8rem;
}

.type-sheet {
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: 29px;
  z-index: 7;
  padding-top: 29px;
}

.type-sheet .edit-sheet__header {
  padding: 15px;
}

.type-sheet .edit-sheet__header p {
  font-size: 0.78rem;
}

.color-row,
.palette-chip {
  display: flex;
  align-items: center;
  gap: 10px;
}

.color {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.26);
}

.color--red { background: #f34245; }
.color--gray { background: #4a5460; }
.color--light { background: #cbd0d7; }
.color--blue { background: #1d76ed; }
.color--green { background: #29aa76; }
.color--orange { background: #ffa51c; }
.color--violet { background: #8848e8; }
.color--cyan { background: #20c6d3; }

.color.active {
  outline: 2px solid rgba(255, 255, 255, 0.22);
  outline-offset: 4px;
}

.two-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 12px;
  margin-top: 8px;
}

.two-cols .input-box {
  min-height: 50px;
}

.delete-box {
  justify-content: center;
  min-height: 46px;
  margin-top: 14px;
  color: #fff;
}

.time-chip {
  left: 4%;
  top: 49%;
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 28px;
  border-radius: 23px;
  font-size: 1.25rem;
}

.palette-chip {
  right: 8%;
  top: 52%;
  padding: 20px 25px;
  border-radius: 24px;
}

.palette-chip .color {
  width: 27px;
  height: 27px;
}

.save-chip {
  right: 9%;
  bottom: 22%;
  min-height: 74px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 28px;
  border-radius: 24px;
  color: #fff;
  font-size: 1.32rem;
}

.save-chip::first-letter {
  color: var(--red);
}

/* SEO / FAQ / CTA */

.seo-section,
.faq,
.final-cta {
  position: relative;
  padding: 96px 0;
  overflow: hidden;
}

.seo-panel {
  padding: clamp(28px, 4vw, 60px);
  border-radius: 34px;
}

.seo-panel h2,
.faq__head h2,
.final-cta__box .final-title {
  margin: 0;
  max-width: 1050px;
  font-size: clamp(2.6rem, 4.8vw, 5.3rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.seo-panel p,
.faq__head p,
.final-cta__box p {
  max-width: 1120px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.2rem, 1.62vw, 1.48rem);
  line-height: 1.76;
}

.seo-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.seo-grid div {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
}

.seo-grid strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.32rem;
}

.seo-grid span {
  color: var(--muted);
  font-size: 1.24rem;
  line-height: 1.56;
}

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

.seo-keygroups article {
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.seo-keygroups h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 1.18rem;
  line-height: 1.18;
}

.seo-keygroups p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.58;
}

.seo-actions,
.final-cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.seo-actions {
  margin-top: 28px;
}

.faq__head {
  max-width: 900px;
  margin-bottom: 34px;
}

.faq__list {
  display: grid;
  gap: 16px;
}

.faq-item {
  overflow: hidden;
  border-radius: 24px;
}

.faq-question {
  width: 100%;
  min-height: 76px;
  padding: 22px 28px;
  border: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: #fff;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-size: 1.22rem;
  font-weight: 900;
}

.faq-question i {
  position: relative;
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
}

.faq-question i::before,
.faq-question i::after {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 22px;
  height: 2px;
  border-radius: 99px;
  background: #fff;
  transition: transform 0.24s ease;
}

.faq-question i::after {
  transform: rotate(90deg);
}

.faq-item.is-open .faq-question i::after {
  transform: rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}

.faq-answer p {
  margin: 0;
  overflow: hidden;
  padding: 0 28px;
  color: var(--muted);
  font-size: 1.18rem;
  line-height: 1.7;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 26px;
}

.final-cta {
  padding-top: 66px;
}

.final-cta__box {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  text-align: center;
  padding: clamp(34px, 5vw, 70px);
  border-radius: 38px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 65, 70, 0.18), transparent 50%),
    linear-gradient(145deg, rgba(25, 30, 43, 0.92), rgba(8, 10, 17, 0.95));
}

.final-cta__box .final-title,
.final-cta__box p {
  margin-inline: auto;
}

.final-cta__box p {
  margin-top: 0;
  max-width: 960px;
}

.final-cta__box .store-button {
  margin-top: 4px;
  min-height: 70px;
  padding-inline: 34px;
}

.final-cta__actions {
  margin-top: 4px;
}

.final-cta__actions .button {
  min-height: 70px;
  padding-inline: 32px;
}

.footer {
  padding: 40px 0 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 34px;
}

.footer p {
  max-width: 460px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.72;
}

.footer__links,
.footer__meta {
  display: grid;
  align-content: start;
  gap: 12px;
  color: var(--muted);
  font-size: 1.04rem;
  font-weight: 700;
}

.footer__links a:hover,
.footer__meta a:hover {
  color: #fff;
}

/* Animations */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}

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

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

/* Responsive */

@media (max-width: 1300px) {
  .scene-card--left,
  .feature-tile--top-left,
  .feature-tile--bottom-left,
  .feature-tile--schedule-left {
    left: 0;
  }

  .scene-card--right,
  .feature-tile--bottom-right,
  .feature-tile--schedule-right-top,
  .feature-tile--schedule-right-bottom,
  .palette-chip,
  .save-chip {
    right: 0;
  }

  .income-chip--one,
  .income-chip--three {
    right: 0;
  }

  .income-chip--two,
  .time-chip {
    left: 0;
  }
}

@media (max-width: 1120px) {
  .promo__head h1,
  .promo__head h2 {
    font-size: clamp(3.7rem, 10vw, 6.5rem);
  }

  .scene {
    max-width: 900px;
    min-height: auto;
    padding: 0 0 290px;
  }

  .scene--hero {
    padding-bottom: 250px;
  }

  .scene--types {
    padding-bottom: 310px;
  }

  .phone--income,
  .phone--types {
    transform: none;
  }

  .scene-card,
  .feature-tile,
  .income-chip,
  .time-chip,
  .palette-chip,
  .save-chip {
    position: absolute;
  }

  .scene-card--left {
    left: 3%;
    bottom: 58px;
  }

  .scene-card--right {
    right: 3%;
    top: auto;
    bottom: 38px;
  }

  .feature-tile--top-left,
  .feature-tile--bottom-left,
  .feature-tile--bottom-right,
  .feature-tile--schedule-left,
  .feature-tile--schedule-right-top,
  .feature-tile--schedule-right-bottom {
    width: 260px;
    min-height: 160px;
  }

  .feature-tile--top-left {
    left: 3%;
    top: auto;
    bottom: 108px;
  }

  .feature-tile--bottom-left {
    left: calc(50% - 130px);
    bottom: 62px;
  }

  .feature-tile--bottom-right {
    right: 3%;
    bottom: 108px;
  }

  .income-chip {
    width: 310px;
  }

  .income-chip--one {
    top: auto;
    right: 3%;
    bottom: 214px;
  }

  .income-chip--two {
    left: 3%;
    top: auto;
    bottom: 130px;
  }

  .income-chip--three {
    right: 3%;
    bottom: 46px;
  }

  .feature-tile--schedule-left {
    left: 3%;
    top: auto;
    bottom: 134px;
  }

  .feature-tile--schedule-right-top {
    right: 3%;
    top: auto;
    bottom: 134px;
  }

  .feature-tile--schedule-right-bottom {
    right: calc(50% - 130px);
    bottom: 34px;
  }

  .time-chip {
    left: 3%;
    top: auto;
    bottom: 206px;
  }

  .palette-chip {
    right: 3%;
    top: auto;
    bottom: 128px;
  }

  .save-chip {
    right: calc(50% - 118px);
    bottom: 42px;
  }

  .quick-benefits,
  .content-grid,
  .content-grid--three,
  .seo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .header {
    min-height: 70px;
  }

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

  .brand {
    font-size: 1.12rem;
  }

  .brand__icon {
    width: 43px;
    height: 43px;
    border-radius: 14px;
  }

  .nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 80px;
    z-index: 90;
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(7, 8, 13, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

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

  .nav a {
    padding: 14px 15px;
    border-radius: 16px;
  }

  .nav a:hover {
    background: rgba(255, 255, 255, 0.04);
  }

  .nav a::after {
    display: none;
  }

  .header__actions .button {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .promo {
    padding: 72px 0 86px;
  }

  .promo--home {
    padding-top: 50px;
  }

  .promo__head {
    margin-bottom: 36px;
  }

  .promo__head h1,
  .promo__head h2 {
    font-size: clamp(3.05rem, 14vw, 5.2rem);
    letter-spacing: -0.06em;
  }

  .promo__head p {
    font-size: clamp(1.12rem, 4.5vw, 1.7rem);
  }

  .promo__actions {
    display: grid;
  }

  .promo__actions .button,
  .promo__actions .store-button {
    width: min(100%, 360px);
  }

  .russia-premium-cta {
    width: min(100%, 430px);
    min-height: 66px;
    padding-inline: 20px;
    border-radius: 20px;
  }

  .phone {
    --phone-w: min(430px, 92vw);
    --phone-h: calc(var(--phone-w) * 1.82);
  }

  .phone--home,
  .phone--schedule,
  .phone--types {
    --phone-w: min(430px, 92vw);
    --phone-h: calc(var(--phone-w) * 1.82);
  }

  .phone--income {
    --phone-w: min(460px, 92vw);
    --phone-h: calc(var(--phone-w) * 1.64);
  }

  .phone__screen {
    padding: 31px 22px 22px;
    border-radius: 45px;
  }

  .phone__bezel {
    border-radius: 52px;
  }

  .phone__notch {
    width: 118px;
    height: 34px;
  }

  .scene-card,
  .feature-tile {
    width: min(100%, 320px);
  }

  .quick-benefits,
  .content-grid,
  .content-grid--three,
  .seo-grid,
  .seo-keygroups,
  .footer__inner {
    grid-template-columns: 1fr;
  }

  .footer__links,
  .footer__meta {
    gap: 10px;
  }
}

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

  .promo {
    padding: 58px 0 68px;
  }

  .promo__head h1,
  .promo__head h2 {
    font-size: clamp(2.8rem, 15vw, 4.4rem);
  }

  .promo__head p {
    margin-top: 18px;
  }

  .scene,
  .scene--hero,
  .scene--types {
    padding-bottom: 0;
    display: grid;
    gap: 14px;
  }

  .phone,
  .phone--home,
  .phone--income,
  .phone--schedule,
  .phone--types {
    --phone-w: min(360px, 94vw);
    --phone-h: calc(var(--phone-w) * 1.84);
  }

  .phone--income {
    --phone-h: calc(var(--phone-w) * 1.68);
  }

  .phone {
    padding: 9px;
    border-radius: 52px;
  }

  .phone__screen {
    padding: 28px 18px 18px;
    border-radius: 43px;
  }

  .phone__bezel {
    inset: 5px;
    border-radius: 48px;
  }

  .status {
    padding-inline: 12px;
    font-size: 0.84rem;
  }

  .status__icons i {
    transform: scale(0.82);
  }

  .premium-pill {
    top: 70px;
    right: 26px;
    padding: 9px 12px;
    font-size: 0.78rem;
  }

  .app-hero-card {
    margin-top: 50px;
    padding: 18px;
  }

  .app-hero-card .mock-title {
    font-size: 1.2rem;
  }

  .app-hero-card p {
    font-size: 0.78rem;
  }

  .red-app-icon {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

  .next-shift > div {
    padding: 12px;
  }

  .next-shift button {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .home-stats {
    gap: 7px;
  }

  .home-stats article {
    min-height: 96px;
    padding: 9px;
  }

  .home-stats small {
    font-size: 0.58rem;
  }

  .home-stats strong,
  .home-stats em {
    font-size: 0.76rem;
  }

  .calendar-panel {
    margin-top: 14px;
    padding: 14px 9px 16px;
  }

  .calendar-panel__head strong {
    font-size: 1.08rem;
  }

  .weekdays,
  .month-grid {
    gap: 5px;
  }

  .day {
    min-height: 39px;
    border-radius: 10px;
    padding-top: 5px;
  }

  .day b {
    margin-bottom: 3px;
    font-size: 0.76rem;
  }

  .day i {
    min-width: 17px;
    height: 17px;
    font-size: 0.56rem;
  }

  .bottom-nav {
    min-height: 68px;
    left: 14px;
    right: 14px;
    padding: 7px 6px;
    border-radius: 20px 20px 34px 34px;
  }

  .bottom-nav span {
    font-size: 1rem;
  }

  .bottom-nav small {
    font-size: 0.5rem;
  }

  .scene-card,
  .feature-tile,
  .income-chip,
  .time-chip,
  .palette-chip,
  .save-chip {
    position: relative;
    inset: auto;
    width: min(100%, 360px);
    margin: 0 auto;
    order: 2;
  }

  .scene-card--left,
  .feature-tile--top-left,
  .feature-tile--schedule-left,
  .time-chip {
    order: 0;
  }

  .scene-card--right,
  .feature-tile--bottom-right,
  .feature-tile--schedule-right-top,
  .feature-tile--schedule-right-bottom,
  .palette-chip,
  .save-chip {
    order: 3;
  }

  .feature-tile--bottom-left,
  .income-chip--two,
  .income-chip--three {
    order: 4;
  }

  .phone {
    order: 1;
  }

  .phone-title {
    margin-top: 28px;
    font-size: 1.36rem;
  }

  .income-row {
    grid-template-columns: 54px 32px 1fr auto;
    gap: 7px;
    min-height: 37px;
  }

  .income-row time,
  .income-row span,
  .income-row strong {
    font-size: 0.78rem;
  }

  .badge {
    width: 26px;
    height: 26px;
    border-radius: 9px;
    font-size: 0.78rem;
  }

  .income-chip {
    min-height: 62px;
    grid-template-columns: auto 28px 1fr auto;
    padding: 12px 16px;
  }

  .income-chip b,
  .income-chip span,
  .income-chip strong {
    font-size: 0.86rem;
  }

  .edit-sheet,
  .type-sheet {
    padding: 24px 13px 16px;
    border-radius: 25px;
  }

  .edit-sheet__header {
    gap: 11px;
    padding: 13px;
    margin-bottom: 12px;
  }

  .edit-sheet__header strong {
    font-size: 1rem;
  }

  .edit-sheet__header p {
    font-size: 0.68rem;
  }

  .form-label {
    font-size: 0.72rem;
    margin: 9px 0 6px;
  }

  .input-box,
  .select-box,
  .date-box,
  .delete-box {
    min-height: 42px;
    border-radius: 14px;
    padding: 0 13px;
    font-size: 0.82rem;
  }

  .cycle-row {
    min-height: 49px;
    grid-template-columns: 20px 30px 1fr 26px;
    gap: 9px;
    padding: 0 9px;
  }

  .cycle-row strong {
    font-size: 0.8rem;
  }

  .hint {
    font-size: 0.66rem;
  }

  .sheet-actions {
    gap: 10px;
  }

  .sheet-actions .button {
    min-height: 43px;
    border-radius: 14px;
    font-size: 0.78rem;
  }

  .type-row {
    min-height: 58px;
    grid-template-columns: 40px 1fr 16px;
    gap: 9px;
    padding: 9px;
  }

  .type-row .badge {
    width: 35px;
    height: 35px;
  }

  .type-row strong {
    font-size: 0.84rem;
  }

  .type-row small {
    font-size: 0.58rem;
  }

  .type-sheet {
    left: 9px;
    right: 9px;
    bottom: 16px;
  }

  .color-row,
  .palette-chip {
    gap: 7px;
    flex-wrap: wrap;
  }

  .color,
  .palette-chip .color {
    width: 22px;
    height: 22px;
  }

  .two-cols {
    gap: 7px;
  }

  .time-chip,
  .save-chip {
    min-height: 58px;
    padding: 0 18px;
    font-size: 1rem;
  }

  .palette-chip {
    padding: 16px;
  }

  .quick-benefits,
  .content-grid {
    margin-top: 28px;
  }

  .quick-benefits article,
  .content-card {
    padding: 22px;
    border-radius: 24px;
  }

  .quick-benefits strong,
  .content-card h3 {
    font-size: 1.16rem;
  }

  .scene-card strong,
  .feature-tile strong {
    font-size: 1.24rem;
  }

  .scene-card em,
  .feature-tile em {
    font-size: 1.08rem;
  }

  .quick-benefits span,
  .content-card p {
    font-size: 1.06rem;
    line-height: 1.6;
  }

  .seo-grid strong {
    font-size: 1.18rem;
  }

  .seo-grid span {
    font-size: 1.08rem;
  }

  .seo-section,
  .faq,
  .final-cta {
    padding: 62px 0;
  }

  .seo-panel,
  .final-cta__box {
    padding: 26px;
    border-radius: 26px;
  }

  .seo-panel h2,
  .faq__head h2,
  .final-cta__box .final-title {
    font-size: clamp(2.15rem, 11vw, 3.4rem);
  }

  .faq-question {
    min-height: 66px;
    padding: 18px 20px;
    font-size: 1rem;
  }

  .faq-answer p {
    padding: 0 20px;
    font-size: 1.05rem;
  }

  .faq-item.is-open .faq-answer p {
    padding-bottom: 20px;
  }

  .seo-actions,
  .final-cta__actions {
    display: grid;
    width: 100%;
  }

  .seo-actions .button,
  .final-cta__actions .button,
  .final-cta__actions .store-button {
    width: 100%;
  }

  .final-cta__box {
    gap: 20px;
  }

  .final-cta__box .store-button {
    min-height: 64px;
    padding-inline: 26px;
  }

  .decor--dots,
  .decor--wave {
    display: none;
  }

  .decor--planet {
    opacity: 0.45;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
