/* =========================================================
   MOKU — Main Stylesheet
   Design System: Bricolage Grotesque + Public Sans
   Dark mode by default, orange (#F5A000) accent
   ========================================================= */

/* ===== GOOGLE FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=Public+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --bg: #10100F;
  --surface-1: #141414;
  --surface-2: #1C1C1C;
  --surface-3: #262626;
  --orange: #F5A000;
  --orange-mid: #F0960A;
  --orange-dim: rgba(245, 160, 0, 0.12);
  --orange-glow: rgba(245, 160, 0, 0.06);
  --cream: #F8F3E8;
  --blue: #7B9EC4;
  --blue-light: #B5C9DC;
  --app-bg: #10100F;
  --app-ring-dark: #0C0C0C;
  --app-orange: #F59D21;
  --app-blue: #97ACC8;
  --text: #E8E3DA;
  --text-2: rgba(232, 227, 218, 0.55);
  --text-3: rgba(232, 227, 218, 0.3);
  --border: rgba(255, 255, 255, 0.07);
  --border-2: rgba(255, 255, 255, 0.12);
  --gradient: linear-gradient(135deg, #F5A000, #B5C9DC);

  --font-heading: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Public Sans', sans-serif;

  --container: 1160px;
  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 22px;
  --radius-xl: 32px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ===== RESET ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

body {
  font-family: var(--font-body);
  background: var(--app-bg);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img,
video {
  max-width: 100%;
  display: block;
}

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

ul {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.1;
}

/* ===== LAYOUT ===== */
.container {
  width: min(var(--container), 100% - 48px);
  margin-inline: auto;
}

.section {
  padding-block: 112px;
}

.section--sm {
  padding-block: 72px;
}

.section--lg {
  padding-block: 140px;
}

/* ===== TYPOGRAPHY ===== */
.label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #F59D21, #97ACC8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.headline {
  font-family: var(--font-heading);
}

.h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

.h4 {
  font-size: 1.1rem;
  font-weight: 600;
}

.lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--text-2);
  line-height: 1.7;
  max-width: 60ch;
}

.text-orange {
  color: var(--orange);
}

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

.text-balance {
  text-wrap: balance;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.2s var(--ease-out);
  white-space: nowrap;
}

.btn-primary {
  background: var(--orange);
  color: #000;
}

.btn-primary:hover {
  background: #FFB020;
  box-shadow: 0 0 24px rgba(245, 160, 0, 0.45);
}

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

.btn-secondary:hover {
  background: var(--surface-3);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.btn-ghost {
  color: var(--text-2);
  padding: 13px 16px;
}

.btn-ghost:hover {
  color: var(--text);
}

/* App Store button */
.btn-appstore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: var(--surface-2);
  border-radius: 14px;
  transition: all 0.2s var(--ease-out);
}

.btn-appstore:hover {
  background: var(--surface-3);
  box-shadow: 0 0 32px rgba(0, 0, 0, 0.5);
}

.btn-appstore .apple-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.btn-appstore .btn-appstore-text {
  text-align: left;
}

.btn-appstore .btn-appstore-text small {
  display: block;
  font-size: 10px;
  color: var(--text-2);
  font-weight: 400;
  letter-spacing: 0.03em;
}

.btn-appstore .btn-appstore-text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--text);
}

/* Download CTA (orange, large) */
.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  background: var(--orange);
  color: #000;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.25s var(--ease-out);
}

.btn-download:hover {
  background: #FFB020;
  box-shadow: 0 0 12px rgba(245, 160, 0, 0.5);
}

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

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-block: 16px;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  display: block;
  width: auto;
  height: 34px;
}

.logo:hover {
  opacity: 0.85;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.header-nav a {
  font-size: 0.95rem;
  color: rgba(255, 250, 238, 0.86);
  padding: 10px 14px;
  border-radius: 100px;
  transition: all 0.15s;
  font-weight: 500;
}

.header-nav a:hover {
  color: var(--text);
  background: var(--surface-2);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-download {
  padding: 10px 14px;
  background: #fff7ea;
  color: #171512;
  box-shadow: none;
}

.header-download:hover {
  background: #fffaf0;
  color: #171512;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

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

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

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

/* Mobile nav */
.mobile-nav {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0D0D0C;
  z-index: 99;
  pointer-events: none;
  transform: translateY(-100%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.mobile-nav::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 70%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(245, 157, 33, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.mobile-nav::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -10%;
  width: 50%;
  height: 50%;
  background: radial-gradient(ellipse, rgba(151, 172, 200, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.mobile-nav.open {
  transform: translateY(0);
  pointer-events: all;
}

.mobile-nav-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 60px 0px 48px;
  position: relative;
  z-index: 1;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 9vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-2);
  padding: 10px 0;
  line-height: 1;
  transition: color 0.2s;
  opacity: 0;
  transform: translateY(24px);
}

.mobile-nav.open .mobile-nav-link {
  animation: nav-link-in 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.mobile-nav.open .mobile-nav-link:nth-child(1) {
  animation-delay: 0.08s;
}

.mobile-nav.open .mobile-nav-link:nth-child(2) {
  animation-delay: 0.14s;
}

.mobile-nav.open .mobile-nav-link:nth-child(3) {
  animation-delay: 0.20s;
}

.mobile-nav.open .mobile-nav-link:nth-child(4) {
  animation-delay: 0.26s;
}

.mobile-nav-link:hover {
  color: var(--text);
}

@keyframes nav-link-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav-footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  transform: translateY(16px);
}

.mobile-nav.open .mobile-nav-footer {
  animation: nav-link-in 0.55s cubic-bezier(0.16, 1, 0.3, 1) 0.34s forwards;
}

.mobile-nav-cta {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
}

.mobile-nav-trust {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-3);
  letter-spacing: -0.01em;
}

/* ===== HERO ===== */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding-top: 118px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  background: #10100f;
}

.hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-stack> :not(.hero-visual) {
  position: relative;
  z-index: 6;
}

/* Background gradient glow */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(56% 44% at 10% 17%, rgba(245, 157, 33, 0.13) 0%, rgba(245, 157, 33, 0) 60%),
    radial-gradient(54% 34% at 77% -2%, rgba(245, 157, 33, 0.12) 0%, rgba(245, 157, 33, 0) 62%),
    radial-gradient(20% 18% at 98% 58%, rgba(151, 172, 200, 0.08) 0%, rgba(151, 172, 200, 0) 72%);
  pointer-events: none;
  opacity: 0.78;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 28px;
  padding: 4px 14px;
  background: transparent;
  border: 1.5px solid var(--app-orange);
  border-radius: 100px;
  font-size: 13px;
  line-height: 1;
  color: #fff7ea;
  margin-bottom: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.hero-badge .badge-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--app-orange);
  flex-shrink: 0;
  animation: dot-blink 1.6s ease-in-out infinite;
}

@keyframes dot-blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.2;
  }
}

.hero-title {
  width: min(633px, 100%);
  font-size: clamp(3.3rem, 4.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
  text-wrap: balance;
}

.hero-title em {
  font-style: normal;
  background: linear-gradient(90deg, #F59D21 0%, #97ACC8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  width: min(633px, 100%);
  font-size: 16px;
  color: #d6d0c2;
  line-height: 1.34;
  letter-spacing: -0.03em;
  margin-bottom: 34px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 46px;
}

.hero .btn-download {
  justify-content: center;
  min-width: 274px;
  padding: 13px 28px;
  background: var(--app-orange);
  color: #fff7ea;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero .btn-download svg {
  width: 21px;
  height: 21px;
}

.hero-trust {
  font-size: 16px;
  color: #d6d0c2;
  letter-spacing: -0.03em;
}

/* ===== HERO VISUAL (Ring + Phone) ===== */
.hero-visual {
  --hero-visual-width: min(100vw, 1512px);
  --hero-visual-height: 620px;
  --hero-ring-width: 650px;
  --hero-ring-height: 650px;
  --hero-ring-hole: 74px;
  --hero-device-width: 580px;
  --hero-device-top: 64px;
  --hero-mask-width: min(100vw, 1512px);
  --hero-mask-top: 108px;
  --hero-mask-height: 620px;
  position: relative;
  width: var(--hero-visual-width);
  max-width: 1512px;
  height: var(--hero-visual-height);
  margin-inline: calc(50% - 50vw);
  flex-shrink: 0;
  overflow: visible;
  z-index: 1;
}

.ring-assembly {
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--hero-ring-width);
  height: var(--hero-ring-height);
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
}

.outer-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 35px rgba(242, 157, 37, 0.76);
}

.outer-ring::before {
  content: '';
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background: linear-gradient(180deg, #F59D21 0%, #97ACC8 100%);
  animation: ring-spin 7s linear infinite;
  transform-origin: center;
  will-change: transform;
}

.inner-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - var(--hero-ring-hole));
  height: calc(100% - var(--hero-ring-hole));
  transform: translate(-50%, -50%);
  border-radius: 999px;
  z-index: 2;
  background: #10100f;
}

.hero-device {
  position: absolute;
  top: var(--hero-device-top);
  left: 50%;
  width: var(--hero-device-width);
  transform: translateX(-50%);
  z-index: 4;
}

.hero-device-image {
  display: block;
  width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 22px 44px rgba(0, 0, 0, 0.22));
}

.hero-visual-mask {
  position: absolute;
  top: var(--hero-mask-top);
  left: 50%;
  width: var(--hero-mask-width);
  height: var(--hero-mask-height);
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(16, 16, 15, 0) 0%, #10100f 68%);
  pointer-events: none;
  z-index: 5;
}

@keyframes ring-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {

  .outer-ring {
    box-shadow: 0 0 35px rgba(242, 157, 37, 0.76);
  }

  .outer-ring::before {
    animation: none;
  }
}

/* Phone frame (CSS) */
.phone-frame {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 420px;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.phone-frame-inner {
  width: 100%;
  height: 100%;
  background: #111;
  border-radius: 36px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.8),
    0 40px 80px rgba(0, 0, 0, 0.8),
    0 0 60px rgba(245, 160, 0, 0.08);
  position: relative;
}

/* Dynamic island */
.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 22px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
}

/* Screen content */
.phone-screen {
  position: absolute;
  inset: 0;
  background: #0D0D0D;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 48px;
}

.phone-logo {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.03em;
  margin-bottom: 6px;
  align-self: flex-start;
  padding-left: 20px;
}

.phone-status {
  display: flex;
  align-items: center;
  gap: 4px;
  align-self: flex-end;
  padding-right: 16px;
  margin-top: -18px;
}

.phone-status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-3);
}

.phone-status-text {
  font-size: 7px;
  color: var(--text-3);
}

/* App ring inside phone */
.phone-ring-container {
  position: relative;
  width: 130px;
  height: 130px;
  margin-top: 12px;
  border-radius: 50%;
  isolation: isolate;
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.28),
    0 0 20px rgba(245, 157, 33, 0.2);
}

.phone-ring-container::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
      var(--app-orange) 0deg,
      var(--app-blue) 180deg,
      var(--app-orange) 360deg);
  -webkit-mask: radial-gradient(transparent calc(50% - 13px),
      black calc(50% - 13px) calc(50% + 13px),
      transparent calc(50% + 13px));
  mask: radial-gradient(transparent calc(50% - 13px),
      black calc(50% - 13px) calc(50% + 13px),
      transparent calc(50% + 13px));
  filter: blur(16px);
  opacity: 0.72;
  animation: ring-spin 6s linear infinite;
  z-index: 0;
}

.phone-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.phone-ring-track {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at center,
      var(--app-bg) 0%,
      var(--app-bg) 58%,
      var(--app-ring-dark) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    inset 0 -14px 32px rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.phone-ring-fill {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
      var(--app-orange) 0deg,
      var(--app-blue) 180deg,
      var(--app-orange) 360deg);
  -webkit-mask: radial-gradient(transparent calc(50% - 9px),
      black calc(50% - 9px) calc(50% + 9px),
      transparent calc(50% + 9px));
  mask: radial-gradient(transparent calc(50% - 9px),
      black calc(50% - 9px) calc(50% + 9px),
      transparent calc(50% + 9px));
  animation: ring-spin 6s linear infinite;
  will-change: transform;
  z-index: 2;
}

.phone-ring-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--text);
  font-weight: 700;
  letter-spacing: -0.08em;
  text-align: center;
  padding: 16px;
  line-height: 1.08;
  z-index: 3;
}

.phone-stats {
  display: flex;
  gap: 20px;
  margin-top: 20px;
  padding-inline: 20px;
  width: 100%;
}

.phone-stat-item {
  flex: 1;
}

.phone-stat-label {
  font-size: 7px;
  color: var(--text-3);
  margin-bottom: 2px;
}

.phone-stat-value {
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--orange);
}

.phone-start-btn {
  margin-top: 16px;
  padding: 7px 18px;
  background: transparent;
  border: 1px solid var(--border-2);
  border-radius: 100px;
  font-size: 8px;
  color: var(--text-2);
}

.phone-bottom-nav {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-evenly;
  padding-inline: 20px;
}

.phone-nav-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: var(--border);
}

.phone-nav-icon.active {
  background: var(--orange-dim);
}

/* ===== STATS STRIP ===== */
.stats-strip {
  padding-block: 48px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0;
  background: transparent;
}

.stat-item {
  background: var(--bg);
  padding: 32px 24px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, #F59D21, #97ACC8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-2);
  font-weight: 400;
}

/* ===== PROBLEM SECTION ===== */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.problem-content .h2 {
  margin-bottom: 20px;
}

.problem-content p {
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 14px;
}

.problem-content p:last-child {
  color: var(--text);
  font-weight: 500;
}

.problem-card {
  background: var(--surface-1);
  border-radius: var(--radius-l);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange-dim), transparent);
}

.problem-stat {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #F59D21, #97ACC8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
}

.problem-stat-label {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-header {
  text-align: center;
  margin-bottom: 72px;
}

.how-header .h2 {
  margin-block: 12px 16px;
}

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

.step-card {
  background: var(--surface-1);
  border-radius: var(--radius-l);
  padding: 36px 28px;
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.35);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  background: linear-gradient(90deg, #F59D21, #97ACC8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.step-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(245, 157, 33, 0.18), rgba(151, 172, 200, 0.1));
  border-radius: var(--radius-s);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.step-icon svg {
  color: var(--orange);
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.75;
}

/* ===== FEATURES ===== */
.features-header {
  text-align: center;
  margin-bottom: 64px;
}

.features-header .h2 {
  margin-block: 12px 16px;
}

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

.feature-card {
  background: var(--surface-1);
  border-radius: var(--radius-l);
  padding: 28px 24px;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 0% 0%, var(--orange-glow), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(245, 157, 33, 0.18), rgba(151, 172, 200, 0.1));
  border-radius: var(--radius-s);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--orange);
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* Featured card (spans 2 cols) */
.feature-card--featured {
  grid-column: span 2;
  background: var(--surface-2);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  padding: 40px;
}

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

.feature-card--featured .feature-content h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.feature-card--featured .feature-content p {
  font-size: 0.95rem;
  line-height: 1.75;
}

.feature-card--featured .feature-visual {
  background: var(--surface-3);
  border-radius: var(--radius-m);
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.feature-card--featured .feature-visual::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle at center, var(--orange-dim), transparent 70%);
}

/* ===== COMPARISON TABLE ===== */
.comparison-wrapper {
  max-width: 800px;
  margin-inline: auto;
}

.comparison-header {
  text-align: center;
  margin-bottom: 56px;
}

.comparison-header .h2 {
  margin-block: 12px 16px;
}

table.comparison {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--surface-1);
  border-radius: var(--radius-l);
  overflow: hidden;
}

.comparison thead th {
  padding: 20px 24px;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  background: var(--surface-2);
  color: var(--text-2);
}

.comparison thead th:first-child {
  color: var(--text);
  font-size: 0.8rem;
  font-weight: 500;
}

.comparison thead th.col-moku {
  color: var(--orange);
  background: rgba(245, 160, 0, 0.06);
}

.comparison tbody tr:not(:last-child) td {
  border-bottom: none;
}

.comparison tbody td {
  padding: 14px 24px;
  font-size: 0.9rem;
  color: var(--text-2);
  vertical-align: middle;
}

.comparison tbody td:first-child {
  color: var(--text);
  font-weight: 500;
  font-size: 0.875rem;
}

.comparison tbody td.col-moku {
  background: rgba(245, 160, 0, 0.04);
}

.check {
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 700;
}

.cross {
  color: var(--text-3);
  font-size: 1rem;
}

.partial {
  color: var(--text-3);
  font-size: 0.8rem;
  font-style: italic;
}

.comparison-note {
  margin-top: 24px;
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.7;
  text-align: center;
}

/* ===== PRICING ===== */
.pricing-header {
  text-align: center;
  margin-bottom: 56px;
}

.pricing-header .h2 {
  margin-block: 12px 16px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin-inline: auto;
}

.pricing-card {
  background: var(--surface-1);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
}

.pricing-card--pro {
  background: var(--surface-2);
  box-shadow: 0 0 60px rgba(245, 160, 0, 0.12);
}

.pricing-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--orange);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 100px;
  margin-bottom: 20px;
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}

.pricing-price-note {
  font-size: 0.8rem;
  color: var(--text-2);
  margin-bottom: 28px;
  font-style: italic;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-2);
}

.pricing-feature-check {
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* ===== TESTIMONIALS ===== */
.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-header .h2 {
  margin-block: 12px;
}

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

.testimonial-card {
  background: var(--surface-1);
  border-radius: var(--radius-l);
  padding: 28px;
  transition: box-shadow 0.3s;
}

.testimonial-card:hover {
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.3);
}

.testimonial-stars {
  font-size: 0.85rem;
  margin-bottom: 14px;
  background: linear-gradient(90deg, #F59D21, #97ACC8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 18px;
  font-style: italic;
}

.testimonial-author {
  font-size: 0.8rem;
  color: var(--text-2);
}

/* ===== FAQ ===== */
.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

.faq-header .h2 {
  margin-block: 12px;
}

.faq-list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border-radius: var(--radius-l);
  overflow: hidden;
}

.faq-item {
  background: var(--surface-1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--surface-2);
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--surface-3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out), background 0.2s;
  color: var(--text-2);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background: var(--orange-dim);
  color: var(--orange);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-answer-inner {
  padding: 0 28px 24px;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.8;
}

/* ===== FINAL CTA ===== */
.final-cta {
  text-align: center;
  padding-block: 140px;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 400px;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(245, 160, 0, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta .h2 {
  margin-block: 12px 20px;
  max-width: 22ch;
  margin-inline: auto;
}

.final-cta .lead {
  margin-inline: auto;
  margin-bottom: 36px;
}

.final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.final-cta-legal {
  font-size: 0.8rem;
  color: var(--text-3);
}

/* ===== FOOTER ===== */
.footer {
  padding-block: 56px 40px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 60px;
  align-items: start;
  margin-bottom: 48px;
}

.footer-brand .logo {
  display: block;
  margin-bottom: 12px;
}

.footer-brand .logo img {
  height: 30px;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-2);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.875rem;
  color: var(--text-2);
  transition: color 0.15s;
}

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

.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-3);
}

.footer-bottom a {
  color: var(--text-2);
  font-size: 0.8rem;
  transition: color 0.15s;
}

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

/* ===== SEO PAGES ===== */
.page-hero {
  padding-top: 140px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(245, 160, 0, 0.05), transparent 60%);
}

.page-hero .label {
  margin-bottom: 16px;
}

.page-hero .h1 {
  margin-bottom: 20px;
}

.page-hero .lead {
  margin-bottom: 32px;
}

.page-content {
  padding-block: 80px;
}

.page-content-inner {
  max-width: 760px;
  margin-inline: auto;
}

.page-content h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 56px;
  margin-bottom: 20px;
  color: var(--text);
}

.page-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--text);
}

.page-content p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 16px;
}

.page-content strong {
  color: var(--text);
  font-weight: 600;
}

.page-content ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.page-content ul li {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.page-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 0.8rem;
  top: 3px;
}

.page-content .highlight-box {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius-m) var(--radius-m) 0;
  padding: 20px 24px;
  margin-block: 28px;
}

.page-content .highlight-box p {
  margin-bottom: 0;
  color: var(--text);
}

.page-content .cta-inline {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 36px;
  text-align: center;
  margin-top: 56px;
}

.page-content .cta-inline h3 {
  margin-bottom: 12px;
  margin-top: 0;
}

.page-content .cta-inline p {
  margin-bottom: 20px;
  max-width: 50ch;
  margin-inline: auto auto;
}

.page-content .cta-inline .btn {
  margin-inline: auto;
}

/* Comparison table in page */
.page-content .table-wrapper {
  overflow-x: auto;
  margin-block: 28px;
}

.page-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-m);
  overflow: hidden;
  font-size: 0.875rem;
}

.page-content table th {
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-family: var(--font-heading);
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  font-size: 0.825rem;
}

.page-content table th:first-child {
  color: var(--text);
}

.page-content table td {
  padding: 12px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--text-2);
  vertical-align: middle;
}

.page-content table tr:last-child td {
  border-bottom: none;
}

.page-content table td:first-child {
  color: var(--text);
  font-weight: 500;
}

/* FAQ on page */
.page-faq {
  margin-top: 56px;
}

.page-faq h2 {
  margin-top: 0;
}

/* ===== BLOG ===== */
.article-hero {
  padding-top: 140px;
  padding-bottom: 48px;
  max-width: 760px;
  margin-inline: auto;
  text-align: left;
}

.article-hero .label {
  margin-bottom: 16px;
}

.article-hero .h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.825rem;
  color: var(--text-2);
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.article-meta .dot {
  color: var(--text-3);
}

.article-lead {
  font-size: 1.1rem;
  color: var(--text-2);
  line-height: 1.8;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.article-body {
  max-width: 760px;
  margin-inline: auto;
  padding-block: 56px;
}

.article-body h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 52px;
  margin-bottom: 16px;
  color: var(--text);
}

.article-body h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 10px;
  color: var(--text);
}

.article-body p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 18px;
}

.article-body strong {
  color: var(--text);
  font-weight: 600;
}

.article-body ul,
.article-body ol {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 0;
}

.article-body ul {
  list-style: none;
}

.article-body ul li {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.7;
  padding-left: 22px;
  position: relative;
}

.article-body ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--orange);
}

.article-body ol {
  list-style: none;
  counter-reset: ol-counter;
}

.article-body ol li {
  counter-increment: ol-counter;
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.7;
  padding-left: 28px;
  position: relative;
}

.article-body ol li::before {
  content: counter(ol-counter) '.';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
  font-size: 0.85rem;
}

.article-body .highlight {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius-m) var(--radius-m) 0;
  padding: 20px 24px;
  margin-block: 28px;
}

.article-body .highlight p {
  margin-bottom: 0;
  color: var(--text);
}

.related-articles {
  max-width: 760px;
  margin-inline: auto;
  padding-block: 48px;
  border-top: 1px solid var(--border);
}

.related-articles h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 20px;
}

.related-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.related-links a {
  font-size: 0.9rem;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.15s;
}

.related-links a:hover {
  color: var(--orange);
}

.related-links a::before {
  content: '→';
  color: var(--orange);
  font-size: 0.8rem;
}

/* ===== LEGAL PAGES ===== */
.legal-hero {
  padding-top: 140px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.legal-body {
  max-width: 760px;
  margin-inline: auto;
  padding-block: 64px;
}

.legal-body h2 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 14px;
  color: var(--text);
}

.legal-body p {
  font-size: 0.95rem;
  color: var(--text-2);
  line-height: 1.85;
  margin-bottom: 14px;
}

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

.legal-body ul {
  list-style: none;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-body ul li {
  font-size: 0.9rem;
  color: var(--text-2);
  padding-left: 18px;
  position: relative;
}

.legal-body ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--text-3);
}

.legal-body a {
  color: var(--orange);
}

.legal-body a:hover {
  text-decoration: underline;
}

/* ===== SUPPORT PAGE ===== */
.support-page main {
  position: relative;
}

.support-page main::before {
  content: '';
  position: absolute;
  inset: 0 0 auto;
  height: 520px;
  background:
    radial-gradient(circle at 12% 18%, rgba(245, 160, 0, 0.12), transparent 38%),
    radial-gradient(circle at 82% 12%, rgba(151, 172, 200, 0.16), transparent 30%);
  pointer-events: none;
}

.support-hero {
  padding-top: 140px;
  padding-bottom: 44px;
}

.support-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.support-copy .label,
.support-form-shell .label {
  display: inline-block;
  margin-bottom: 16px;
}

.support-copy .h2 {
  margin-bottom: 18px;
  max-width: 11ch;
}

.support-copy .lead {
  margin-bottom: 28px;
}

.support-points {
  display: grid;
  gap: 12px;
  max-width: 640px;
}

.support-point {
  padding: 16px 18px;
  border-radius: var(--radius-m);
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    rgba(20, 20, 20, 0.88);
  backdrop-filter: blur(16px);
}

.support-point strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
  color: var(--text);
}

.support-point span {
  color: var(--text-2);
  font-size: 0.95rem;
  line-height: 1.7;
}

.support-point a {
  color: var(--orange);
}

.support-point a:hover {
  text-decoration: underline;
}

.support-card,
.support-form-shell,
.support-mini-card {
  border: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    var(--surface-1);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.support-card,
.support-mini-card {
  border-radius: var(--radius-l);
  padding: 28px;
}

.support-card h2,
.support-mini-card h3 {
  margin-bottom: 14px;
}

.support-card p,
.support-mini-card p,
.support-mini-card li {
  color: var(--text-2);
}

.support-card ul,
.support-mini-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.support-card li,
.support-mini-card li {
  position: relative;
  padding-left: 18px;
  font-size: 0.95rem;
  line-height: 1.75;
}

.support-card li::before,
.support-mini-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--orange);
}

.support-card-meta {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.support-card-label,
.support-mini-card-label {
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
}

.support-card-meta a,
.support-mini-card a {
  color: var(--orange);
}

.support-card-meta a:hover,
.support-mini-card a:hover {
  text-decoration: underline;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.support-form-shell {
  border-radius: var(--radius-xl);
  padding: 32px;
}

.support-form-shell .h3 {
  margin-bottom: 10px;
}

.support-form-intro {
  color: var(--text-2);
  max-width: 58ch;
}

.support-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

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

.form-field span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid var(--border-2);
  background: var(--surface-2);
  color: var(--text);
  font: inherit;
  transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s var(--ease-out);
  appearance: none;
}

.form-field textarea {
  min-height: 180px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-3);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(245, 160, 0, 0.45);
  box-shadow: 0 0 0 4px rgba(245, 160, 0, 0.14);
  background: var(--surface-3);
}

.form-note {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--text-3);
}

.support-form-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-top: 8px;
}

.support-form .btn-primary[disabled] {
  opacity: 0.72;
  cursor: wait;
}

.form-feedback {
  min-height: 1.5em;
  font-size: 0.92rem;
  color: var(--text-2);
}

.form-feedback[data-state='success'] {
  color: #b6dcae;
}

.form-feedback[data-state='error'] {
  color: #ffb8a9;
}

.support-side {
  display: grid;
  gap: 20px;
}

.support-mini-card h3 {
  font-size: 1.1rem;
  font-family: var(--font-heading);
}

.support-mini-card ul {
  margin-top: 16px;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ===== DIVIDERS ===== */
.divider {
  height: 1px;
  background: var(--border);
}

.section-label-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}

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

/* ===== UTILITIES ===== */
.mt-4 {
  margin-top: 16px;
}

.mt-8 {
  margin-top: 32px;
}

.mt-12 {
  margin-top: 48px;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-6 {
  margin-bottom: 24px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-card--featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .feature-card--featured .feature-visual {
    height: 120px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: span 2;
  }

  .support-hero-inner,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .logo {
    font-size: 2.8rem;
  }

  :root {
    --section-padding: 72px;
  }

  .section {
    padding-block: 72px;
  }

  .section--lg {
    padding-block: 88px;
  }

  /* Header */
  .header-nav,
  .header-cta .btn-primary {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-nav {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 120px 20px 32px;
    gap: 8px;
  }

  .mobile-nav a {
    width: 100%;
    text-align: left;
  }

  .mobile-nav .btn-download {
    color: var(--text);
  }

  /* Hero */
  .hero {
    padding-top: 104px;
    text-align: left;
  }

  .hero-stack {
    align-items: flex-start;
  }

  .hero-title {
    font-size: clamp(3rem, 8vw, 3.6rem);
  }

  .hero-visual {
    --hero-visual-width: min(100vw, 980px);
    --hero-visual-height: 490px;
    --hero-ring-width: 522px;
    --hero-ring-height: 522px;
    --hero-ring-hole: 58px;
    --hero-device-width: 438px;
    --hero-device-top: 49px;
    --hero-mask-width: min(100vw, 980px);
    --hero-mask-top: 86px;
    --hero-mask-height: 470px;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr;
  }

  /* Problem */
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stat-item,
  .problem-content,
  .problem-card,
  .how-header,
  .step-card,
  .features-header,
  .feature-card,
  .comparison-header,
  .comparison-note,
  .pricing-header,
  .pricing-card,
  .faq-header,
  .final-cta,
  .final-cta-actions,
  .page-content,
  .article-hero,
  .cta-inline,
  .related-articles {
    text-align: left;
  }

  /* Steps */
  .steps-grid {
    grid-template-columns: 1fr;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature-card--featured {
    grid-column: span 1;
  }

  /* Comparison */
  .comparison thead th,
  .comparison tbody td {
    padding: 12px 14px;
    font-size: 0.8rem;
  }

  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .support-hero {
    padding-top: 104px;
  }

  .support-form-shell,
  .support-card,
  .support-mini-card {
    padding: 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Article */
  .article-hero {
    padding-top: 100px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 92px;
  }

  .hero-badge {
    margin-bottom: 20px;
  }

  .hero-title {
    width: min(392px, 100%);
    font-size: clamp(2.8rem, 12vw, 3.1875rem);
    line-height: 0.9;
  }

  .logo {
    font-size: 2.3rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    line-height: 1.34;
    width: min(352px, 100%);
    margin-bottom: 34px;
  }

  .hero-visual {
    --hero-visual-width: min(100vw, 392px);
    --hero-visual-height: 372px;
    --hero-ring-width: 356px;
    --hero-ring-height: 356px;
    --hero-ring-hole: 40px;
    --hero-device-width: 316px;
    --hero-device-top: 39px;
    --hero-mask-width: min(100vw, 392px);
    --hero-mask-top: 24px;
    --hero-mask-height: 390px;
  }

  .hero .btn-download {
    width: 274px;
    justify-content: center;
    padding: 13px 24px;
    font-size: 18px;
    line-height: 1;
    color: #fff7ea;
  }

  .hero-trust {
    font-size: 16px;
  }

  .container {
    width: calc(100% - 32px);
  }

  .pricing-grid {
    max-width: 100%;
  }
}
