/* =========================================================
   Invertcom Landing — CSS limpio
   Mockups profesionales de ordenador/tablet para insertar imágenes
   ========================================================= */

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

:root {
  --bg: #08090e;
  --bg-soft: #0b0c12;
  --surface: rgba(21, 23, 34, 0.92);
  --text: #f4f5f8;
  --text-soft: rgba(244, 245, 248, 0.72);
  --muted: #8e92a6;
  --platinum: #f0f2f7;
  --border: rgba(201, 204, 216, 0.13);
  --border-strong: rgba(201, 204, 216, 0.24);
  --brand-start: #e8391d;
  --brand-end: #f5a623;
  --brand-gradient: linear-gradient(135deg, #e8391d 0%, #f5a623 100%);
  --green: #6ee58e;
  --container: 1360px;
  --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 18% 0%, rgba(232, 57, 29, 0.08), transparent 30%),
    radial-gradient(circle at 82% 6%, rgba(245, 166, 35, 0.055), transparent 32%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 48%, var(--bg) 100%);
  line-height: 1.72;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

button {
  border: 0;
  font: inherit;
}

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

.text-gradient {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.center {
  text-align: center;
}

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

/* Buttons */

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 24px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #d93a22 0%, #f0a32b 100%);
  border: 1px solid rgba(245, 166, 35, 0.28);
  box-shadow: 0 14px 38px rgba(232, 57, 29, 0.18);
}

.btn-ghost {
  color: var(--platinum);
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-strong);
}

.btn-primary:hover,
.btn-ghost:hover {
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* Navbar */

#navbar {
  position: fixed;
  z-index: 1000;
  top: 16px;
  left: 16px;
  right: 16px;
}

.nav-inner {
  position: relative;
  width: min(var(--container), 100%);
  height: 64px;
  margin: 0 auto;
  padding: 0 18px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(201, 204, 216, 0.14);
  border-radius: 18px;
  background: rgba(8, 9, 14, 0.80);
  backdrop-filter: blur(20px) saturate(1.45);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.30);
}

#navbar.scrolled .nav-inner {
  background: rgba(8, 9, 14, 0.94);
}

.logo {
  justify-self: start;
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--platinum);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.logo-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.nav-links {
  justify-self: center;
  min-height: 44px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  list-style: none;
  border: 1px solid rgba(201, 204, 216, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
}

.nav-links a {
  min-height: 34px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: rgba(240, 242, 247, 0.64);
  font-size: 13px;
  font-weight: 800;
  line-height: 34px;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--platinum);
  background: rgba(255, 255, 255, 0.08);
}

.nav-ctas {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-ctas .btn-primary,
.nav-ctas .btn-ghost {
  min-height: 38px;
  padding: 0 15px;
  font-size: 14px;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--text);
}

/* Typography */

.hero-label,
.section-eyebrow,
.breadcrumb,
.premium-badge {
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-title,
.section-title,
.cta-title,
.value-card h3,
.tab-text h3 {
  color: var(--platinum);
  font-weight: 850;
  letter-spacing: -0.036em;
}

.hero-title {
  max-width: 560px;
  margin: 14px 0 20px;
  font-size: clamp(48px, 4.05vw, 70px);
  line-height: .96;
}

.hero-sub {
  max-width: 640px;
  margin-bottom: 24px;
  color: var(--text-soft);
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.55;
}

.section-title {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(34px, 3.7vw, 54px);
  line-height: 1.1;
}

.section-title.center {
  margin-left: auto;
  margin-right: auto;
}

.section-sub {
  max-width: 760px;
  margin-bottom: 52px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.76;
}

.section-sub.center {
  margin-left: auto;
  margin-right: auto;
}

.section-eyebrow {
  display: block;
  margin-bottom: 16px;
}

/* Breadcrumb */

.breadcrumb {
  margin-bottom: 28px;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.breadcrumb a {
  color: rgba(240, 242, 247, 0.64);
  text-decoration: none;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: rgba(240, 242, 247, 0.28);
}

/* Hero */

#hero {
  position: relative;
  min-height: 100svh;
  padding: 104px 0 56px;
  overflow: hidden;
}

.hero-ambient,
.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-ambient {
  opacity: 0.72;
  background:
    radial-gradient(circle at 50% 18%, rgba(232, 57, 29, 0.075), transparent 34%),
    radial-gradient(circle at 82% 20%, rgba(245, 166, 35, 0.045), transparent 32%);
}

.hero-grain {
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 538px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
  align-items: center;
  justify-content: space-between;
  gap: clamp(32px, 4vw, 64px);
}

.hero-content--centered {
  grid-template-columns: 1fr !important;
  text-align: center;
  justify-content: center;
}

.hero-content--centered .hero-text-content {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content--centered .hero-title {
  margin-left: auto;
  margin-right: auto;
}

.hero-content--centered .hero-sub {
  margin-left: auto;
  margin-right: auto;
}

.hero-content--centered .hero-ctas {
  justify-content: center;
}

.hero-content--centered .hero-trust {
  margin-left: auto;
  margin-right: auto;
}

.hero-content--centered .hero-checks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
}

.hero-text-content {
  width: 100%;
  max-width: 780px;
}

.hero-label {
  display: block;
  margin-bottom: 14px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust {
  max-width: 560px;
  margin-top: 18px;
}

.hero-microcopy {
  margin-bottom: 12px;
  color: rgba(244, 245, 248, 0.78);
  font-size: 15px;
  line-height: 1.6;
}

.hero-checks {
  display: grid;
  gap: 8px;
}

.hero-check-item {
  position: relative;
  display: block;
  padding-left: 24px;
  color: rgba(244, 245, 248, 0.86);
  font-size: 14px;
  line-height: 1.45;
}

.hero-check-item::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand-end);
  font-weight: 900;
}

/* Device mockups */

.device-mockup {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  pointer-events: none;
}

.hero-device {
  max-width: 720px !important;
}

.hero-device .device-screen {
  aspect-ratio: 1847 / 853 !important;
}

.custom-tablet-mockup {
  max-width: 640px !important;
}

.custom-tablet-mockup .device-screen {
  aspect-ratio: 1575 / 739 !important;
}

.hero-dividendos-mockup {
  max-width: 720px !important;
}

.hero-dividendos-mockup .device-screen {
  aspect-ratio: 1147 / 795 !important;
}

.dividendos-historico-mockup {
  max-width: 680px !important;
}

.dividendos-historico-mockup .device-screen {
  aspect-ratio: 1024 / 369 !important;
}

.device-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.035) 34%, rgba(0, 0, 0, 0.26)),
    #12141e;
  border: 1px solid rgba(201, 204, 216, 0.20);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 34px 100px rgba(0, 0, 0, 0.46);
}

.device-frame--desktop {
  padding: 14px 14px 18px;
  border-radius: 24px;
}

.device-frame--tablet {
  padding: 20px;
  border-radius: 34px;
}

.device-frame--desktop::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -46px;
  width: 42%;
  height: 46px;
  transform: translateX(-50%);
  background:
    linear-gradient(180deg, rgba(201, 204, 216, 0.18), rgba(201, 204, 216, 0.04)),
    #10121a;
  border: 1px solid rgba(201, 204, 216, 0.12);
  border-top: 0;
  border-radius: 0 0 18px 18px;
  opacity: 0.65;
}

.device-frame--tablet::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 50%;
  z-index: 3;
  width: 42px;
  height: 4px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(201, 204, 216, 0.22);
}

.device-screen {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 204, 216, 0.10);
  background:
    radial-gradient(circle at 22% 0%, rgba(245, 166, 35, 0.14), transparent 34%),
    linear-gradient(180deg, #151722, #090a0f);
}

.device-frame--desktop .device-screen {
  aspect-ratio: 16 / 10;
  border-radius: 16px;
}

.device-frame--tablet .device-screen {
  aspect-ratio: 4 / 3;
  border-radius: 22px;
}

.device-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.device-placeholder {
  position: absolute;
  inset: 0;
  padding: 24px;
  display: grid;
  place-items: center;
  color: rgba(240, 242, 247, 0.55);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.05) 25%, transparent 25%) 0 0 / 22px 22px,
    radial-gradient(circle at center, rgba(245, 166, 35, 0.10), transparent 55%);
}

.device-placeholder strong {
  display: block;
  margin-bottom: 6px;
  color: rgba(240, 242, 247, 0.82);
  font-size: 15px;
}

.device-placeholder span {
  display: block;
  color: rgba(240, 242, 247, 0.48);
  font-family: var(--font-mono);
  font-size: 11px;
}

.device-screen.has-image .device-placeholder {
  display: none;
}

.device-glow {
  position: absolute;
  inset: -18%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 20%, rgba(245, 166, 35, 0.15), transparent 38%),
    radial-gradient(circle at 50% 70%, rgba(232, 57, 29, 0.10), transparent 42%);
  filter: blur(16px);
}

.device-shadow {
  width: 78%;
  height: 28px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.44), transparent 70%);
}

/* Sections */

.value-section,
.product-section,
.comparison-section,
.pricing-section,
.faq-section,
.cta-section {
  position: relative;
  padding: 108px 0;
  border-top: 1px solid rgba(201, 204, 216, 0.055);
}

.value-section::before,
.product-section::before,
.comparison-section::before,
.pricing-section::before,
.faq-section::before,
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 34%);
}

.value-section>.container,
.product-section>.container,
.comparison-section>.container,
.pricing-section>.container,
.faq-section>.container,
.cta-section>.container {
  position: relative;
  z-index: 1;
}

.premium-section {
  border-top: 1px solid rgba(245, 166, 35, 0.18);
  border-bottom: 1px solid rgba(245, 166, 35, 0.08);
}

.premium-section::before {
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 166, 35, 0.07), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 42%);
}

/* Metrics */

.metrics-section {
  padding: 52px 0;
  border-top: 1px solid rgba(201, 204, 216, 0.07);
  border-bottom: 1px solid rgba(201, 204, 216, 0.07);
}

.metrics-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.metric-item {
  display: flex;
  justify-content: center;
  padding: 0 24px;
}

.metric-sep {
  width: 1px;
  height: 58px;
  margin: 0 22px;
  background: var(--border);
}

.metric-label {
  max-width: 250px;
  color: rgba(240, 242, 247, 0.78);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.metrics-sub {
  max-width: 620px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 15px;
  text-align: center;
}

/* Cards */

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

.value-card,
.pricing-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(201, 204, 216, 0.115);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    var(--surface);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.value-card {
  padding: 34px;
}

.value-card:hover,
.pricing-card:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 204, 216, 0.22);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.value-icon {
  margin-bottom: 22px;
  color: var(--brand-end);
}

.value-card h3 {
  margin-bottom: 12px;
  font-size: 20px;
  line-height: 1.28;
}

.value-card p {
  color: var(--text-soft);
  font-size: 15px;
}

.value-card .btn-ghost {
  margin-top: 22px;
}

/* Product layout */

.premium-badge-row {
  margin-bottom: 24px;
}

.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border: 1px solid rgba(245, 166, 35, 0.30);
  border-radius: 999px;
  color: var(--brand-end);
  background: rgba(245, 166, 35, 0.09);
}

.tab-panel {
  margin-top: 72px;
}

.tab-panel:first-of-type {
  margin-top: 0;
}

.tab-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
}

.tab-layout--centered {
  grid-template-columns: 1fr !important;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.tab-layout--centered .tab-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tab-layout--centered .feature-list {
  margin: 24px auto 0;
  text-align: left;
}

@media (min-width: 576px) {
  .tab-layout--centered .feature-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 40px;
  }
}

.tab-layout.reversed {
  direction: rtl;
}

.tab-layout.reversed>* {
  direction: ltr;
}

.tab-text h3 {
  margin-bottom: 16px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.16;
}

.tab-text p {
  margin-bottom: 24px;
  color: var(--text-soft);
  font-size: 16px;
}

.tab-text .btn-ghost,
.tab-text .btn-primary {
  margin-top: 24px;
}

.feature-list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 24px;
  color: rgba(244, 245, 248, 0.86);
  font-size: 15px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--brand-end);
}

/* Comparison */

.comparison-table-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-align: left;
  text-transform: uppercase;
}

.comparison-table td {
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
  color: rgba(244, 245, 248, 0.78);
  font-size: 14px;
}

.comparison-table .col-axon {
  color: var(--platinum);
  background: rgba(245, 166, 35, 0.045);
  font-weight: 800;
}

/* Pricing */

.pricing-toggle-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-bottom: 56px;
}

.toggle-label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.discount-badge {
  padding: 3px 10px;
  border-radius: 999px;
  color: var(--green);
  background: rgba(110, 229, 142, 0.10);
  font-size: 11px;
  font-weight: 900;
}

.switch {
  position: relative;
  width: 46px;
  height: 26px;
  display: inline-block;
}

.switch input {
  width: 0;
  height: 0;
  opacity: 0;
}

.slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--surface);
  transition: 0.3s;
}

.slider::before {
  content: "";
  position: absolute;
  left: 4px;
  bottom: 4px;
  width: 16px;
  height: 16px;
  background: var(--platinum);
  transition: 0.3s;
}

input:checked+.slider {
  background: rgba(245, 166, 35, 0.32);
}

input:checked+.slider::before {
  transform: translateX(20px);
}

.slider.round,
.slider.round::before {
  border-radius: 999px;
}

.pricing-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pricing-card {
  padding: 38px;
}

.premium-card {
  border-color: rgba(245, 166, 35, 0.36);
}

.plan-badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 7px 14px;
  border-radius: 0 20px 0 14px;
  color: #fff;
  background: var(--brand-gradient);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-name {
  margin-bottom: 10px;
  color: var(--platinum);
  font-size: 22px;
  font-weight: 900;
}

.plan-desc,
.plan-subtitle {
  color: var(--muted);
  font-size: 14px;
}

.plan-desc {
  margin-bottom: 26px;
}

.plan-price {
  margin-bottom: 24px;
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.price-amount {
  color: var(--platinum);
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.price-period {
  color: var(--muted);
  font-size: 16px;
}

.plan-subtitle {
  margin: -16px 0 28px;
}

.plan-features {
  display: grid;
  gap: 14px;
  margin-bottom: 32px;
  list-style: none;
}

.plan-features li {
  color: rgba(244, 245, 248, 0.84);
  font-size: 14px;
}

.feat-excluded {
  color: var(--muted) !important;
  opacity: 0.72;
}

.btn-full {
  width: 100%;
}

/* FAQ */

.faq-container {
  max-width: 760px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  min-height: 70px;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  background: transparent;
  color: rgba(244, 245, 248, 0.88);
  font-size: 16px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.faq-answer p {
  padding: 0 0 22px;
  color: rgba(244, 245, 248, 0.66);
  font-size: 15px;
}

.faq-item.open .faq-answer {
  max-height: 360px;
}

.faq-icon {
  flex-shrink: 0;
  color: var(--muted);
  transition: transform 0.3s ease;
}

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

/* CTA */

.cta-section {
  overflow: hidden;
  text-align: center;
}

.cta-glow {
  position: absolute;
  bottom: -110px;
  left: 50%;
  width: 660px;
  height: 420px;
  transform: translateX(-50%);
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(232, 57, 29, 0.12), rgba(245, 166, 35, 0.06) 48%, transparent 72%);
}

.cta-container {
  position: relative;
  z-index: 1;
}

.cta-title {
  max-width: 900px;
  margin: 0 auto 18px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.08;
}

.cta-sub {
  max-width: 760px;
  margin: 0 auto 38px;
  color: var(--text-soft);
  font-size: 18px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
}

/* Footer */

.footer {
  padding: 64px 0 32px;
  background: #07080d;
}

.footer-sep {
  height: 1px;
  margin-bottom: 56px;
  background: linear-gradient(to right, transparent, var(--border-strong), transparent);
}

.footer-inner {
  margin-bottom: 48px;
  display: flex;
  gap: 64px;
}

.footer-brand {
  flex: 1;
}

.footer-brand .logo {
  margin-bottom: 14px;
}

.footer-brand p {
  max-width: 430px;
  color: var(--text-soft);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 52px;
}

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

.footer-col h4 {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-col a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}



/* -------------------------
   App Store badges & mobile app section
------------------------- */

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

.hero-store-actions {
  margin-top: 14px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 7px 13px;
  border: 1px solid rgba(201, 204, 216, .18);
  border-radius: 14px;
  color: var(--platinum);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018)),
    rgba(8, 9, 14, .62);
  text-decoration: none;
  box-shadow: 0 14px 42px rgba(0, 0, 0, .20);
  transition:
    transform .22s ease,
    border-color .22s ease,
    background .22s ease,
    box-shadow .22s ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  border-color: rgba(245, 166, 35, .34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .024)),
    rgba(8, 9, 14, .72);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .28);
}

.store-badge svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.store-badge span {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.store-badge small {
  color: rgba(244, 245, 248, .62);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .02em;
}

.store-badge strong {
  color: var(--platinum);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -.01em;
}

.app-availability {
  margin-top: 10px;
  color: rgba(244, 245, 248, .62);
  font-size: 13px;
  font-weight: 700;
}

.app-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.app-feature {
  padding: 16px;
  border: 1px solid rgba(201, 204, 216, .11);
  border-radius: 18px;
  background: rgba(255, 255, 255, .028);
}

.app-feature strong {
  display: block;
  margin-bottom: 5px;
  color: var(--platinum);
  font-size: 14px;
}

.app-feature span {
  display: block;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.55;
}

.phone-mockup {
  position: relative;
  width: min(100%, 330px);
  margin: 0 auto;
  pointer-events: none;
}

.phone-frame {
  position: relative;
  width: 100%;
  padding: 14px;
  border: 1px solid rgba(201, 204, 216, .22);
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .04) 32%, rgba(0, 0, 0, .24)),
    #12141e;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .16),
    0 34px 100px rgba(0, 0, 0, .48);
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 50%;
  z-index: 3;
  width: 82px;
  height: 22px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #07080d;
  border: 1px solid rgba(201, 204, 216, .08);
}

.phone-screen {
  position: relative;
  aspect-ratio: 9 / 19.5;
  overflow: hidden;
  border: 1px solid rgba(201, 204, 216, .10);
  border-radius: 31px;
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 166, 35, .15), transparent 32%),
    linear-gradient(180deg, #151722, #090a0f);
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.phone-placeholder {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: grid;
  place-items: center;
  color: rgba(240, 242, 247, .55);
  text-align: center;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%) 0 0 / 20px 20px,
    radial-gradient(circle at center, rgba(245, 166, 35, .12), transparent 56%);
}

.phone-placeholder strong {
  display: block;
  margin-bottom: 8px;
  color: rgba(240, 242, 247, .86);
  font-size: 16px;
}

.phone-placeholder span {
  display: block;
  color: rgba(240, 242, 247, .50);
  font-family: var(--font-mono);
  font-size: 11px;
}

.phone-screen.has-image .phone-placeholder {
  display: none;
}

.phone-glow {
  position: absolute;
  inset: -18%;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 18%, rgba(245, 166, 35, .18), transparent 38%),
    radial-gradient(circle at 50% 78%, rgba(232, 57, 29, .12), transparent 44%);
  filter: blur(16px);
}

.phone-shadow {
  width: 84%;
  height: 30px;
  margin: 22px auto 0;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, .46), transparent 70%);
}

@media (max-width: 768px) {
  .store-actions {
    align-items: stretch;
  }

  .store-badge {
    width: 100%;
    justify-content: center;
  }

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

  .phone-mockup {
    width: min(100%, 300px);
  }
}



/* -------------------------
   Inner page app CTA
------------------------- */

.app-inline-section {
  position: relative;
  overflow: hidden;
  padding: clamp(54px, 7vw, 92px) 0;
  border-top: 1px solid rgba(201, 204, 216, .08);
  border-bottom: 1px solid rgba(201, 204, 216, .08);
  background:
    radial-gradient(circle at 18% 10%, rgba(245, 166, 35, .12), transparent 36%),
    radial-gradient(circle at 82% 84%, rgba(232, 57, 29, .10), transparent 34%),
    rgba(255, 255, 255, .018);
}

.app-inline-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 48px);
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(201, 204, 216, .12);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .07), rgba(255, 255, 255, .025)),
    rgba(8, 9, 14, .66);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .26);
}

.app-inline-content {
  max-width: 760px;
}

.app-inline-title {
  margin: 0 0 14px;
  color: var(--platinum);
  font-size: clamp(32px, 3.4vw, 52px);
  line-height: 1;
  letter-spacing: -.045em;
}

.app-inline-title span {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.app-inline-text {
  max-width: 680px;
  margin: 0 0 22px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.65;
}

.app-inline-actions {
  margin-top: 20px;
}

.app-inline-mini {
  width: 200px;
  height: 400px;
  padding: 10px;
  border: 1px solid rgba(201, 204, 216, .20);
  border-radius: 40px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .18), rgba(255, 255, 255, .04) 38%, rgba(0, 0, 0, .24)),
    #12141e;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .14),
    0 24px 70px rgba(0, 0, 0, .34);
}

.app-inline-mini-screen {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 0%, rgba(245, 166, 35, .18), transparent 35%),
    linear-gradient(180deg, #151722, #08090e);
}

.app-inline-mini-screen::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 50px;
  height: 12px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(0, 0, 0, .72);
  z-index: 2;
}

.app-inline-mini-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.app-inline-mini-screen.has-image .device-placeholder {
  display: none;
}

@media (max-width: 760px) {
  .app-inline-card {
    grid-template-columns: 1fr;
  }

  .app-inline-mini {
    display: none;
  }
}

/* Responsive */

@media (max-width: 1024px) {
  .container {
    width: min(100% - 44px, var(--container));
  }

  .nav-inner {
    height: 64px;
    grid-template-columns: auto 1fr auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    min-height: auto;
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    border-radius: 20px;
    background: rgba(8, 9, 14, 0.97);
    border: 1px solid rgba(201, 204, 216, 0.14);
  }

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

  .nav-links a {
    width: 100%;
    min-height: 44px;
    justify-content: flex-start;
    line-height: 44px;
  }

  .nav-ctas {
    display: none;
  }

  #hero {
    min-height: 100svh;
    padding: 104px 0 56px;
  }

  .hero-content {
    min-height: auto;
    grid-template-columns: minmax(540px, .98fr) minmax(500px, .92fr);
    gap: clamp(48px, 5.6vw, 92px);
  }

  .hero-text-content,
  .hero-title,
  .hero-sub,
  .hero-trust,
  .device-mockup {
    max-width: 760px;
  }

  .tab-layout,
  .tab-layout.reversed {
    grid-template-columns: 1fr;
    gap: 42px;
    direction: ltr;
  }

  .tab-layout.reversed .tab-mockup {
    order: -1;
  }

  .value-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .value-section,
  .product-section,
  .comparison-section,
  .pricing-section,
  .faq-section,
  .cta-section {
    padding: 82px 0;
  }

  .metrics-grid {
    flex-direction: column;
    gap: 28px;
  }

  .metric-sep {
    width: 60px;
    height: 1px;
    margin: 0;
  }

  .footer-inner {
    display: grid;
    gap: 34px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 34px;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 40px, var(--container));
  }

  #navbar {
    top: 10px;
    left: 10px;
    right: 10px;
  }

  .nav-inner {
    height: 64px;
    padding: 0 12px;
  }

  .logo {
    font-size: 16px;
  }

  #hero {
    padding: 104px 0 56px;
  }

  .hero-title {
    font-size: clamp(48px, 4.05vw, 70px);
  }

  .hero-sub,
  .section-sub,
  .cta-sub {
    font-size: 16px;
  }

  .hero-ctas,
  .cta-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas a,
  .cta-actions a {
    width: 100%;
  }

  .value-card,
  .pricing-card {
    padding: 26px;
  }

  .comparison-table {
    min-width: 680px;
  }

  .pricing-toggle-wrapper {
    flex-wrap: wrap;
  }

  .device-frame--desktop {
    padding: 10px 10px 14px;
    border-radius: 20px;
  }

  .device-frame--tablet {
    padding: 14px;
    border-radius: 28px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .section-title,
  .cta-title {
    font-size: clamp(32px, 10vw, 46px);
  }

  .hero-title {
    font-size: clamp(48px, 4.05vw, 70px);
  }

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




@media (min-width: 981px) and (max-height: 840px) {
  #hero {
    padding: 88px 0 36px;
  }

  .hero-title {
    font-size: clamp(44px, 3.65vw, 62px);
    line-height: .95;
    margin: 10px 0 16px;
  }

  .hero-label {
    margin-bottom: 10px;
  }

  .hero-sub {
    max-width: 610px;
    font-size: 16px;
    line-height: 1.48;
    margin-bottom: 18px;
  }

  .hero-ctas {
    margin-top: 0;
  }

  .hero-store-actions {
    margin-top: 12px;
  }

  .app-availability {
    margin-top: 8px;
  }

  .hero-trust {
    margin-top: 14px;
  }

  .hero-microcopy {
    margin-bottom: 8px;
  }

  .hero-checks {
    gap: 6px;
  }

  .hero-check-item {
    font-size: 13px;
  }

  .device-mockup--desktop {
    max-width: 560px;
  }
}

/* Scroll reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

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

/* Hero entrance animations */
@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#hero .hero-text-content > *,
#hero .device-mockup,
.support-hero-content > * {
  opacity: 0;
  animation: heroFadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

#hero .hero-text-content > *:nth-child(1),
.support-hero-content > *:nth-child(1) {
  animation-delay: 0.08s;
}

#hero .hero-text-content > *:nth-child(2),
.support-hero-content > *:nth-child(2) {
  animation-delay: 0.16s;
}

#hero .hero-text-content > *:nth-child(3),
.support-hero-content > *:nth-child(3) {
  animation-delay: 0.24s;
}

#hero .hero-text-content > *:nth-child(4),
.support-hero-content > *:nth-child(4) {
  animation-delay: 0.32s;
}

#hero .hero-text-content > *:nth-child(5),
.support-hero-content > *:nth-child(5) {
  animation-delay: 0.40s;
}

#hero .device-mockup {
  animation-delay: 0.35s;
}