:root {
  --bg: #0a0a0f;
  --surface: #12121a;
  --surface-2: #1a1a26;
  --gold: #c9a84c;
  --gold-soft: #e8c97a;
  --purple: #7b61ff;
  --teal: #00d4aa;
  --text: #ffffff;
  --text-secondary: #8e8ea8;
  --text-muted: #4a4a6a;
  --stroke: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

h1,
h2,
h3,
h4 {
  font-family: "Sora", "Segoe UI", sans-serif;
  margin: 0;
}

p {
  margin: 0;
}

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

.container {
  width: min(1120px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 20% 20%, rgba(123, 97, 255, 0.25), transparent 40%),
    radial-gradient(circle at 80% 10%, rgba(201, 168, 76, 0.22), transparent 45%),
    linear-gradient(170deg, #08080f, #0d0d15);
  transition: opacity 460ms ease, visibility 460ms ease;
}

.site-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.site-loader-inner {
  text-align: center;
}

.loader-mark {
  width: 64px;
  height: 64px;
  margin: 0 auto 0.65rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #08080f;
  font: 800 1.55rem/1 "Sora", sans-serif;
  background: linear-gradient(140deg, var(--gold-soft), var(--gold));
  box-shadow: 0 0 0 10px rgba(201, 168, 76, 0.12), 0 18px 40px rgba(201, 168, 76, 0.28);
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.site-loader p {
  font: 700 1.15rem/1.25 "Sora", sans-serif;
  margin-bottom: 0.8rem;
}

.site-loader small {
  display: block;
  color: var(--text-secondary);
  font-size: 0.83rem;
  margin-top: 0.65rem;
}

.loader-line {
  width: min(260px, 76vw);
  height: 4px;
  margin: 0 auto;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
}

.loader-line span {
  display: block;
  width: 42%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--purple), var(--gold), var(--teal));
  animation: loaderMove 1.15s ease-in-out infinite;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.04);
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--purple), var(--gold), var(--teal));
  box-shadow: 0 0 16px rgba(201, 168, 76, 0.5);
}

.bg-orb {
  position: fixed;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.35;
  z-index: 0;
}

.orb-1 {
  top: -140px;
  right: -180px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.55), transparent 70%);
}

.orb-2 {
  top: 24%;
  left: -180px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(123, 97, 255, 0.55), transparent 70%);
}

.orb-3 {
  bottom: -180px;
  right: 15%;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(0, 212, 170, 0.42), transparent 70%);
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

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

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.brand-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #08080f;
  background: linear-gradient(140deg, var(--gold-soft), var(--gold));
  box-shadow: 0 4px 18px rgba(201, 168, 76, 0.35);
}

.menu-toggle {
  display: none;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font: 600 0.85rem/1 "IBM Plex Sans", sans-serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  color: var(--text-secondary);
  font-weight: 500;
}

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

.nav-cta {
  color: #08080f;
  background: linear-gradient(130deg, var(--gold-soft), var(--gold));
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-weight: 700;
}

.hero {
  min-height: calc(100vh - 74px);
  padding: 4rem 0;
  display: grid;
  gap: 2.8rem;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
}

.eyebrow {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.45rem);
  line-height: 1.05;
  margin-bottom: 1rem;
  letter-spacing: -0.8px;
}

.hero-subtitle {
  max-width: 56ch;
  color: var(--text-secondary);
  font-size: 1.04rem;
  line-height: 1.6;
}

.hero-gradient {
  background: linear-gradient(120deg, var(--gold-soft) 10%, var(--gold) 40%, #f3e4a9 65%, var(--purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-trust {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--stroke);
  border-radius: 999px;
  font-size: 0.77rem;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.02);
}

.hero-trust i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.5);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.hero-live-metrics {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.hero-live-metrics article {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.025);
  padding: 0.75rem;
  transition: transform 200ms ease, border-color 200ms ease;
}

.hero-live-metrics strong {
  display: block;
  font: 700 0.95rem/1.25 "Sora", sans-serif;
  margin-bottom: 0.28rem;
}

.hero-live-metrics > article > span {
  color: var(--text-secondary);
  font-size: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.78rem 1.25rem;
  font-weight: 700;
  transition: transform 180ms ease, opacity 180ms ease;
}

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

.btn-primary {
  color: #08080f;
  background: linear-gradient(130deg, var(--gold-soft), var(--gold));
}

.btn-ghost {
  color: var(--text-secondary);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.02);
}

.hero-meta {
  margin: 1.35rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.hero-meta li {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 0.4rem 0.8rem;
}

.hero-stage {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-stage::before {
  content: "";
  position: absolute;
  width: 84%;
  height: 84%;
  border-radius: 30px;
  background:
    radial-gradient(circle at 80% 5%, rgba(201, 168, 76, 0.22), transparent 45%),
    radial-gradient(circle at 15% 75%, rgba(123, 97, 255, 0.2), transparent 50%),
    rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
}

.hero-device {
  position: relative;
  z-index: 2;
}

.hero-float-card {
  position: absolute;
  z-index: 3;
  width: min(220px, 44vw);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  padding: 0.72rem;
  background: linear-gradient(165deg, rgba(8, 8, 15, 0.95), rgba(20, 20, 31, 0.82));
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
}

.hero-float-card p {
  font-size: 0.68rem;
  color: rgba(232, 201, 122, 0.95);
  letter-spacing: 1.05px;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
  font-weight: 700;
}

.hero-float-card strong {
  display: block;
  font: 700 1.35rem/1.16 "Sora", sans-serif;
  margin-bottom: 0.28rem;
  color: #ffffff;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.45);
}

.hero-float-card > span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.82rem;
  line-height: 1.35;
  display: block;
}

.hero-float-top {
  top: 28px;
  right: 8px;
}

.hero-float-bottom {
  bottom: 36px;
  left: 8px;
}

.float-bars {
  margin: 0.45rem 0 0.5rem;
  display: grid;
  gap: 0.35rem;
}

.float-bars span {
  display: block;
  height: 7px;
  width: var(--w);
  border-radius: 999px;
  background: linear-gradient(90deg, #8f7aff, #f1d684);
  box-shadow: 0 3px 10px rgba(143, 122, 255, 0.35);
}

.phone-shell {
  width: min(330px, 100%);
  border-radius: 34px;
  padding: 1rem;
  background: linear-gradient(145deg, #1c1c2c, #0f0f17);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

.floating-phone {
  animation: floatPhone 5s ease-in-out infinite;
}

.phone-notch {
  width: 42%;
  height: 24px;
  margin: 0 auto 0.8rem;
  border-radius: 999px;
  background: #050507;
}

.phone-content {
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.08), rgba(10, 10, 15, 0.95));
  padding: 1rem;
}

.mini-label {
  font-size: 0.68rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-align: center;
}

.ring-wrap {
  display: grid;
  place-items: center;
  margin: 1rem 0;
}

.ring {
  width: 150px;
  height: 150px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--teal) 0 30%, var(--gold) 30% 82%, #2a2a3a 82% 100%);
}

.ring-inner {
  width: 124px;
  height: 124px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #0b0b11;
  text-align: center;
}

.ring-inner strong {
  font: 800 2rem/1 "Sora", sans-serif;
}

.ring-inner span {
  font-size: 0.73rem;
  color: var(--text-secondary);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.mini-grid article {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--stroke);
  border-radius: 10px;
  padding: 0.55rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mini-grid span {
  font-size: 0.7rem;
  color: var(--text-secondary);
}

.mini-grid strong {
  font: 700 0.95rem/1 "Sora", sans-serif;
}

[data-tilt] {
  transform-style: preserve-3d;
  transition: transform 180ms ease;
  will-change: transform;
}

section {
  padding: 2.8rem 0;
}

.proof-strip {
  margin-top: -0.4rem;
  margin-bottom: 0.55rem;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  padding: 0.9rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.proof-item {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.018);
  padding: 0.65rem;
}

.proof-number {
  display: block;
  font: 700 1.3rem/1 "Sora", sans-serif;
  margin-bottom: 0.3rem;
  color: var(--gold-soft);
}

.proof-item p {
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.4;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
}

.feature-card h3 {
  font-size: 1.06rem;
  margin-bottom: 0.55rem;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.55;
  font-size: 0.95rem;
}

.experience .section-title,
.dashboard .section-title,
.impact .section-title,
.testimonials .section-title,
.faq .section-title {
  margin-bottom: 1rem;
}

.bento-grid {
  display: grid;
  gap: 0.9rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bento-card {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012));
  padding: 1.1rem;
}

.bento-card h3 {
  font-size: 1.12rem;
  margin-bottom: 0.5rem;
}

.bento-card p {
  color: var(--text-secondary);
  line-height: 1.55;
  font-size: 0.92rem;
}

.bento-card.tall {
  grid-row: span 2;
}

.bento-card.wide {
  grid-column: span 2;
}

.bento-bars {
  margin-top: 0.8rem;
  display: flex;
  align-items: end;
  gap: 0.45rem;
  height: 90px;
}

.bento-bars span {
  flex: 1;
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  height: var(--bar);
  box-shadow: 0 8px 18px rgba(201, 168, 76, 0.25);
}

.section-title {
  margin-bottom: 1.35rem;
}

.section-title h2 {
  font-size: clamp(1.5rem, 3.6vw, 2.2rem);
}

.workflow .steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
}

.workflow article {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.workflow span {
  display: inline-block;
  color: var(--gold);
  font: 800 0.95rem/1 "Sora", sans-serif;
  margin-bottom: 0.6rem;
}

.workflow h4 {
  margin-bottom: 0.45rem;
}

.workflow p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.5;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1rem;
}

.dash-card {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.025);
  padding: 1rem;
}

.dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.dash-head h3 {
  font-size: 1.02rem;
}

.dash-head span {
  font-size: 0.78rem;
  color: var(--text-secondary);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 0.25rem 0.55rem;
}

.fake-line {
  position: relative;
  min-height: 180px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px) 0 0 / 100% 25%,
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px) 0 0 / 15% 100%,
    linear-gradient(180deg, rgba(123, 97, 255, 0.13), rgba(201, 168, 76, 0.05));
  overflow: hidden;
}

.fake-line::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.08), transparent 70%);
  transform: translateX(-120%);
  animation: shimmerMove 4.2s linear infinite;
}

.fake-line span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  left: var(--x);
  top: var(--y);
  background: var(--gold-soft);
  box-shadow: 0 0 0 5px rgba(201, 168, 76, 0.15), 0 0 14px rgba(201, 168, 76, 0.45);
}

.milestones ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.milestones li {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.02);
  padding: 0.6rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.milestones strong {
  font-family: "Sora", sans-serif;
  color: var(--text);
  margin-right: 0.35rem;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.impact-card {
  border: 1px solid rgba(201, 168, 76, 0.24);
  border-radius: var(--radius-lg);
  background: linear-gradient(175deg, rgba(201, 168, 76, 0.14), rgba(255, 255, 255, 0.015));
  padding: 1rem;
}

.impact-num {
  font: 800 clamp(1.65rem, 4vw, 2.5rem)/1 "Sora", sans-serif;
  margin-bottom: 0.45rem;
  background: linear-gradient(120deg, var(--gold-soft), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.impact-card p:last-child {
  color: var(--text-secondary);
  line-height: 1.45;
  font-size: 0.9rem;
}

.testimonials {
  overflow: hidden;
}

.testimonial-frame {
  position: relative;
  min-height: 178px;
}

.testimonial-slide {
  position: absolute;
  inset: 0;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  background: linear-gradient(170deg, rgba(123, 97, 255, 0.12), rgba(255, 255, 255, 0.02) 50%);
  padding: 1.2rem;
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 320ms ease, transform 320ms ease;
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.testimonial-slide p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.95rem;
}

.testimonial-slide h4 {
  font-size: 0.98rem;
}

.testimonial-slide span {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.testimonial-controls {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.55rem;
}

.testimonial-controls button {
  border: 1px solid var(--stroke);
  border-radius: 999px;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-secondary);
  font: 700 1rem/1 "Sora", sans-serif;
  cursor: pointer;
}

.testimonial-controls button:hover {
  color: var(--text);
  border-color: rgba(201, 168, 76, 0.45);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.plan-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.03);
  padding: 1.25rem;
}

.plan-card.premium {
  border-color: rgba(201, 168, 76, 0.45);
  background: linear-gradient(165deg, rgba(201, 168, 76, 0.14), rgba(255, 255, 255, 0.03));
}

.badge {
  display: inline-flex;
  border-radius: 999px;
  padding: 0.32rem 0.66rem;
  font: 700 0.67rem/1 "Sora", sans-serif;
  letter-spacing: 1px;
  color: #08080f;
  background: linear-gradient(130deg, var(--gold-soft), var(--gold));
  margin-bottom: 0.8rem;
}

.plan-card h3 {
  font-size: 1.15rem;
}

.plan-card .price {
  margin: 0.45rem 0 1rem;
  color: var(--text-secondary);
}

.plan-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.plan-card li {
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.93rem;
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--gold);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  font: 600 0.98rem/1.4 "Sora", sans-serif;
  cursor: pointer;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform 220ms ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 280ms ease;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.58;
  padding: 0 1rem 1rem;
  font-size: 0.92rem;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.cta {
  text-align: center;
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: linear-gradient(180deg, rgba(201, 168, 76, 0.1), rgba(255, 255, 255, 0.015));
  border-radius: var(--radius-lg);
  padding: 2.5rem 1rem;
}

.cta h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 0.7rem;
}

.cta p {
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
}

.site-footer {
  border-top: 1px solid var(--stroke);
  margin-top: 3rem;
}

.footer-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer p,
.footer-links a {
  color: var(--text-muted);
  font-size: 0.83rem;
}

.footer-links {
  display: flex;
  gap: 0.9rem;
}

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

.legal-main {
  padding: 2.4rem 0 3.2rem;
}

.legal-hero {
  border: 1px solid rgba(201, 168, 76, 0.28);
  background: linear-gradient(165deg, rgba(201, 168, 76, 0.15), rgba(123, 97, 255, 0.08) 45%, rgba(255, 255, 255, 0.02));
  border-radius: var(--radius-lg);
  padding: 1.9rem;
  margin-bottom: 1.2rem;
}

.legal-hero h1 {
  font-size: clamp(1.65rem, 3.8vw, 2.5rem);
  margin-bottom: 0.55rem;
}

.legal-meta {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.legal-meta span {
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  color: var(--text-secondary);
  font-size: 0.77rem;
}

.legal-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 1rem;
}

.legal-toc {
  align-self: start;
  position: sticky;
  top: 94px;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  padding: 0.9rem;
}

.legal-toc strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 0.86rem;
  margin-bottom: 0.55rem;
}

.legal-toc a {
  display: block;
  color: var(--text-secondary);
  font-size: 0.86rem;
  line-height: 1.5;
  padding: 0.25rem 0;
}

.legal-toc a:hover {
  color: var(--text);
}

.legal-content {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  padding: 1.2rem;
  display: grid;
  gap: 0.95rem;
}

.legal-card {
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-md);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  padding: 1rem;
}

.legal-card h2 {
  font-size: 1.06rem;
  margin-bottom: 0.55rem;
}

.legal-card p {
  color: var(--text-secondary);
  line-height: 1.62;
  font-size: 0.95rem;
}

.legal-list {
  margin: 0.6rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-secondary);
  display: grid;
  gap: 0.45rem;
  font-size: 0.93rem;
}

.legal-note {
  border-left: 3px solid var(--gold);
  background: rgba(201, 168, 76, 0.09);
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
}

.legal-note p {
  color: rgba(255, 255, 255, 0.88);
}

.legal-card a {
  color: var(--gold-soft);
}

.support-main {
  padding: 2.4rem 0 3.2rem;
}

.support-hero {
  border: 1px solid rgba(0, 212, 170, 0.28);
  background: linear-gradient(165deg, rgba(0, 212, 170, 0.14), rgba(123, 97, 255, 0.08) 45%, rgba(255, 255, 255, 0.02));
  border-radius: var(--radius-lg);
  padding: 1.9rem;
}

.support-hero h1 {
  font-size: clamp(1.7rem, 4vw, 2.7rem);
  margin-bottom: 0.55rem;
}

.support-chips {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.support-chips span {
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 0.36rem 0.7rem;
  font-size: 0.78rem;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.02);
}

.support-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 1rem;
}

.support-card {
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  padding: 1.2rem;
}

.support-card h2 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.support-info p {
  color: var(--text-secondary);
  margin-bottom: 0.45rem;
}

.support-email {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.support-form {
  display: grid;
  gap: 0.78rem;
}

.support-form label {
  display: grid;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--stroke);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: 500 0.95rem/1.4 "IBM Plex Sans", sans-serif;
  padding: 0.72rem 0.82rem;
  outline: none;
}

.support-form select {
  appearance: none;
}

.support-form textarea {
  resize: vertical;
  min-height: 140px;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
  border-color: rgba(0, 212, 170, 0.6);
  box-shadow: 0 0 0 2px rgba(0, 212, 170, 0.2);
}

.support-submit {
  margin-top: 0.2rem;
}

.support-hint {
  color: var(--text-secondary);
  font-size: 0.85rem;
  line-height: 1.5;
}

.support-hint a {
  color: var(--gold-soft);
}

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

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

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

@keyframes shimmerMove {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(120%);
  }
}

@keyframes loaderPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@keyframes loaderMove {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(280%);
  }
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: left;
    min-height: auto;
    padding-top: 2.2rem;
  }

  .hero-stage {
    min-height: 470px;
  }

  .workflow .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .bento-card.wide {
    grid-column: span 2;
  }

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

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

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

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    border-bottom: 1px solid var(--stroke);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.2rem 1.2rem;
  }

  .nav-links.open {
    display: flex;
  }

  .features,
  .plan-grid,
  .workflow .steps {
    grid-template-columns: 1fr;
  }

  .hero-live-metrics,
  .proof-strip,
  .bento-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 430px;
  }

  .hero-stage::before {
    width: 100%;
    height: 100%;
  }

  .hero-device {
    width: min(310px, 86vw);
  }

  .hero-float-card {
    width: min(214px, 56vw);
    padding: 0.62rem;
  }

  .hero-float-top {
    top: 10px;
    right: 0;
  }

  .hero-float-bottom {
    bottom: 14px;
    left: 0;
  }

  .bento-card.wide,
  .bento-card.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 auto;
  }

  .footer-wrap {
    min-height: auto;
    padding: 1rem 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-shell {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

  .testimonial-frame {
    min-height: 220px;
  }

  .support-main {
    padding-top: 1.8rem;
  }

  .support-hero,
  .support-card {
    padding: 1rem;
  }
}

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