:root {
  --bg: #03030a;
  --bg-soft: #090813;
  --panel: rgba(28, 26, 38, 0.72);
  --panel-strong: rgba(38, 35, 48, 0.86);
  --line: rgba(255, 255, 255, 0.12);
  --line-bright: rgba(166, 95, 255, 0.45);
  --text: #fbf9ff;
  --muted: #a7a0b7;
  --dim: #756f84;
  --purple: #9b5cff;
  --pink: #ff4fa3;
  --blue: #39b9ff;
  --cyan: #21e1d8;
  --gold: #ffd91f;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow-glow: 0 0 80px rgba(144, 79, 255, 0.35);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 22%, rgba(99, 63, 210, 0.24), transparent 32rem),
    radial-gradient(circle at 80% 8%, rgba(22, 180, 217, 0.14), transparent 30rem),
    linear-gradient(180deg, #03030a 0%, #070613 46%, #03030a 100%);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  line-height: 1.6;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 20;
  padding: 8px 12px;
  border-radius: 12px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-140%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(3, 3, 10, 0.72);
  backdrop-filter: blur(22px);
}

.nav-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
  flex: 0 0 auto;
  box-shadow: 0 0 24px rgba(155, 92, 255, 0.5);
}

.brand-copy {
  display: grid;
  gap: 0;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 22px;
  font-weight: 900;
}

.brand-copy small {
  color: rgba(251, 249, 255, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.nav-links,
.nav-actions,
.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links {
  gap: 30px;
  margin-left: 88px;
  margin-right: auto;
}

.nav-links a,
.footer-links a {
  color: rgba(251, 249, 255, 0.78);
  font-weight: 700;
  font-size: 15px;
}

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

.language-toggle {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.language-toggle button {
  border: 0;
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.language-toggle button.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.11);
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 68px;
  padding: 13px 23px;
  border: 1px solid rgba(167, 92, 255, 0.68);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(155, 92, 255, 0.1)),
    rgba(9, 7, 18, 0.72);
  box-shadow: 0 0 34px rgba(155, 92, 255, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.store-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.store-button.compact {
  min-height: 48px;
  padding: 6px 15px;
  border-radius: 16px;
  gap: 10px;
}

.store-button.compact .apple-icon {
  width: 24px;
  height: 24px;
}

.store-button.compact strong {
  font-size: 16px;
  line-height: 1.05;
}

.store-button.compact small {
  font-size: 12px;
  line-height: 1.05;
}

.apple-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  fill: #fff;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.18));
}

.store-button strong,
.store-button small {
  display: block;
  line-height: 1.15;
}

.store-button strong {
  font-size: 19px;
  font-weight: 900;
}

.store-button small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.section-bleed,
.section {
  position: relative;
  overflow: hidden;
}

.section-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 760px;
  padding: 72px 0 82px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 490px);
  align-items: start;
  gap: 48px;
}

.aurora {
  position: absolute;
  filter: blur(22px);
  opacity: 0.8;
  pointer-events: none;
}

.aurora-one {
  width: 760px;
  height: 360px;
  left: 38%;
  top: 210px;
  background: radial-gradient(ellipse at center, rgba(154, 83, 255, 0.66), transparent 60%);
  transform: rotate(-18deg);
}

.aurora-two {
  width: 520px;
  height: 300px;
  right: -120px;
  top: 300px;
  background: radial-gradient(ellipse at center, rgba(33, 225, 216, 0.36), transparent 64%);
  transform: rotate(18deg);
}

.eyebrow {
  margin: 0 0 14px;
  color: #c8a8ff;
  font-size: 15px;
  font-weight: 800;
}

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

h1 {
  margin-bottom: 24px;
  font-size: clamp(48px, 7vw, 86px);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-highlight {
  color: #a968ff;
  background: linear-gradient(100deg, #b86cff 0%, #8f4dff 46%, #229fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 38px rgba(111, 65, 255, 0.62), 0 0 18px rgba(34, 159, 255, 0.28);
}

.hero-subtitle {
  max-width: 560px;
  margin-bottom: 34px;
  color: rgba(251, 249, 255, 0.78);
  font-size: clamp(18px, 2vw, 24px);
}

.hero-device {
  position: relative;
  width: min(100%, 430px);
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.hero-device::before {
  content: "";
  position: absolute;
  width: 110%;
  height: 78%;
  left: -4%;
  top: 10%;
  border-radius: 50%;
  background:
    radial-gradient(circle at 44% 46%, rgba(143, 92, 255, 0.42), transparent 48%),
    radial-gradient(circle at 72% 34%, rgba(33, 225, 216, 0.16), transparent 56%);
  filter: blur(74px);
  opacity: 0.34;
  pointer-events: none;
}

.hero-phone-image {
  position: relative;
  z-index: 1;
  width: auto;
  max-width: 100%;
  max-height: 780px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(143, 92, 255, 0.22));
  transform: rotate(0deg);
}

.section {
  padding: 74px 0;
}

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

.section-heading h2,
.privacy-panel h2 {
  margin-bottom: 10px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.18;
}

.section-heading p,
.glass-card p,
.feature-card p,
.faq-item p,
.page-card p {
  color: var(--muted);
}

.card-grid {
  display: grid;
  gap: 20px;
}

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

.glass-card,
.feature-card,
.faq-item,
.page-card,
.privacy-panel {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 70px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(22px);
}

.glass-card,
.faq-item {
  min-height: 220px;
  padding: 32px;
  border-radius: var(--radius-lg);
  transition: transform 180ms ease, border-color 180ms ease;
}

.glass-card:hover,
.feature-card:hover,
.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(169, 105, 255, 0.42);
}

.icon-orb {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin-bottom: 24px;
  border-radius: 22px;
  font-size: 40px;
  line-height: 1;
}

.icon-orb.purple {
  background: rgba(155, 92, 255, 0.2);
  color: #c08cff;
  box-shadow: 0 0 42px rgba(155, 92, 255, 0.28);
}

.icon-orb.blue {
  background: rgba(57, 185, 255, 0.18);
  color: var(--blue);
}

.icon-orb.pink {
  background: rgba(255, 79, 163, 0.18);
  color: #ff9cc9;
}

.glass-card h3,
.feature-card h3,
.faq-item h3,
.page-card h2 {
  margin-bottom: 8px;
  font-size: 23px;
}

.feature-section {
  background: linear-gradient(180deg, transparent, rgba(12, 11, 26, 0.75), transparent);
}

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

.feature-card {
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  transition: transform 180ms ease, border-color 180ms ease;
}

.mini-phone {
  position: relative;
  height: 300px;
  margin-bottom: 22px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px 32px 10px 10px;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(155, 92, 255, 0.42), transparent 34%),
    linear-gradient(180deg, #070611, #100816 80%);
}

.mini-title {
  font-weight: 900;
  font-size: 22px;
}

.mini-today {
  margin-top: 45px;
  padding: 28px 18px;
  border-radius: 22px;
  border: 1px solid rgba(155, 92, 255, 0.44);
  font-size: 44px;
  font-weight: 950;
  line-height: 1;
  color: #b16cff;
  background: rgba(0, 0, 0, 0.34);
}

.mini-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
}

.mini-row span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ff626d;
  box-shadow: 0 0 20px rgba(255, 98, 109, 0.8);
}

.feature-shot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.today-preview,
.theme-preview {
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.today-shot {
  filter: drop-shadow(0 20px 42px rgba(155, 92, 255, 0.28));
}

.theme-shot {
  filter: drop-shadow(0 22px 48px rgba(155, 92, 255, 0.22));
}

.widget-shot {
  filter: drop-shadow(0 22px 48px rgba(155, 92, 255, 0.24));
}

.ring-widget {
  position: absolute;
  inset: 46px 28px auto;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(20, 13, 33, 0.95) 48%, transparent 49%),
    conic-gradient(#ffffff 0 7%, transparent 7% 13%, var(--purple) 13% 82%, rgba(255, 255, 255, 0.18) 82% 100%);
  box-shadow: 0 0 55px rgba(155, 92, 255, 0.34);
}

.ring-widget span,
.circle-widget span {
  display: block;
  width: max-content;
  margin: 0 auto 8px;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 900;
}

.ring-widget strong,
.circle-widget strong {
  display: block;
  font-size: 22px;
}

.wide-feature {
  grid-column: span 1;
}

.widget-stage {
  position: relative;
  height: 300px;
  margin-bottom: 22px;
}

.wide-widget,
.circle-widget {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 52% 48%, rgba(155, 92, 255, 0.44), transparent 62%),
    linear-gradient(145deg, #140e20, #231333);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.36);
}

.wide-widget {
  inset: 18px 0 auto;
  min-height: 120px;
  padding: 22px;
  border-radius: 34px;
}

.wide-widget span {
  display: block;
  color: rgba(251, 249, 255, 0.9);
  font-weight: 800;
  margin-bottom: 16px;
}

.wide-widget div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
}

.wide-widget em {
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-style: normal;
  font-weight: 900;
}

.circle-widget {
  left: 16px;
  bottom: 4px;
  width: 128px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 32px;
}

.theme-preview {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.swatches {
  display: flex;
  gap: 13px;
  margin-bottom: 32px;
}

.swatches span {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  box-shadow: 0 0 22px currentColor;
}

.swatches span:nth-child(1) { background: #ff5d69; color: #ff5d69; }
.swatches span:nth-child(2) { background: #4b9cff; color: #4b9cff; }
.swatches span:nth-child(3) { background: #62cd75; color: #62cd75; }
.swatches span:nth-child(4) { background: #ffd840; color: #ffd840; }
.swatches span:nth-child(5) { background: #9b5cff; color: #9b5cff; }

.setting-line {
  height: 20px;
  margin-top: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.setting-line.short {
  width: 68%;
}

.privacy-panel {
  position: relative;
  padding: clamp(32px, 4.5vw, 52px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.065);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.043), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.privacy-panel::before,
.privacy-panel::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
  filter: blur(28px);
}

.privacy-panel::before {
  width: 42%;
  height: 52%;
  left: -12%;
  top: -16%;
  background: radial-gradient(circle, rgba(155, 92, 255, 0.2), transparent 68%);
}

.privacy-panel::after {
  width: 48%;
  height: 58%;
  right: -16%;
  bottom: -24%;
  background: radial-gradient(circle, rgba(83, 101, 255, 0.13), transparent 70%);
}

.privacy-panel > * {
  position: relative;
  z-index: 1;
}

.privacy-panel h2 {
  max-width: 720px;
  margin: 0 auto 10px;
  text-align: center;
}

.privacy-lede {
  max-width: 560px;
  margin: 0 auto;
  color: rgba(251, 249, 255, 0.64);
  text-align: center;
  font-size: 18px;
}

.privacy-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 34px;
  max-width: 700px;
  margin: 32px auto 0;
}

.privacy-promise {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: 0;
}

.privacy-symbol {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin-top: 0;
  color: rgba(205, 176, 255, 0.9);
  font-size: 42px;
  line-height: 1;
}

.privacy-promise:nth-child(2) .privacy-symbol,
.privacy-promise:nth-child(4) .privacy-symbol {
  font-size: 56px;
}

.privacy-promise strong,
.privacy-promise small {
  display: block;
}

.privacy-promise strong {
  color: rgba(251, 249, 255, 0.94);
  font-size: 17px;
  font-weight: 900;
}

.privacy-promise small {
  margin-top: 3px;
  color: rgba(251, 249, 255, 0.56);
  font-size: 14px;
  line-height: 1.45;
}

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

.faq-item {
  min-height: 160px;
  padding: 24px;
}

.site-footer {
  padding: 34px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(3, 3, 10, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.footer-note {
  text-align: right;
  font-weight: 800;
  margin: 0;
}

.footer-bottom {
  margin-top: 22px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom small {
  color: var(--muted);
}

.subpage {
  background:
    radial-gradient(circle at 10% 12%, rgba(155, 92, 255, 0.24), transparent 30rem),
    radial-gradient(circle at 90% 0%, rgba(57, 185, 255, 0.12), transparent 28rem),
    var(--bg);
}

.page-main {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 80px 0;
}

.page-card {
  margin-bottom: 18px;
  padding: clamp(26px, 5vw, 44px);
  border-radius: var(--radius-lg);
}

.page-card h1 {
  font-size: clamp(42px, 7vw, 68px);
}

.page-card h2 {
  color: var(--text);
}

.policy-main {
  width: min(980px, calc(100% - 32px));
}

.policy-card {
  padding: clamp(28px, 5vw, 56px);
}

.policy-header {
  margin-bottom: 38px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.policy-header h1 {
  margin-bottom: 16px;
}

.policy-copy section {
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.policy-copy section:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.policy-copy h2 {
  margin-bottom: 14px;
  font-size: clamp(24px, 3vw, 34px);
}

.policy-copy h3 {
  margin: 22px 0 8px;
  font-size: 20px;
}

.policy-copy p,
.policy-copy li {
  color: rgba(251, 249, 255, 0.78);
  font-size: 17px;
}

.policy-copy ul {
  margin: 12px 0 18px;
  padding-left: 22px;
}

.policy-copy li {
  margin: 8px 0;
}

.policy-en {
  display: none;
}

html[lang="en"] .policy-zh {
  display: none;
}

html[lang="en"] .policy-en {
  display: block;
}

.text-link {
  color: #d4b7ff;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-card {
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  width: 340px;
  height: 220px;
  right: -90px;
  top: -80px;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(155, 92, 255, 0.34), transparent 68%);
  filter: blur(24px);
  pointer-events: none;
}

.contact-card > * {
  position: relative;
  z-index: 1;
}

.contact-email {
  color: #d4b7ff;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-label {
  margin: 28px 0 6px;
  color: rgba(251, 249, 255, 0.58);
  font-size: 14px;
  font-weight: 900;
}

.contact-actions {
  margin-top: 30px;
}

.primary-contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  border: 1px solid rgba(167, 92, 255, 0.72);
  border-radius: 18px;
  color: var(--text);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(155, 92, 255, 0.2)),
    rgba(9, 7, 18, 0.74);
  box-shadow: 0 0 34px rgba(155, 92, 255, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.13);
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.primary-contact-button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
}

.simple-list {
  display: grid;
  gap: 18px;
}

.simple-list article {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.simple-list article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.simple-list h3 {
  margin-bottom: 4px;
}

.page-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-links a {
  padding: 12px 16px;
  border: 1px solid var(--line-bright);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

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

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

@media (max-width: 980px) {
  .nav-shell {
    min-height: auto;
    padding: 16px 0;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 16px;
    margin-left: 0;
    margin-right: 0;
  }

  .nav-actions {
    margin-left: auto;
  }

  .store-button.compact {
    display: none;
  }

  .hero-grid,
  .card-grid.three,
  .feature-grid,
  .faq-grid,
  .privacy-points,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-device {
    width: min(100%, 380px);
  }

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

  .footer-note {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .nav-shell {
    width: min(100% - 24px, var(--max));
  }

  .brand {
    font-size: 21px;
  }

  .nav-links {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .nav-links a {
    flex: 0 0 auto;
    font-size: 14px;
  }

  .language-toggle button {
    padding: 7px 10px;
  }

  .hero-grid {
    gap: 44px;
  }

  .hero {
    padding: 46px 0 72px;
  }

  h1 {
    font-size: 45px;
  }

  .section {
    padding: 58px 0;
  }

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

  .hero-device {
    width: min(100%, 330px);
  }

  .hero-phone-image {
    max-height: 620px;
  }

  .mini-phone,
  .widget-stage {
    height: 270px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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