:root {
  --bg: #f3f1ea;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: #ffffff;
  --surface-soft: #f7f5ef;
  --text: #1d2b23;
  --text-muted: #5e6e64;
  --line: rgba(29, 43, 35, 0.08);
  --shadow: 0 20px 60px rgba(26, 48, 38, 0.08);
  --shadow-soft: 0 8px 30px rgba(26, 48, 38, 0.06);
  --accent: #00a86b;
  --accent-hover: #009960;
  --accent-violet: #0f8f68;
  --accent-pink: #00b87a;
  --accent-orange: #58c792;
  --accent-mint: #00a86b;
  --accent-sky: #8fd8b6;
  --mac-red: #ff6b5f;
  --mac-yellow: #f5bf4f;
  --mac-green: #28c840;
  --glow-a: rgba(0, 168, 107, 0.14);
  --glow-b: rgba(143, 216, 182, 0.16);
  --glow-c: rgba(88, 199, 146, 0.12);
  --success: #1fa971;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1200px;
  --font-base: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif;
  --font-hand: "Bradley Hand", "Segoe Script", "Snell Roundhand", cursive;
  --transition: 260ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --focus-ring: 0 0 0 3px rgba(0, 168, 107, 0.2);
}

body.dark-mode {
  --bg: #09100d;
  --surface: rgba(13, 19, 17, 0.78);
  --surface-strong: #101916;
  --surface-soft: #0c1411;
  --text: #f3faf6;
  --text-muted: #9cacA3;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
  --shadow-soft: 0 12px 42px rgba(0, 0, 0, 0.24);
  --accent: #49d18f;
  --accent-hover: #66dda2;
  --accent-violet: #7fe0b2;
  --accent-pink: #3cc88b;
  --accent-orange: #9de8c2;
  --accent-mint: #49d18f;
  --accent-sky: #91dfba;
  --mac-red: #ff7d73;
  --mac-yellow: #ffd36b;
  --mac-green: #44de61;
  --glow-a: rgba(73, 209, 143, 0.16);
  --glow-b: rgba(145, 223, 186, 0.12);
  --glow-c: rgba(103, 224, 169, 0.09);
  --focus-ring: 0 0 0 3px rgba(73, 209, 143, 0.24);
}

body.accessibility-mode {
  --transition: 0ms;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-base);
  background:
    radial-gradient(circle at 14% 10%, var(--glow-b), transparent 22%),
    radial-gradient(circle at 82% 16%, var(--glow-c), transparent 22%),
    radial-gradient(circle at top center, var(--glow-a), transparent 28%),
    linear-gradient(180deg, #fcfbf7 0%, var(--bg) 35%, #ece9df 100%);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.dark-mode {
  background:
    radial-gradient(circle at 12% 8%, rgba(145, 223, 186, 0.08), transparent 18%),
    radial-gradient(circle at 88% 12%, rgba(103, 224, 169, 0.08), transparent 18%),
    radial-gradient(circle at 50% -6%, rgba(73, 209, 143, 0.14), transparent 26%),
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.025), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 18%),
    linear-gradient(180deg, #050806 0%, var(--bg) 52%, #070d0a 100%);
}

body.dark-mode::before,
body.dark-mode::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body.dark-mode::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.014) 0 1px, transparent 1px 100%);
  background-size: 160px 160px, 100% 112px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.58) 52%, transparent 100%);
  opacity: 0.48;
}

body.dark-mode::after {
  background:
    radial-gradient(circle at 14% 24%, rgba(145, 223, 186, 0.05), transparent 18%),
    radial-gradient(circle at 86% 18%, rgba(73, 209, 143, 0.06), transparent 18%),
    radial-gradient(circle at 72% 70%, rgba(103, 224, 169, 0.04), transparent 22%),
    radial-gradient(circle at 50% 8%, rgba(255, 255, 255, 0.04), transparent 18%);
  filter: blur(12px);
  opacity: 0.9;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

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

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

button {
  font: inherit;
}

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

.narrow {
  width: min(820px, calc(100% - 48px));
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -40px;
  background: var(--text);
  color: var(--bg);
  padding: 10px 14px;
  border-radius: 999px;
  z-index: 50;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 16px 0;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(249, 246, 239, 0.68)),
    linear-gradient(90deg, rgba(0, 168, 107, 0.08), rgba(143, 216, 182, 0.08), rgba(88, 199, 146, 0.06));
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

body.dark-mode .nav-shell {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    linear-gradient(135deg, rgba(22, 33, 27, 0.88), rgba(12, 19, 16, 0.82)),
    linear-gradient(90deg, rgba(53, 197, 138, 0.08), rgba(127, 215, 175, 0.08), rgba(99, 216, 167, 0.06));
  border-color: rgba(127, 215, 175, 0.1);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  min-width: 0;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 20px;
  position: relative;
  flex: 0 0 auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.logo-mark img {
  display: block;
  width: 100%;
  height: 100%;
}

.logo-word {
  color: var(--text);
  font-size: clamp(1.2rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.logo-tag {
  color: var(--text-muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

body.dark-mode .logo-word {
  color: #f3fbf6;
}

.footer-logo .logo-tag {
  opacity: 0.9;
}

.logo span {
  color: var(--text-muted);
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
}

.site-nav a {
  color: #44544b;
  font-size: 0.95rem;
  transition: color var(--transition);
}

body.dark-mode .site-nav a {
  color: #c8d7cf;
}

.site-nav a:hover {
  color: var(--accent);
}

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

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(248, 245, 239, 0.64)),
    linear-gradient(90deg, rgba(0, 168, 107, 0.05), rgba(143, 216, 182, 0.05), rgba(88, 199, 146, 0.04));
  box-shadow: var(--shadow-soft);
}

.lang-option {
  min-width: 46px;
  min-height: 30px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #55655d;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.lang-option:hover {
  color: var(--text);
}

.lang-option.active {
  background: linear-gradient(135deg, #161a22 0%, #222733 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(19, 26, 39, 0.16);
}

.theme-btn,
.menu-toggle,
.sticky-close {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
  color: var(--text);
  border-radius: 999px;
  transition: transform var(--transition), background var(--transition), border-color var(--transition);
}

body.dark-mode .theme-btn,
body.dark-mode .menu-toggle,
body.dark-mode .sticky-close {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02)),
    rgba(10, 17, 14, 0.82);
  border-color: rgba(127, 215, 175, 0.1);
}

.theme-btn {
  width: 64px;
  height: 38px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.theme-btn-icon {
  position: relative;
  width: 42px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(229, 235, 231, 0.96), rgba(211, 219, 214, 0.88));
  border: 1px solid rgba(29, 43, 35, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 1px 2px rgba(29, 43, 35, 0.06);
}

.theme-btn-icon::after {
  content: "";
  position: absolute;
  left: 1px;
  top: 1px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #eef3f0);
  box-shadow:
    0 4px 10px rgba(29, 43, 35, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 0 0 1px rgba(29, 43, 35, 0.06);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.theme-sun,
.theme-moon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity var(--transition), transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.theme-sun {
  left: 5px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #d89a00;
  box-shadow: 0 0 0 3px rgba(216, 154, 0, 0.22);
  opacity: 0.9;
}

.theme-moon {
  right: 5px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #72849a;
  box-shadow: 0 0 0 3px rgba(114, 132, 154, 0.18);
  opacity: 0.72;
}

body.dark-mode .theme-btn-icon {
  background: linear-gradient(180deg, rgba(20, 23, 24, 0.96), rgba(12, 14, 15, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body.dark-mode .theme-btn-icon::after {
  transform: translateX(24px);
  background: linear-gradient(180deg, #edf3f8, #bfcad4);
  box-shadow:
    0 3px 12px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

body.dark-mode .theme-sun {
  opacity: 0.35;
}

body.dark-mode .theme-moon {
  opacity: 0.9;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 16px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 52px 0 24px;
}

body.dark-mode .hero {
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.045), transparent 18%),
    radial-gradient(circle at 70% 24%, rgba(73, 209, 143, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 18%);
}

.hero::before,
.hero::after,
.section-soft::before,
.section-soft::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0.22;
  background-repeat: repeat;
}

.hero::before {
  top: 34px;
  left: -20px;
  width: 320px;
  height: 160px;
  background-image: repeating-linear-gradient(48deg, rgba(29, 43, 35, 0.16) 0 2px, transparent 2px 28px);
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.95), transparent 72%);
}

.hero::after {
  right: -10px;
  bottom: 50px;
  width: 230px;
  height: 110px;
  background-image: repeating-linear-gradient(78deg, rgba(29, 43, 35, 0.14) 0 2px, transparent 2px 24px);
  mask-image: linear-gradient(315deg, rgba(0, 0, 0, 0.9), transparent 75%);
}

body.dark-mode .hero::before {
  top: 28px;
  left: -20px;
  width: 360px;
  height: 180px;
  opacity: 0.22;
  background-image: repeating-linear-gradient(
    46deg,
    rgba(255, 255, 255, 0.08) 0 2px,
    transparent 2px 26px,
    transparent 26px 34px
  );
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.94), rgba(0, 0, 0, 0.46) 58%, transparent 88%);
}

body.dark-mode .hero::after {
  right: -12px;
  bottom: 18px;
  width: 180px;
  height: 84px;
  opacity: 0.18;
  background-image: repeating-linear-gradient(
    79deg,
    rgba(255, 255, 255, 0.08) 0 2px,
    transparent 2px 22px,
    transparent 22px 30px
  );
  mask-image: linear-gradient(315deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.44) 60%, transparent 88%);
}

.hero-backdrop {
  position: absolute;
  inset: 8% 12% auto 12%;
  height: 520px;
  background:
    radial-gradient(circle at 50% 30%, rgba(0, 168, 107, 0.2), transparent 34%),
    radial-gradient(circle at 72% 36%, rgba(88, 199, 146, 0.16), transparent 24%),
    radial-gradient(circle at 28% 54%, rgba(143, 216, 182, 0.18), transparent 22%),
    radial-gradient(circle at 40% 62%, rgba(0, 168, 107, 0.12), transparent 20%),
    radial-gradient(circle at 30% 58%, rgba(255, 255, 255, 0.7), transparent 22%);
  filter: blur(18px);
  pointer-events: none;
}

body.dark-mode .hero-backdrop {
  background:
    radial-gradient(circle at 50% 30%, rgba(53, 197, 138, 0.24), transparent 34%),
    radial-gradient(circle at 72% 36%, rgba(99, 216, 167, 0.16), transparent 24%),
    radial-gradient(circle at 28% 54%, rgba(127, 215, 175, 0.18), transparent 22%),
    radial-gradient(circle at 40% 62%, rgba(53, 197, 138, 0.14), transparent 20%),
    radial-gradient(circle at 30% 58%, rgba(255, 255, 255, 0.12), transparent 22%);
  filter: blur(24px) saturate(112%);
}

.hero-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.82fr);
  gap: 34px;
  align-items: center;
  min-height: calc(100vh - 160px);
}

body.dark-mode .hero-shell::before,
body.dark-mode .hero-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

body.dark-mode .hero-shell::before {
  top: 4%;
  right: 14%;
  width: 420px;
  height: 420px;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(145, 223, 186, 0.08) 18%, rgba(73, 209, 143, 0.04) 38%, transparent 68%);
  filter: blur(22px);
  opacity: 0.92;
}

body.dark-mode .hero-shell::after {
  left: 4%;
  top: 12%;
  width: 460px;
  height: 220px;
  background:
    repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.035) 0 2px, transparent 2px 26px);
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.44) 62%, transparent 94%);
  opacity: 0.22;
}

.hero-copy,
.hero-device,
.split-copy,
.editorial-statement {
  min-width: 0;
}

.hero-copy {
  position: relative;
  padding: 34px 34px 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 18% 16%, rgba(129, 140, 248, 0.11), transparent 20%),
    radial-gradient(circle at 84% 80%, rgba(191, 219, 254, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 247, 251, 0.94));
  border: 1px solid rgba(99, 102, 241, 0.08);
  box-shadow:
    0 26px 60px rgba(24, 34, 52, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  overflow: hidden;
}

.hero-copy > * {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-kicker,
.guide-card span,
.screen-label,
.meta-item span,
.trust-item span {
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.section h2 {
  font-family: var(--font-display);
  letter-spacing: -0.06em;
}

.hero-copy h1 {
  font-size: clamp(3.8rem, 8vw, 7rem);
  line-height: 0.92;
  margin: 8px 0 12px;
  max-width: none;
  color: var(--text);
}

.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.045em;
  width: 100%;
  max-width: none;
}

.hero-title-top,
.hero-title-bottom {
  display: block;
  font-size: 0.62em;
  line-height: 0.88;
  color: #1d2733;
}

.hero-title-top {
  letter-spacing: -0.035em;
}

.hero-title-bottom {
  margin-top: 0.12em;
  letter-spacing: -0.045em;
  word-spacing: 0.02em;
}

.hero-code-inline {
  display: inline-block;
  width: auto;
  padding: 0;
  margin: 0.02em 0;
  background: linear-gradient(135deg, #4338ca 0%, #6366f1 45%, #8b5cf6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 10px 24px rgba(99, 102, 241, 0.18);
  box-shadow: none;
  font-size: 1.24em;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.hero-code-inline:hover {
  filter: brightness(1.05);
}

.hero-code-inline.copied-temp {
  filter: brightness(1.08);
  text-shadow:
    0 0 0 rgba(0, 0, 0, 0),
    0 0 22px rgba(99, 102, 241, 0.24);
}

.hero-text,
.section-lead {
  color: #485463;
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
  line-height: 1.56;
  max-width: 33rem;
}

.hero-copy .eyebrow {
  color: #768397;
  letter-spacing: 0.12em;
}

body.dark-mode .hero-text,
body.dark-mode .section-lead,
body.dark-mode .step-card p,
body.dark-mode .guide-card p,
body.dark-mode .glass-panel p,
body.dark-mode details p,
body.dark-mode .footer-text,
body.dark-mode .cta-panel p,
body.dark-mode .screen-row span,
body.dark-mode .screen-card p {
  color: #cad9d1;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hero-copy .btn-primary {
  background: linear-gradient(135deg, #17191f 0%, #232732 100%);
  color: #fff;
  box-shadow: 0 14px 28px rgba(19, 26, 39, 0.16);
}

.hero-copy .btn-primary:hover {
  background: linear-gradient(135deg, #101217 0%, #1d212b 100%);
}

.hero-copy .btn-secondary {
  background: rgba(255, 255, 255, 0.84);
  color: #1f2430;
  border-color: rgba(31, 36, 48, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
}

.btn:hover,
.theme-btn:hover,
.menu-toggle:hover,
.sticky-close:hover {
  transform: translateY(-1px);
}

.btn:focus-visible,
.theme-btn:focus-visible,
.menu-toggle:focus-visible,
.sticky-close:focus-visible,
.site-nav a:focus-visible,
.guide-card:focus-visible,
.copy-target:focus-visible,
.inline-copy:focus-visible {
  box-shadow: var(--focus-ring);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, #18b67a 55%, var(--accent-orange) 100%);
  color: #fff;
  box-shadow: 0 12px 30px rgba(0, 168, 107, 0.18);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-hover) 0%, #11ab71 55%, #6fcea1 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.56);
  color: var(--text);
  border-color: var(--line);
}

body.dark-mode .btn-secondary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015)),
    rgba(12, 19, 16, 0.84);
  border-color: rgba(127, 215, 175, 0.1);
  color: #eff8f2;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.copy-feedback {
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--success);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}

.copy-feedback.show {
  opacity: 1;
  transform: translateX(-50%) translateY(-2px);
}

.hero-meta {
  display: flex;
  gap: 28px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.hero-copy .hero-meta {
  gap: 14px;
}

.hero-copy .meta-item {
  min-width: 140px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(99, 102, 241, 0.08);
  backdrop-filter: blur(12px);
}

.hero-copy .meta-item span {
  color: #697689;
}

.hero-copy .meta-item strong {
  color: #16202b;
}

.meta-item strong,
.trust-item strong {
  display: block;
  margin-top: 6px;
  font-size: 1.02rem;
  font-weight: 600;
}

.meta-item {
  min-width: 152px;
}

.hero-device {
  position: relative;
  display: grid;
  gap: 12px;
  align-self: stretch;
  padding-block: 8px;
}

.device-frame,
.guide-card,
.step-card,
.glass-panel,
.cta-panel,
details,
.trust-grid,
.sticky-cta {
  backdrop-filter: blur(24px);
}

.device-frame {
  background:
    radial-gradient(circle at 16% 14%, rgba(129, 140, 248, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(243, 246, 252, 0.86));
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 14px;
  box-shadow: var(--shadow);
}

body.dark-mode .device-frame {
  background:
    radial-gradient(circle at 16% 14%, rgba(129, 140, 248, 0.1), transparent 20%),
    linear-gradient(180deg, rgba(17, 20, 25, 0.98), rgba(10, 12, 16, 0.95));
  border-color: rgba(129, 140, 248, 0.12);
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.device-top {
  display: flex;
  gap: 8px;
  padding: 6px 6px 12px;
}

.device-top span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--mac-red);
}

.device-top span:nth-child(2) {
  background: var(--mac-yellow);
}

.device-top span:nth-child(3) {
  background: var(--mac-green);
}

.device-screen {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 248, 250, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 24px;
  padding: 20px;
}

body.dark-mode .device-screen {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    linear-gradient(180deg, rgba(13, 16, 21, 0.94), rgba(9, 12, 16, 0.86));
  border-color: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.code-plate {
  margin: 12px 0 18px;
  padding: 16px 18px;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 244, 238, 0.92)),
    linear-gradient(135deg, rgba(0, 168, 107, 0.08), rgba(143, 216, 182, 0.08), rgba(88, 199, 146, 0.06));
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 2rem;
  letter-spacing: 0.18em;
  text-align: center;
  box-shadow: inset 0 0 0 1px var(--line), 0 12px 28px rgba(0, 168, 107, 0.08);
  color: var(--accent);
}

.copy-target {
  cursor: pointer;
  user-select: none;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.copy-target:hover {
  transform: translateY(-1px);
}

.copy-target.copied-temp,
.inline-copy.copied-temp,
.code-plate.copied-temp {
  box-shadow: 0 0 0 3px rgba(0, 168, 107, 0.14), 0 18px 42px rgba(0, 168, 107, 0.14);
  border-color: rgba(0, 168, 107, 0.28);
}

body.dark-mode .copy-target.copied-temp,
body.dark-mode .inline-copy.copied-temp,
body.dark-mode .code-plate.copied-temp {
  box-shadow:
    0 0 0 3px rgba(73, 209, 143, 0.2),
    0 24px 54px rgba(0, 0, 0, 0.34),
    0 0 44px rgba(73, 209, 143, 0.12);
  border-color: rgba(145, 223, 186, 0.24);
}

body.dark-mode .code-plate {
  background:
    radial-gradient(circle at 18% 14%, rgba(147, 197, 253, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.036), rgba(255, 255, 255, 0.012)),
    linear-gradient(180deg, rgba(14, 18, 26, 0.98), rgba(10, 12, 18, 0.97));
  color: #cfe1ff;
  box-shadow:
    inset 0 0 0 1px rgba(129, 140, 248, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 36px rgba(0, 0, 0, 0.26);
  text-shadow: 0 0 22px rgba(129, 140, 248, 0.18);
}

.screen-row,
.screen-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.66), rgba(255, 250, 245, 0.48)),
    linear-gradient(135deg, rgba(0, 168, 107, 0.05), rgba(143, 216, 182, 0.05), rgba(88, 199, 146, 0.04));
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 15px;
  margin-top: 10px;
}

body.dark-mode .screen-row,
body.dark-mode .screen-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.014)),
    rgba(10, 17, 14, 0.78);
  border-color: rgba(127, 215, 175, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.screen-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.screen-row span,
.screen-card p {
  color: var(--text-muted);
}

.trust-strip {
  padding: 8px 0 18px;
}

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

.trust-item {
  min-height: 112px;
  padding: 18px 18px 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.84), rgba(247, 244, 238, 0.72)),
    linear-gradient(135deg, rgba(0, 168, 107, 0.04), rgba(143, 216, 182, 0.04), rgba(88, 199, 146, 0.03));
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.trust-item:nth-child(1) strong { color: var(--accent); }
.trust-item:nth-child(2) strong { color: var(--accent-mint); }
.trust-item:nth-child(3) strong { color: var(--accent-violet); }
.trust-item:nth-child(4) strong { color: #2f8f64; }

.section {
  padding: 60px 0;
}

.intro {
  padding-top: 40px;
}

.hand-note {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 18px;
  color: #ef5b3f;
  font-family: var(--font-hand);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1;
  transform: rotate(-4deg);
}

.hand-note-intro {
  margin-left: 8px;
}

.hand-note-steps {
  margin-bottom: 12px;
}

.hand-arrow {
  display: block;
  width: 84px;
  height: 42px;
  border-bottom: 2px solid currentColor;
  border-right: 2px solid transparent;
  border-radius: 0 0 80px 80px;
  transform: rotate(10deg);
  margin-left: 36px;
  position: relative;
}

.hand-arrow::after {
  content: "";
  position: absolute;
  right: -3px;
  bottom: -4px;
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-25deg);
}

.hand-arrow-small {
  width: 66px;
  height: 28px;
  margin-left: 24px;
}

.section-soft {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.48), rgba(255, 255, 255, 0.22)),
    radial-gradient(circle at 15% 20%, rgba(0, 168, 107, 0.08), transparent 20%),
    radial-gradient(circle at 85% 20%, rgba(143, 216, 182, 0.08), transparent 18%);
}

.section-soft::before {
  left: -16px;
  top: 18px;
  width: 260px;
  height: 140px;
  background-image: repeating-linear-gradient(50deg, rgba(29, 43, 35, 0.12) 0 2px, transparent 2px 26px);
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.9), transparent 74%);
}

.section-soft::after {
  right: -10px;
  bottom: 30px;
  width: 220px;
  height: 120px;
  background-image: repeating-linear-gradient(76deg, rgba(29, 43, 35, 0.1) 0 2px, transparent 2px 24px);
  mask-image: linear-gradient(315deg, rgba(0, 0, 0, 0.9), transparent 74%);
}

body.dark-mode .section-soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.014)),
    radial-gradient(circle at 18% 18%, rgba(53, 197, 138, 0.08), transparent 20%),
    radial-gradient(circle at 82% 18%, rgba(127, 215, 175, 0.08), transparent 18%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.02);
}

body.dark-mode .section-soft::before {
  left: -14px;
  top: 22px;
  width: 250px;
  height: 126px;
  opacity: 0.18;
  background-image: repeating-linear-gradient(
    46deg,
    rgba(255, 255, 255, 0.06) 0 2px,
    transparent 2px 24px,
    transparent 24px 32px
  );
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.4) 58%, transparent 88%);
}

body.dark-mode .section-soft::after {
  right: -10px;
  bottom: 12px;
  width: 150px;
  height: 70px;
  opacity: 0.14;
  background-image: repeating-linear-gradient(
    79deg,
    rgba(255, 255, 255, 0.07) 0 2px,
    transparent 2px 20px,
    transparent 20px 28px
  );
  mask-image: linear-gradient(315deg, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.38) 56%, transparent 86%);
}

.section-heading,
.center {
  margin-bottom: 28px;
}

.section-heading.center {
  text-align: center;
}

.section h2 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1.04;
  margin-top: 8px;
}

.step-grid,
.guide-grid,
.article-grid,
.testimonial-grid {
  display: grid;
  gap: 18px;
}

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

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

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

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

.step-card,
.guide-card,
.glass-panel,
.cta-panel,
details,
.article-card,
.testimonial-card {
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(247, 244, 238, 0.68)),
    linear-gradient(135deg, rgba(0, 168, 107, 0.04), rgba(143, 216, 182, 0.04), rgba(88, 199, 146, 0.03));
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

body.dark-mode .step-card,
body.dark-mode .guide-card,
body.dark-mode .glass-panel,
body.dark-mode .cta-panel,
body.dark-mode details,
body.dark-mode .article-card,
body.dark-mode .testimonial-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    linear-gradient(90deg, rgba(255, 125, 115, 0.04), rgba(255, 211, 107, 0.04), rgba(68, 222, 97, 0.03)),
    linear-gradient(160deg, rgba(22, 33, 27, 0.9), rgba(11, 18, 15, 0.82)),
    linear-gradient(135deg, rgba(53, 197, 138, 0.06), rgba(127, 215, 175, 0.06), rgba(99, 216, 167, 0.05));
  border-color: rgba(127, 215, 175, 0.08);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

body.dark-mode .sticky-cta {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    linear-gradient(135deg, rgba(17, 27, 22, 0.96), rgba(10, 17, 14, 0.9)),
    linear-gradient(90deg, rgba(53, 197, 138, 0.05), rgba(127, 215, 175, 0.05), rgba(99, 216, 167, 0.04));
  border-color: rgba(127, 215, 175, 0.1);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body.dark-mode .trust-grid {
  position: relative;
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
}

body.dark-mode .trust-item {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.008)),
    linear-gradient(180deg, rgba(24, 26, 31, 0.985), rgba(18, 20, 25, 0.96));
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.step-card,
.guide-card,
.glass-panel,
.article-card,
.testimonial-card {
  padding: 24px;
}

.guide-card {
  width: 100%;
  text-align: left;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.guide-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(24, 34, 52, 0.1);
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 1.34rem;
  line-height: 1.38;
  letter-spacing: -0.03em;
  color: var(--text);
}

.testimonial-name {
  margin-top: 18px;
  font-weight: 700;
  color: var(--text);
}

.testimonial-role {
  margin-top: 4px;
  color: var(--text-muted);
}

.guide-modal-layer[hidden] {
  display: none;
}

.guide-modal-layer {
  position: fixed;
  inset: 0;
  z-index: 60;
}

.guide-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 16, 22, 0.56);
  backdrop-filter: blur(10px);
}

.guide-modal {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(760px, calc(100% - 28px));
  max-height: min(86vh, 920px);
  overflow: auto;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(247, 244, 238, 0.78)),
    linear-gradient(135deg, rgba(0, 168, 107, 0.04), rgba(143, 216, 182, 0.04), rgba(88, 199, 146, 0.03));
  box-shadow: 0 30px 80px rgba(10, 18, 26, 0.18);
}

.guide-modal[hidden] {
  display: none;
}

.guide-modal h3 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.05em;
  margin: 8px 0 14px;
  color: var(--text);
}

.guide-modal-lead {
  color: #485463;
  font-size: 1.08rem;
  line-height: 1.62;
  max-width: 46rem;
}

.guide-modal-points {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.guide-point {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
}

.guide-point strong {
  display: block;
  color: var(--text);
  margin-bottom: 6px;
}

.guide-point span {
  color: var(--text-muted);
  line-height: 1.56;
}

.guide-modal-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.guide-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.65);
  color: var(--text);
  cursor: pointer;
}

.guide-modal-close span {
  font-size: 1.4rem;
  line-height: 1;
}

.testimonial-marquee {
  margin-top: 22px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.testimonial-track {
  display: flex;
  gap: 14px;
  width: max-content;
  animation: testimonialSlide 24s linear infinite;
}

.mini-testimonial {
  width: min(320px, 72vw);
  min-height: 108px;
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(247, 244, 238, 0.68)),
    linear-gradient(135deg, rgba(0, 168, 107, 0.04), rgba(143, 216, 182, 0.04), rgba(88, 199, 146, 0.03));
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mini-testimonial strong {
  color: var(--text);
  font-size: 0.98rem;
}

.mini-testimonial span {
  color: var(--text-muted);
  line-height: 1.5;
}

.step-number {
  display: inline-block;
  color: var(--accent);
  font-size: 0.88rem;
  margin-bottom: 14px;
}

.step-card h3,
.guide-card h3,
.glass-panel h3,
.cta-panel h2,
.article-card h3 {
  font-family: var(--font-display);
  letter-spacing: -0.04em;
}

.step-card h3,
.guide-card h3,
.glass-panel h3,
.article-card h3 {
  font-size: 1.55rem;
  margin-bottom: 8px;
}

.step-card p,
.guide-card p,
.glass-panel p,
details p,
.footer-text,
.cta-panel p,
.article-card p {
  color: #4b5c52;
}

.article-card .section-kicker {
  margin-bottom: 12px;
}

.article-card {
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.article-card p + p {
  margin-top: 10px;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(24, 34, 52, 0.1);
}

.inline-copy {
  display: inline-flex;
  align-items: center;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  background: rgba(0, 168, 107, 0.1);
  color: var(--accent);
  font-weight: 700;
  cursor: pointer;
}

body.dark-mode .inline-copy {
  background: rgba(53, 197, 138, 0.12);
  color: #8be0b9;
}

.article-link {
  margin-top: auto;
  padding-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--text);
  position: relative;
  z-index: 1;
  cursor: pointer;
  border: 0;
  background: transparent;
  font: inherit;
  text-align: left;
}

.article-link::after {
  content: "->";
  color: var(--accent);
  transition: transform var(--transition);
}

.article-card:hover .article-link::after,
.article-link:hover::after {
  transform: translateX(3px);
}

.article-link:hover {
  color: var(--accent);
}

body.dark-mode .article-link {
  color: #edf2fb;
}

body.dark-mode .article-card:hover {
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

body.dark-mode .mini-testimonial {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.008)),
    linear-gradient(180deg, rgba(24, 26, 31, 0.985), rgba(18, 20, 25, 0.96));
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

body.dark-mode .mini-testimonial strong {
  color: #edf2fb;
}

body.dark-mode .mini-testimonial span {
  color: #c0c8d3;
}

body.dark-mode .guide-card:hover {
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

body.dark-mode .guide-modal {
  background:
    radial-gradient(circle at 82% 10%, rgba(143, 223, 255, 0.07), transparent 20%),
    radial-gradient(circle at 18% 16%, rgba(165, 146, 255, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.008)),
    linear-gradient(180deg, rgba(24, 26, 31, 0.985), rgba(18, 20, 25, 0.96));
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body.dark-mode .guide-modal h3,
body.dark-mode .guide-point strong {
  color: #edf2fb;
}

body.dark-mode .guide-modal-lead,
body.dark-mode .guide-point span {
  color: #c0c8d3;
}

body.dark-mode .guide-point,
body.dark-mode .guide-modal-close {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.008)),
    linear-gradient(180deg, rgba(20, 22, 27, 0.97), rgba(15, 17, 22, 0.92));
  border-color: rgba(255, 255, 255, 0.06);
  color: #edf2fb;
}

.article-more {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.article-more a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.article-more[hidden] {
  display: none;
}

.article-meta {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.article-toggle[aria-expanded="true"]::after {
  content: "↑";
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: start;
}

.split-layout-reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.editorial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: start;
}

.editorial-statement h2 {
  max-width: 8ch;
}

.showcase-stack {
  display: grid;
  gap: 16px;
  padding-top: 8px;
}

.showcase-card {
  padding: 24px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.82), rgba(247, 244, 238, 0.68)),
    linear-gradient(135deg, rgba(0, 168, 107, 0.05), rgba(143, 216, 182, 0.06), rgba(88, 199, 146, 0.04));
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.showcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0, 168, 107, 0.14);
}

.showcase-card span {
  color: var(--accent);
  font-size: 0.86rem;
}

.showcase-card h3 {
  margin: 10px 0 8px;
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: -0.04em;
}

.showcase-card p {
  color: #4b5c52;
}

.offset-card {
  margin-left: 44px;
}

.info-stack {
  display: grid;
  gap: 14px;
}

details {
  padding: 20px 22px;
  margin-top: 12px;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

details:hover {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(99, 102, 241, 0.12);
  box-shadow: 0 18px 40px rgba(43, 52, 69, 0.06);
}

details[open] {
  border-color: rgba(99, 102, 241, 0.16);
}

summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 1.08rem;
  font-weight: 600;
}

summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.52);
  color: var(--text-muted);
  font-size: 1.35rem;
  line-height: 1;
  transition: transform var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
}

details[open] summary::after {
  content: "−";
  transform: rotate(180deg);
  color: var(--accent);
  border-color: rgba(0, 168, 107, 0.2);
}

details:hover summary::after {
  background: rgba(255, 255, 255, 0.76);
  color: var(--text);
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  padding-top: 14px;
}

.faq-hint {
  margin-top: 10px;
  color: var(--text-muted);
  font-size: 0.92rem;
}

.cta-panel {
  padding: 34px;
  text-align: center;
}

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

.sticky-cta {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: min(420px, calc(100% - 28px));
  padding: 10px;
  display: none;
  align-items: center;
  gap: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(245, 243, 237, 0.76)),
    linear-gradient(90deg, rgba(0, 168, 107, 0.05), rgba(143, 216, 182, 0.05), rgba(88, 199, 146, 0.04));
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 30;
}

.sticky-cta.show {
  display: flex;
}

.sticky-cta .btn {
  flex: 1;
}

.sticky-close {
  width: 44px;
  height: 44px;
  cursor: pointer;
}

.site-footer {
  padding: 28px 0 44px;
}

.legal-strip {
  padding: 8px 0 0;
}

.legal-shell {
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.78), rgba(247, 244, 238, 0.64)),
    linear-gradient(135deg, rgba(0, 168, 107, 0.03), rgba(143, 216, 182, 0.03), rgba(88, 199, 146, 0.025));
  box-shadow: var(--shadow-soft);
}

.legal-shell p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.62;
}

.legal-shell strong {
  color: var(--text);
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.footer-text {
  margin-top: 10px;
  max-width: 420px;
}

.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: var(--text-muted);
}

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms cubic-bezier(0.16, 1, 0.3, 1), transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Dark mode refinement: cleaner, lower-noise, more premium */
body.dark-mode {
  --bg: #101114;
  --surface: rgba(24, 26, 31, 0.84);
  --surface-strong: #17191d;
  --surface-soft: #13151a;
  --text: #f4f6fb;
  --text-muted: #a2a9b6;
  --line: rgba(255, 255, 255, 0.07);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 14px 44px rgba(0, 0, 0, 0.24);
  --accent: #82b7ff;
  --accent-hover: #9ac5ff;
  --accent-orange: #b6d5ff;
  --accent-violet: #a592ff;
  --accent-sky: #8fdfff;
  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 16px;
}

body.dark-mode {
  background:
    radial-gradient(circle at 50% -3%, rgba(255, 255, 255, 0.1), transparent 18%),
    radial-gradient(circle at 18% 14%, rgba(143, 223, 255, 0.03), transparent 16%),
    radial-gradient(circle at 82% 12%, rgba(165, 146, 255, 0.03), transparent 14%),
    linear-gradient(180deg, #0a0b0e 0%, #101114 34%, #12141a 100%);
}

body.dark-mode::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012) 0 1px, transparent 1px 100%);
  background-size: 180px 180px, 100% 128px;
  opacity: 0.34;
}

body.dark-mode::after {
  background:
    radial-gradient(circle at 50% 5%, rgba(255, 255, 255, 0.06), transparent 16%),
    radial-gradient(circle at 76% 20%, rgba(130, 183, 255, 0.04), transparent 14%),
    radial-gradient(circle at 28% 28%, rgba(165, 146, 255, 0.03), transparent 18%);
  filter: blur(22px);
  opacity: 0.66;
}

body.dark-mode .hero {
  background:
    radial-gradient(circle at 50% 6%, rgba(255, 255, 255, 0.09), transparent 20%),
    radial-gradient(circle at 74% 22%, rgba(130, 183, 255, 0.05), transparent 16%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.016), transparent 14%);
}

body.dark-mode .legal-shell {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    linear-gradient(180deg, rgba(24, 26, 31, 0.985), rgba(18, 20, 25, 0.96));
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

body.dark-mode .legal-shell p {
  color: #b4bcc7;
}

body.dark-mode .legal-shell strong {
  color: #f4f6fb;
}

body.dark-mode .site-header {
  padding-top: 12px;
}

body.dark-mode .hero::before,
body.dark-mode .hero::after,
body.dark-mode .section-soft::before,
body.dark-mode .section-soft::after,
body.dark-mode .hero-shell::after {
  opacity: 0.12;
}

body.dark-mode .hero-shell::before {
  right: 6%;
  top: -2%;
  width: 520px;
  height: 520px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.065) 16%, rgba(130, 183, 255, 0.03) 32%, transparent 66%);
  filter: blur(34px);
  opacity: 0.72;
}

body.dark-mode .nav-shell,
body.dark-mode .device-frame,
body.dark-mode .step-card,
body.dark-mode .guide-card,
body.dark-mode .glass-panel,
body.dark-mode .cta-panel,
body.dark-mode details,
body.dark-mode .article-card,
body.dark-mode .trust-grid,
body.dark-mode .sticky-cta,
body.dark-mode .showcase-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.008)),
    linear-gradient(180deg, rgba(24, 26, 31, 0.985), rgba(18, 20, 25, 0.96));
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

body.dark-mode .nav-shell {
  padding: 10px 16px;
  border-radius: 20px;
  gap: 16px;
}

body.dark-mode .lang-toggle {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    linear-gradient(135deg, rgba(22, 33, 27, 0.88), rgba(12, 19, 16, 0.82));
  border-color: rgba(127, 215, 175, 0.1);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

body.dark-mode .lang-option {
  color: #b8c4d8;
}

body.dark-mode .lang-option:hover {
  color: #edf2fb;
}

body.dark-mode .lang-option.active {
  background: linear-gradient(135deg, #eef4ff 0%, #d9e8ff 100%);
  color: #131722;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.22);
}

body.dark-mode .site-nav a {
  color: #c5ccc8;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}

body.dark-mode .site-nav a:hover {
  color: #f6f8f7;
}

body.dark-mode .device-screen,
body.dark-mode .screen-row,
body.dark-mode .screen-card,
body.dark-mode .btn-secondary,
body.dark-mode .theme-btn,
body.dark-mode .menu-toggle,
body.dark-mode .sticky-close {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.008)),
    linear-gradient(180deg, rgba(20, 22, 27, 0.97), rgba(15, 17, 22, 0.92));
  border-color: rgba(255, 255, 255, 0.055);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

body.dark-mode .device-frame {
  padding: 16px;
  border-radius: 28px;
}

body.dark-mode .device-screen {
  padding: 22px;
  border-radius: 24px;
}

body.dark-mode .code-plate {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.09), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.034), rgba(255, 255, 255, 0.01)),
    linear-gradient(180deg, rgba(19, 22, 29, 0.995), rgba(13, 15, 21, 0.985));
  color: #deebff;
  border: 1px solid rgba(255, 255, 255, 0.075);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.038),
    0 20px 40px rgba(0, 0, 0, 0.28);
  text-shadow: 0 0 16px rgba(130, 183, 255, 0.16);
  border-radius: 20px;
  letter-spacing: 0.14em;
}

body.dark-mode .hero-device {
  gap: 14px;
}

body.dark-mode .screen-row strong,
body.dark-mode .meta-item strong,
body.dark-mode .trust-item strong {
  color: #f4f7fb;
}

body.dark-mode .hero-text,
body.dark-mode .section-lead,
body.dark-mode .step-card p,
body.dark-mode .guide-card p,
body.dark-mode .glass-panel p,
body.dark-mode details p,
body.dark-mode .footer-text,
body.dark-mode .cta-panel p,
body.dark-mode .screen-row span,
body.dark-mode .screen-card p,
body.dark-mode .showcase-card p {
  color: #c0c8d3;
}

body.dark-mode .hero-text,
body.dark-mode .section-lead {
  max-width: 34rem;
}

body.dark-mode .hero-copy {
  background:
    radial-gradient(circle at 18% 18%, rgba(129, 140, 248, 0.12), transparent 20%),
    radial-gradient(circle at 82% 80%, rgba(143, 223, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(24, 27, 34, 0.98), rgba(17, 19, 25, 0.97));
  border-color: rgba(129, 140, 248, 0.14);
  box-shadow:
    0 28px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

body.dark-mode .hero-copy h1 {
  max-width: none;
  font-size: clamp(4.2rem, 8.5vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
}

body.dark-mode .hero-title-top,
body.dark-mode .hero-title-bottom {
  color: #c6d2e4;
}

body.dark-mode .hero-code-inline {
  background: linear-gradient(135deg, #8fdfff 0%, #82b7ff 42%, #a592ff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 12px 30px rgba(130, 183, 255, 0.24),
    0 0 42px rgba(165, 146, 255, 0.14);
}

body.dark-mode .hero-copy .eyebrow {
  color: rgba(238, 243, 252, 0.68);
}

body.dark-mode .hero-text {
  color: #d2dae6;
}

body.dark-mode .hero-copy .meta-item {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .hero-copy .meta-item span {
  color: #8d97a4;
}

body.dark-mode .hero-copy .meta-item strong {
  color: #f4f6f8;
}

body.dark-mode .hero-copy .btn-primary {
  background: linear-gradient(135deg, #edf4ff 0%, #d8e7ff 100%);
  color: #11131a;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.24);
}

body.dark-mode .hero-copy .btn-primary:hover {
  background: linear-gradient(135deg, #ffffff 0%, #e4eeff 100%);
}

body.dark-mode .hero-copy .btn-secondary {
  background: rgba(255, 255, 255, 0.055);
  color: #f2f5fb;
  border-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .eyebrow,
body.dark-mode .section-kicker,
body.dark-mode .guide-card span,
body.dark-mode .screen-label,
body.dark-mode .meta-item span,
body.dark-mode .trust-item span {
  color: #98a1ad;
  letter-spacing: 0.12em;
}

body.dark-mode .hero-meta {
  gap: 18px;
}

body.dark-mode .meta-item {
  min-width: 132px;
}

body.dark-mode .meta-item strong,
body.dark-mode .trust-item strong {
  font-weight: 500;
}

body.dark-mode .hero-meta {
  padding-top: 4px;
}

body.dark-mode .step-card,
body.dark-mode .guide-card,
body.dark-mode .glass-panel,
body.dark-mode .article-card,
body.dark-mode .showcase-card {
  padding: 24px;
  border-radius: 24px;
}

body.dark-mode .step-card h3,
body.dark-mode .guide-card h3,
body.dark-mode .glass-panel h3,
body.dark-mode .article-card h3,
body.dark-mode .showcase-card h3 {
  font-size: 1.35rem;
  line-height: 1.15;
}

body.dark-mode .section h2 {
  letter-spacing: -0.07em;
}

body.dark-mode .theme-btn,
body.dark-mode .menu-toggle,
body.dark-mode .sticky-close,
body.dark-mode .btn-secondary {
  color: #edf2fb;
}

body.dark-mode .btn-primary {
  background: linear-gradient(135deg, #9bc5ff 0%, #82b7ff 45%, #a592ff 100%);
  color: #11131a;
  box-shadow:
    0 16px 36px rgba(130, 183, 255, 0.22),
    0 0 0 1px rgba(155, 197, 255, 0.12) inset;
}

body.dark-mode .btn-primary:hover {
  background: linear-gradient(135deg, #afceff 0%, #95c0ff 45%, #b09fff 100%);
}

body.dark-mode .trust-grid {
  backdrop-filter: blur(18px);
}

body.dark-mode .trust-item {
  padding: 24px 22px;
}

body.dark-mode .hero-copy h1 {
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
}

body.dark-mode .copy-target.copied-temp,
body.dark-mode .inline-copy.copied-temp,
body.dark-mode .code-plate.copied-temp {
  box-shadow:
    0 0 0 3px rgba(96, 214, 158, 0.14),
    0 22px 48px rgba(0, 0, 0, 0.34);
  border-color: rgba(96, 214, 158, 0.2);
}

body.dark-mode .faq-hint {
  color: #9aa49f;
}

body.dark-mode details:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)),
    linear-gradient(180deg, rgba(12, 14, 18, 0.98), rgba(8, 10, 12, 0.95));
  border-color: rgba(129, 140, 248, 0.14);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body.dark-mode details[open] {
  border-color: rgba(129, 140, 248, 0.18);
}

body.dark-mode summary::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.008)),
    linear-gradient(180deg, rgba(9, 10, 10, 0.97), rgba(7, 8, 8, 0.92));
  border-color: rgba(255, 255, 255, 0.065);
  color: #c9d1cc;
}

body.dark-mode details:hover summary::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.014)),
    linear-gradient(180deg, rgba(10, 12, 11, 0.98), rgba(7, 8, 8, 0.94));
  color: #f3f6f4;
}

body.dark-mode details[open] summary::after {
  border-color: rgba(114, 223, 170, 0.24);
  color: #98f0c4;
}

.float-card {
  animation: floatCard 14s ease-in-out infinite;
  will-change: transform;
}

@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes testimonialSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 7px));
  }
}

@media (max-width: 980px) {
  .hero-shell,
  .editorial-grid,
  .split-layout,
  .step-grid,
  .guide-grid,
  .article-grid,
  .testimonial-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    min-height: auto;
    gap: 28px;
  }

  .hero {
    padding: 32px 0 14px;
  }

  .hero-device {
    max-width: 560px;
  }

  .offset-card {
    margin-left: 0;
  }

  .trust-item {
    min-height: auto;
  }
}

@media (max-width: 760px) {
  .container,
  .narrow {
    width: min(100% - 28px, var(--container));
  }

  .site-header {
    padding-top: 12px;
  }

  .nav-shell {
    border-radius: 28px;
    flex-wrap: wrap;
    padding: 12px 14px;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-actions {
    order: 2;
  }

  .lang-toggle {
    order: 1;
  }

  .site-nav {
    display: none;
    width: 100%;
    order: 3;
    padding-top: 8px;
  }

  .site-nav.open {
    display: block;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .hero {
    padding: 20px 0 8px;
  }

  .hero::before,
  .hero::after,
  .section-soft::before,
  .section-soft::after {
    opacity: 0.14;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 13vw, 3.2rem);
    margin: 6px 0 10px;
    max-width: none;
  }

  .hero-title {
    gap: 0.03em;
  }

  .hero-copy {
    padding: 20px 18px 18px;
    border-radius: 24px;
  }

  .hero-text,
  .section-lead {
    font-size: 0.96rem;
    line-height: 1.52;
  }

  .hero-actions,
  .hero-meta,
  .footer-shell,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions {
    width: 100%;
    margin-top: 18px;
  }

  .hero-meta {
    display: none;
  }

  .hero-device {
    width: 100%;
    margin-top: 0;
  }

  .device-frame {
    border-radius: 24px;
    padding: 11px;
  }

  .device-screen {
    border-radius: 20px;
    padding: 16px;
  }

  .code-plate {
    font-size: 1.32rem;
    letter-spacing: 0.1em;
    padding: 14px;
    margin: 10px 0 14px;
  }

  .screen-row,
  .screen-card {
    border-radius: 16px;
    padding: 12px 13px;
  }

  .btn {
    width: 100%;
    min-height: 50px;
  }

  .hand-note {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .hand-arrow {
    width: 66px;
    height: 30px;
    margin-left: 18px;
  }

  .showcase-card {
    padding: 20px;
  }

  .showcase-card h3,
  .step-card h3,
  .guide-card h3,
  .glass-panel h3,
  .article-card h3 {
    font-size: 1.3rem;
  }

  .trust-strip {
    padding-top: 2px;
  }

  .trust-item {
    padding: 18px 16px;
    border-radius: 20px;
  }

  .section {
    padding: 34px 0;
  }

  .legal-shell {
    padding: 16px 16px;
    border-radius: 18px;
  }

  .legal-shell p {
    font-size: 0.88rem;
    line-height: 1.58;
  }

  .section-heading,
  .center {
    margin-bottom: 20px;
  }

  .section h2 {
    font-size: clamp(2.1rem, 12vw, 3rem);
  }

  .cta-panel {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .guide-modal {
    width: calc(100% - 20px);
    padding: 20px 18px;
    border-radius: 24px;
  }

  .guide-modal-actions {
    flex-direction: column;
  }

  details {
    padding: 16px;
    border-radius: 22px;
  }

  summary {
    font-size: 1rem;
  }

  .sticky-cta {
    border-radius: 24px;
    width: calc(100% - 20px);
    bottom: 12px;
    padding: 8px;
  }

  .sticky-close {
    flex: 0 0 44px;
  }
}

@media (max-width: 480px) {
  .hero-shell {
    gap: 18px;
  }

  .hero-copy {
    padding: 18px 16px 16px;
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 14vw, 2.8rem);
    max-width: none;
  }

  .hero-title-top,
  .hero-title-bottom {
    font-size: 0.68em;
  }

  .hero-code-inline {
    font-size: 1.18em;
  }

  .hero-text {
    font-size: 0.93rem;
  }

  .device-top {
    padding: 4px 4px 10px;
  }

  .device-top span {
    width: 7px;
    height: 7px;
  }

  .trust-grid {
    border-radius: 24px;
  }

  .step-card,
  .guide-card,
  .glass-panel,
  .article-card,
  .testimonial-card,
  .showcase-card {
    padding: 18px;
  }

  summary::after {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }

  body.dark-mode::before {
    background-size: 180px 180px, 100% 120px;
    opacity: 0.36;
  }

  body.dark-mode::after {
    opacity: 0.68;
  }

  body.dark-mode .hero-shell::before,
  body.dark-mode .hero-shell::after {
    display: none;
  }

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

  .site-header {
    padding: 10px 0;
  }

  .hero-backdrop {
    inset: 6% 4% auto 4%;
    height: 360px;
    filter: blur(14px);
  }

  .hero::before,
  .hero::after,
  .section-soft::before,
  .section-soft::after {
    display: none;
  }

  .hero-shell {
    gap: 26px;
  }

  .hero-copy h1 {
    font-size: clamp(2.15rem, 13vw, 2.9rem);
  }

  .hero-copy {
    padding: 20px 16px 18px;
  }

  .hero-title-top,
  .hero-title-bottom {
    font-size: 0.92em;
  }

  .logo-text {
    font-size: 0.95rem;
  }

  .hand-note {
    font-size: 1.15rem;
    margin-left: 0;
  }

  .eyebrow,
  .section-kicker,
  .guide-card span,
  .screen-label,
  .meta-item span,
  .trust-item span {
    font-size: 0.72rem;
  }

  .step-card,
  .guide-card,
  .glass-panel,
  .showcase-card,
  .article-card {
    padding: 20px;
    border-radius: 24px;
  }

  .trust-grid {
    border-radius: 24px;
  }

  .float-card {
    animation-duration: 16s;
  }
}

@media (hover: none) and (pointer: coarse) {
  .float-card {
    animation-duration: 18s;
    animation-iteration-count: infinite;
  }

  .showcase-card:hover,
  .btn:hover,
  .theme-btn:hover,
  .menu-toggle:hover,
  .sticky-close:hover {
    transform: none;
  }
}
