:root {
  --paper: #fbf2e3;
  --paper-2: #fff9ee;
  --paper-3: #f2e0c6;
  --ink: #080706;
  --muted: #4d463d;
  --blue-muted: #17345d;
  --gold: #d4881f;
  --gold-2: #f1bd5b;
  --gold-dark: #9e5710;
  --espresso: #15110d;
  --line: rgba(174, 100, 22, .32);
  --card: rgba(255, 252, 245, .78);
  --shadow: 0 24px 54px rgba(69, 42, 13, .18);
  --font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font);
  background:
    radial-gradient(circle at 46% 0%, rgba(255,255,255,.96), transparent 34rem),
    linear-gradient(90deg, rgba(108, 72, 24, .035) 1px, transparent 1px),
    linear-gradient(0deg, rgba(108, 72, 24, .03) 1px, transparent 1px),
    linear-gradient(135deg, #fffaf0, var(--paper) 52%, #f3dfc2);
  background-size: auto, 24px 24px, 24px 24px, auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 12%, rgba(229, 176, 76, .16), transparent 20rem),
    radial-gradient(circle at 92% 22%, rgba(255,255,255,.72), transparent 22rem),
    radial-gradient(circle at 60% 92%, rgba(154, 91, 18, .1), transparent 26rem);
}

a {
  color: inherit;
}

.hero-image-section {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #fbf2e3;
}

.hero-reference-image {
  display: block;
  width: 100%;
  height: auto;
}

.hero-hotspots {
  position: absolute;
  inset: 0;
}

.hotspot {
  position: absolute;
  display: block;
  overflow: hidden;
  color: transparent;
  text-decoration: none;
  white-space: nowrap;
}

.hotspot-menu-button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.hotspot:focus-visible {
  outline: 3px solid rgba(212, 136, 31, .75);
  outline-offset: 3px;
  border-radius: 10px;
}

.hotspot-logo {
  left: 3.4%;
  top: 3%;
  width: 18%;
  height: 9%;
}

.hotspot-features {
  left: 33%;
  top: 6.6%;
  width: 7.5%;
  height: 4.5%;
}

.hotspot-how-nav {
  left: 42.2%;
  top: 6.6%;
  width: 9.5%;
  height: 4.5%;
}

.hotspot-calendar {
  left: 58.5%;
  top: 6.6%;
  width: 7%;
  height: 4.5%;
}

.hotspot-languages {
  left: 68.4%;
  top: 6.6%;
  width: 8.8%;
  height: 4.5%;
}

.hotspot-privacy {
  left: 82.3%;
  top: 6.6%;
  width: 6.5%;
  height: 4.5%;
}

.hotspot-telegram {
  left: 5.8%;
  top: 70.25%;
  width: 16.3%;
  height: 7.95%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff8ee;
  border: 2px solid rgba(231, 185, 95, .78);
  border-radius: 10px;
  background:
    radial-gradient(circle at 28% 0%, rgba(230, 176, 74, .28), transparent 45%),
    linear-gradient(180deg, #252018, #070605);
  box-shadow: 0 10px 22px rgba(28, 17, 7, .28), inset 0 1px 0 rgba(255,255,255,.13);
  font-size: clamp(13px, 1.15vw, 18px);
  font-weight: 680;
  line-height: 1;
}

.hotspot-telegram::before {
  content: "✦";
  color: #f2ba4d;
  font-size: 1.1em;
}

.hotspot-how {
  left: 24%;
  top: 72.5%;
  width: 12%;
  height: 6.4%;
}

.hotspot-menu-button,
.hero-mobile-menu {
  display: none;
}

.hero-mobile-menu {
  position: absolute;
  z-index: 4;
  right: 5.5%;
  top: 9.4%;
  width: min(265px, 70%);
  padding: 10px;
  border: 1px solid rgba(181, 111, 31, .42);
  border-radius: 18px;
  background: rgba(255, 249, 238, .94);
  box-shadow: 0 18px 34px rgba(54, 33, 10, .2), inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
}

.hero-mobile-menu.is-open {
  display: grid;
  gap: 8px;
}

.hero-mobile-menu a {
  padding: 12px 14px;
  border: 1px solid rgba(201, 137, 40, .18);
  border-radius: 12px;
  color: var(--ink);
  background: rgba(255,255,255,.52);
  font-size: 15px;
  font-weight: 720;
  text-decoration: none;
}

.hero-mobile-menu a:last-child {
  color: #fff8ee;
  background: linear-gradient(180deg, #252018, #070605);
  border-color: rgba(231, 185, 95, .62);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 28px clamp(16px, 3vw, 46px) 0;
}

.nav-shell {
  width: min(1660px, 100%);
  min-height: 106px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 16px 30px;
  border: 1px solid rgba(181, 104, 24, .52);
  border-radius: 25px;
  background: rgba(255, 249, 238, .76);
  box-shadow: 0 16px 30px rgba(73, 45, 12, .17), inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
  font-size: clamp(30px, 2.7vw, 42px);
  font-weight: 850;
  letter-spacing: 0;
}

.brand-small {
  font-size: 25px;
}

.brand img {
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(235, 181, 72, .8), 0 8px 18px rgba(0,0,0,.22);
}

.brand span span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(22px, 4vw, 58px);
}

.nav-links a,
.footer-links a {
  text-decoration: none;
}

.nav-links a {
  font-size: 17px;
  font-weight: 620;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 22px;
  border: 1px solid rgba(232, 180, 86, .72);
  border-radius: 13px;
  color: #fff8ee;
  text-decoration: none;
  font-weight: 720;
  background:
    radial-gradient(circle at 32% 0%, rgba(231, 185, 95, .34), transparent 42%),
    linear-gradient(180deg, #2d251c, #0d0a08);
  box-shadow: 0 14px 26px rgba(34, 22, 8, .28), inset 0 1px 0 rgba(255,255,255,.14);
}

.header-cta span {
  color: var(--gold-2);
  font-size: 22px;
}

.menu-toggle {
  display: none;
  width: 56px;
  height: 50px;
  border: 1px solid rgba(201, 137, 40, .38);
  border-radius: 15px;
  background: var(--espresso);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.13), 0 10px 20px rgba(0,0,0,.2);
}

.menu-toggle span {
  display: block;
  width: 23px;
  height: 3px;
  margin: 4px auto;
  border-radius: 99px;
  background: #fff6e5;
}

.hero {
  width: min(1570px, calc(100% - 72px));
  min-height: calc(100vh - 122px);
  margin: 0 auto;
  padding: 70px 0 86px;
  display: grid;
  grid-template-columns: minmax(540px, .85fr) minmax(620px, 1.15fr);
  align-items: start;
  gap: 48px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 28px;
  padding: 10px 14px;
  border: 1px solid rgba(224, 127, 20, .74);
  border-radius: 10px;
  color: #c06109;
  background: rgba(255,255,255,.48);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 26px;
  font-size: clamp(52px, 4.25vw, 66px);
  line-height: .98;
  letter-spacing: 0;
}

h1 span {
  display: block;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(40px, 4vw, 70px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-lead,
.section-heading p,
.calendar-copy p,
.final-cta p {
  color: var(--muted);
  font-size: clamp(18px, 1.35vw, 25px);
  line-height: 1.42;
}

.hero-lead {
  max-width: 620px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.button-primary {
  min-width: 300px;
  min-height: 78px;
  border-radius: 15px;
  font-size: 21px;
}

.button-primary span {
  color: #fff2c7;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 640;
  text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 8px;
}

.text-link span {
  font-size: 30px;
  line-height: 0;
}

.hero-stage {
  position: relative;
  min-height: 650px;
  perspective: 1300px;
  transform-style: preserve-3d;
}

.phone-mockup {
  position: absolute;
  z-index: 8;
  left: 48%;
  top: 28px;
  width: 304px;
  height: 616px;
  padding: 12px;
  border-radius: 48px;
  background: linear-gradient(135deg, #11100e, #493822 44%, #090807);
  box-shadow: 0 42px 78px rgba(41, 25, 9, .34), inset 0 1px 0 rgba(255,255,255,.35);
  transform: translateX(-50%) rotateZ(5.5deg) rotateY(-8deg);
}

.phone-mockup::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  z-index: 4;
  width: 112px;
  height: 31px;
  border-radius: 999px;
  background: #050505;
  transform: translateX(-50%);
}

.phone-screen {
  height: 100%;
  overflow: hidden;
  border-radius: 38px;
  background: #fbfbfd;
}

.phone-status {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  padding: 20px 26px 8px;
  color: #102b4d;
  font-size: 13px;
  font-weight: 850;
}

.profile-art {
  height: 276px;
  overflow: hidden;
  background: #15110d;
}

.profile-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.76);
  filter: saturate(1.05) contrast(1.06);
}

.telegram-card {
  position: relative;
  margin: -32px 14px 0;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255,255,255,.95);
  box-shadow: 0 -8px 22px rgba(0,0,0,.14);
}

.profile-row {
  display: flex;
  gap: 13px;
  align-items: center;
}

.profile-row img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--gold);
}

.profile-row strong,
.profile-row span,
.profile-row em {
  display: block;
}

.profile-row strong {
  font-size: 26px;
  line-height: 1;
}

.profile-row span {
  color: #313131;
  font-size: 15px;
}

.profile-row em {
  color: #d66b08;
  font-size: 14px;
  font-style: normal;
}

.telegram-card p {
  margin: 16px 0 2px;
  font-size: 13px;
}

.telegram-card small {
  display: block;
  font-size: 12px;
}

.phone-actions,
.phone-tags {
  display: grid;
  gap: 8px;
}

.phone-actions {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 16px;
}

.phone-actions span,
.phone-tags span {
  display: grid;
  place-items: center;
  min-height: 48px;
  border: 1px solid rgba(215, 117, 20, .23);
  border-radius: 14px;
  color: #d66b08;
  font-size: 10px;
  background: #fff8ef;
}

.phone-tags {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 12px;
}

.phone-tags span {
  min-height: 34px;
  color: #17345d;
}

.calendar-panel,
.feature-stack article,
.sync-card,
.feature-card,
.step-card,
.legal-card {
  border: 1px solid rgba(181, 111, 31, .34);
  background: var(--card);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.86);
  backdrop-filter: blur(8px);
}

.calendar-panel {
  position: absolute;
  z-index: 4;
  left: 4%;
  top: 168px;
  width: 248px;
  min-height: 472px;
  padding: 26px 24px;
  border-radius: 25px;
  transform-origin: right center;
  transform: rotateY(31deg) rotateZ(-2.8deg) translateZ(-35px);
}

.calendar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ef7f10;
  font-size: 24px;
}

.calendar-top strong {
  color: #111;
  font-size: 17px;
}

.weekday-row,
.day-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
}

.weekday-row {
  margin-top: 28px;
  color: #55504a;
  font-size: 8px;
  font-weight: 850;
}

.day-grid {
  gap: 16px 0;
  margin-top: 20px;
  font-size: 15px;
}

.day-grid .muted {
  color: #9ba7b6;
}

.today {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin: -6px auto;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, #efad43, #d97808);
}

.event-row {
  display: flex;
  gap: 10px;
  margin-top: 34px;
  padding: 14px;
  border: 1px solid rgba(201, 137, 40, .18);
  border-radius: 13px;
  font-size: 12px;
  background: #fff9f1;
}

.event-row.second {
  margin-top: 12px;
}

.event-row i {
  width: 8px;
  height: 8px;
  margin-top: 4px;
  border-radius: 50%;
  background: #f18409;
}

.event-row b,
.event-row span,
.event-row em {
  display: block;
}

.event-row em {
  color: #d8730d;
  font-style: normal;
}

.feature-stack {
  position: absolute;
  z-index: 5;
  right: 0;
  top: 120px;
  width: 350px;
  display: grid;
  gap: 16px;
  transform-style: preserve-3d;
}

.feature-stack article {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr 24px;
  align-items: center;
  column-gap: 12px;
  min-height: 78px;
  padding: 13px 18px;
  border-radius: 18px;
  transform-origin: left center;
  transform: rotateY(-22deg) rotateZ(.4deg);
}

.feature-stack span {
  display: grid;
  place-items: center;
  color: #ee7d0d;
  font-size: 28px;
  font-weight: 800;
}

.feature-stack b,
.feature-stack small {
  display: block;
}

.feature-stack b {
  font-size: 15px;
}

.feature-stack small {
  color: var(--blue-muted);
  font-size: 12px;
}

.feature-stack em {
  color: #f18409;
  font-size: 22px;
  font-style: normal;
}

.section {
  width: min(1500px, calc(100% - 56px));
  margin: 0 auto;
  padding: 108px 0;
}

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

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

.feature-card {
  min-height: 150px;
  padding: 18px 22px;
  border-radius: 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: start;
  align-items: center;
  column-gap: 10px;
  row-gap: 10px;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(201, 137, 40, .58);
  box-shadow: 0 30px 70px rgba(61, 39, 14, .22);
}

.feature-card > span {
  display: inline-block;
  width: auto;
  height: auto;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 24px;
  line-height: 1;
}

.feature-card h3 {
  margin: 0;
  align-self: center;
}

.feature-card p {
  grid-column: 1 / -1;
  margin: 0;
}

.feature-card p,
.step-card p,
.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.5;
}

.feature-card em {
  display: inline-block;
  margin-left: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  color: #9b5208;
  background: rgba(201, 137, 40, .14);
  font-size: 11px;
  font-style: normal;
  vertical-align: middle;
}

.feature-card-accent {
  border-color: rgba(201, 137, 40, .68);
}

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

.step-card {
  padding: 34px;
  border-radius: 24px;
}

.step-card > span {
  color: var(--gold);
  font-size: 58px;
  font-weight: 850;
}

.calendar-section {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 64px;
  align-items: center;
}

.check-list {
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 14px 0;
  padding-left: 32px;
  color: var(--muted);
  line-height: 1.56;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 900;
}

.security-note {
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  border-radius: 16px;
  background: rgba(255,255,255,.58);
  font-size: 15px !important;
}

.sync-visual {
  position: relative;
  min-height: 390px;
}

.sync-card {
  position: absolute;
  width: 360px;
  padding: 28px;
  border-radius: 24px;
  transform: rotate(-5deg);
}

.sync-card.dark {
  right: 0;
  bottom: 38px;
  color: #fff;
  background: linear-gradient(180deg, #2a2118, #0e0b09);
  transform: rotate(5deg);
}

.sync-card span,
.sync-card strong,
.sync-card em {
  display: block;
}

.sync-card span {
  color: var(--gold);
}

.sync-card strong {
  margin: 8px 0;
  font-size: 28px;
}

.sync-card em {
  color: var(--muted);
  font-style: normal;
}

.sync-card.dark em {
  color: #d9c5aa;
}

.sync-orbit {
  position: absolute;
  left: 48%;
  top: 42%;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(180deg, #edaa3e, #d6780a);
  box-shadow: 0 20px 45px rgba(105, 61, 12, .25);
  font-size: 36px;
  font-weight: 900;
}

.language-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  max-width: 1120px;
  margin: 0 auto;
}

.language-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 10px 14px;
  border: 1px solid rgba(181, 111, 31, .26);
  border-radius: 999px;
  background: rgba(255,255,255,.58);
  text-align: center;
  font-size: 16px;
  font-weight: 720;
  line-height: 1.1;
  box-shadow: 0 10px 22px rgba(61, 39, 14, .08);
}

.flag {
  position: relative;
  flex: 0 0 auto;
  width: 26px;
  height: 18px;
  overflow: hidden;
  border-radius: 4px;
  background: #ddd;
  box-shadow: 0 0 0 1px rgba(48, 31, 12, .14), 0 2px 6px rgba(61, 39, 14, .13);
}

.flag-us {
  background: repeating-linear-gradient(to bottom, #b22234 0 1.4px, #fff 1.4px 2.8px);
}

.flag-us::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 11px;
  height: 10px;
  background: #3c3b6e;
}

.flag-es {
  background: linear-gradient(to bottom, #aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75%);
}

.flag-cn {
  background: #de2910;
}

.flag-cn::before,
.flag-vn::before {
  content: "*";
  position: absolute;
  color: #ffde00;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.flag-cn::before {
  left: 4px;
  top: 1px;
}

.flag-ua {
  background: linear-gradient(to bottom, #0057b7 0 50%, #ffd700 50%);
}

.flag-jp {
  background: #fff;
}

.flag-jp::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 5px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #bc002d;
}

.flag-sa {
  background: #006c35;
}

.flag-sa::before {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  top: 8px;
  height: 2px;
  border-radius: 99px;
  background: #fff;
}

.flag-in {
  background: linear-gradient(to bottom, #ff9933 0 33.33%, #fff 33.33% 66.66%, #138808 66.66%);
}

.flag-in::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 6px;
  width: 5px;
  height: 5px;
  border: 1px solid #000080;
  border-radius: 50%;
}

.flag-vn {
  background: #da251d;
}

.flag-vn::before {
  left: 8px;
  top: 2px;
}

.flag-fr {
  background: linear-gradient(to right, #0055a4 0 33.33%, #fff 33.33% 66.66%, #ef4135 66.66%);
}

.flag-de {
  background: linear-gradient(to bottom, #000 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66%);
}

.flag-ru {
  background: linear-gradient(to bottom, #fff 0 33.33%, #0039a6 33.33% 66.66%, #d52b1e 66.66%);
}

.flag-kr {
  background: #fff;
}

.flag-kr::before {
  content: "";
  position: absolute;
  left: 9px;
  top: 5px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #c60c30 0 50%, #003478 50%);
}

.final-cta {
  width: min(1260px, calc(100% - 56px));
  padding: 82px 30px;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255,255,255,.74), rgba(244,224,190,.66));
  text-align: center;
  box-shadow: var(--shadow);
}

.final-cta p {
  max-width: 720px;
  margin: 0 auto 30px;
}

.footer {
  width: min(1500px, calc(100% - 56px));
  margin: 0 auto;
  padding: 48px 0 60px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

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

.legal-page {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 76px 0;
}

.legal-card {
  padding: clamp(26px, 5vw, 62px);
  border-radius: 28px;
}

.legal-card h1 {
  margin-bottom: 12px;
  font-size: clamp(46px, 7vw, 78px);
  line-height: 1;
}

.legal-card h2 {
  margin-top: 42px;
  font-size: 32px;
}

.legal-card h3 {
  margin-top: 28px;
}

.legal-card code {
  padding: 2px 6px;
  border-radius: 7px;
  background: rgba(201,137,40,.14);
}

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

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

@media (max-width: 1260px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy,
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stage {
    width: min(900px, 100%);
    margin: 0 auto;
  }

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

  .calendar-section,
  .footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .check-list {
    text-align: left;
  }

  .language-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 860px) {
  .hotspot-menu-button {
    display: block;
    left: 82.4%;
    top: 3.8%;
    width: 9.8%;
    height: 5.4%;
  }

  .hotspot-logo {
    left: 5%;
    top: 1.9%;
    width: 55%;
    height: 7.8%;
  }

  .hotspot-features,
  .hotspot-how-nav,
  .hotspot-calendar,
  .hotspot-languages,
  .hotspot-privacy {
    display: none;
  }

  .hotspot-telegram {
    left: 24%;
    top: 41.1%;
    width: 52%;
    height: 5.6%;
    color: transparent;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-size: 0;
  }

  .hotspot-telegram::before {
    content: none;
  }

  .hotspot-how {
    left: 31%;
    top: 49.2%;
    width: 38%;
    height: 4.8%;
  }

  .site-header {
    padding: 22px 14px 0;
  }

  .nav-shell {
    min-height: 82px;
    grid-template-columns: auto auto;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 22px;
  }

  .brand {
    gap: 10px;
    font-size: clamp(28px, 7vw, 34px);
  }

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

  .menu-toggle {
    display: block;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .nav-shell.is-open .nav-links {
    display: grid;
    grid-column: 1 / -1;
    gap: 12px;
    justify-content: stretch;
    padding: 16px 3px 6px;
  }

  .nav-shell.is-open .nav-links a {
    padding: 13px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255,255,255,.58);
    text-align: left;
  }

  .hero {
    width: min(100% - 26px, 560px);
    min-height: auto;
    padding: 60px 0 44px;
    gap: 22px;
    overflow: hidden;
  }

  .eyebrow {
    margin-bottom: 24px;
    font-size: 12px;
    letter-spacing: 1.8px;
  }

  h1 {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(31px, 8.7vw, 39px);
    line-height: 1.05;
  }

  h2 {
    font-size: clamp(36px, 10vw, 52px);
  }

  .hero-lead,
  .section-heading p,
  .calendar-copy p,
  .final-cta p {
    font-size: 19px;
  }

  .hero-actions {
    display: grid;
    gap: 18px;
    margin-top: 30px;
  }

  .button-primary {
    min-width: 0;
    width: 320px;
    max-width: 100%;
    min-height: 66px;
    justify-self: center;
    font-size: 18px;
  }

  .hero-stage {
    height: 646px;
    min-height: 0;
    margin: 10px 0 0;
    transform: scale(.82);
    transform-origin: top center;
  }

  .phone-mockup {
    left: 50%;
    top: 28px;
    width: 284px;
    height: 578px;
    transform: translateX(-50%) translateZ(110px);
  }

  .profile-art {
    height: 252px;
  }

  .calendar-panel {
    left: 26px;
    top: 114px;
    width: 194px;
    min-height: 405px;
    padding: 20px 18px;
    transform: rotateY(28deg) rotateZ(-3deg) translateZ(-115px);
  }

  .calendar-top strong {
    font-size: 14px;
  }

  .day-grid {
    gap: 12px 0;
    font-size: 12px;
  }

  .event-row {
    margin-top: 24px;
    padding: 11px;
    font-size: 10px;
  }

  .feature-stack {
    right: 24px;
    top: 116px;
    width: 218px;
    gap: 12px;
    transform: translateZ(-150px);
  }

  .feature-stack article {
    grid-template-columns: 34px 1fr 20px;
    min-height: 67px;
    padding: 11px 13px;
    border-radius: 15px;
    transform: rotateY(-25deg) rotateZ(.2deg);
  }

  .feature-stack span {
    font-size: 22px;
  }

  .feature-stack b {
    font-size: 12px;
  }

  .feature-stack small {
    font-size: 10px;
  }

  .feature-stack em {
    font-size: 18px;
  }

  .section {
    width: min(100% - 26px, 560px);
    padding: 68px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .feature-grid,
  .steps-grid,
  .language-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    max-width: 390px;
  }

  .language-grid span {
    justify-content: flex-start;
    min-height: 46px;
    padding: 10px 12px;
    font-size: 15px;
  }

  .flag {
    width: 24px;
    height: 17px;
  }

  .feature-card,
  .step-card {
    min-height: 0;
    padding: 18px;
  }

  .feature-card {
    grid-template-columns: auto 1fr;
    column-gap: 9px;
    row-gap: 9px;
    border-radius: 18px;
  }

  .feature-card > span {
    width: auto;
    height: auto;
    border-radius: 0;
    font-size: 22px;
  }

  .feature-card h3 {
    font-size: 21px;
  }

  .sync-visual {
    min-height: 320px;
  }

  .sync-card {
    width: 88%;
  }

  .final-cta {
    width: min(100% - 26px, 560px);
  }
}

@media (max-width: 430px) {
  .hero-stage {
    margin-left: 0;
    margin-right: 0;
    transform: scale(.78);
    height: 560px;
  }

  .calendar-panel {
    left: 12px;
  }

  .feature-stack {
    right: 8px;
  }

  .legal-page {
    padding-top: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
