:root {
  --orange-300: #ffab6b;
  --orange-400: #ff8c3d;
  --orange-500: #f2741f;
  --orange-600: #d4620f;
  --orange-700: #a84f0c;

  --navy-950: #040b16;
  --navy-900: #071426;
  --navy-800: #0e1f36;
  --navy-700: #172b47;
  --navy-600: #253d5e;

  --text-hi: #f7f9fc;
  --text-mid: #b4bfcd;
  --text-low: #7c8aa0;

  --silver: #cdd3db;

  --radius: 18px;
  --radius-sm: 12px;
  --container-w: 1180px;
  --header-h: 72px;

  --font-display: "Manrope", "Segoe UI", Helvetica, Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--navy-900);
  color: var(--text-mid);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* Ambient background */
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-color: var(--navy-950);
  background-image:
    radial-gradient(ellipse 900px 520px at 12% -8%, rgba(242, 116, 31, 0.16), transparent 60%),
    radial-gradient(ellipse 800px 560px at 105% 15%, rgba(37, 61, 94, 0.4), transparent 60%),
    linear-gradient(180deg, var(--navy-900), var(--navy-950) 60%);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(4, 11, 22, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid rgba(205, 211, 219, 0.08);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.14rem;
  color: var(--text-hi);
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.brand-logo {
  height: 36px;
  width: auto;
}

.brand-accent { color: var(--orange-500); }

.main-nav {
  display: none;
  align-items: center;
  gap: 30px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-mid);
}

.main-nav a { transition: color 0.15s ease; }
.main-nav a:hover { color: var(--text-hi); }

.nav-cta {
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
  color: #fff !important;
  font-weight: 700;
  box-shadow: 0 8px 20px -8px rgba(242, 116, 31, 0.65);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 10px 26px -8px rgba(242, 116, 31, 0.8); }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  font-weight: 700;
}
.lang-switch a {
  padding: 4px 9px;
  border-radius: 6px;
  color: var(--text-low) !important;
}
.lang-switch a.active { color: var(--orange-400) !important; background: rgba(242, 116, 31, 0.12); }
.lang-switch a:hover { color: var(--text-hi) !important; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 0 auto;
  background: var(--text-hi);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown nav */
@media (max-width: 899px) {
  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--navy-800);
    border-bottom: 1px solid rgba(205, 211, 219, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .main-nav.open { max-height: 520px; display: flex; }
  .main-nav a {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(205, 211, 219, 0.07);
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav-cta { margin: 14px 20px; text-align: center; justify-content: center; }
  .lang-switch { padding: 12px 20px; border-bottom: 1px solid rgba(205, 211, 219, 0.07); }
  .lang-switch a { padding: 8px 14px; min-height: 32px; border-bottom: none !important; }
}

@media (min-width: 900px) {
  .main-nav { display: flex; }
  .nav-toggle { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 11px;
  font-weight: 700;
  font-size: 0.95rem;
  min-height: 48px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
  color: #fff;
  box-shadow: 0 10px 26px -10px rgba(242, 116, 31, 0.75);
}
.btn-primary:hover { box-shadow: 0 14px 32px -10px rgba(242, 116, 31, 0.9); transform: translateY(-1px); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(205, 211, 219, 0.28);
  color: var(--text-hi);
}
.btn-ghost:hover { border-color: var(--orange-500); color: #fff; background: rgba(242, 116, 31, 0.06); }

.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--orange-400);
  margin: 0 0 10px;
}

h1, h2, h3, h4 { color: var(--text-hi); margin: 0; font-weight: 800; font-family: var(--font-display); }

h1 { font-size: clamp(2.1rem, 7vw, 3.6rem); line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 4.5vw, 2.35rem); letter-spacing: -0.015em; margin-bottom: 14px; }
h3 { font-size: 1.16rem; margin-bottom: 8px; letter-spacing: -0.01em; }
h4 { font-size: 1.04rem; margin-bottom: 6px; }

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

.section-sub {
  color: var(--text-low);
  font-size: 1.03rem;
  max-width: 640px;
  margin: 0 auto 42px;
}
.section-sub.left { margin: 0 0 28px; max-width: 100%; }

.lg-only { display: none; }
@media (min-width: 640px) { .lg-only { display: inline; } }

/* ---------- Hero ---------- */
.hero {
  padding: 60px 0 44px;
  position: relative;
}

.hero-inner { text-align: center; max-width: 780px; margin: 0 auto; }

.hero-sub {
  font-size: 1.06rem;
  color: var(--text-low);
  margin: 20px auto 30px;
  max-width: 640px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  max-width: 320px;
  margin: 0 auto;
}

@media (min-width: 520px) {
  .hero-actions { flex-direction: row; justify-content: center; max-width: none; }
}

.hero-visual {
  margin: 52px auto 0;
  padding: 0 20px;
  max-width: 720px;
}

.mock-panel {
  background: linear-gradient(180deg, var(--navy-800), var(--navy-900));
  border: 1px solid rgba(205, 211, 219, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 90px -24px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(242, 116, 31, 0.06);
}

.mock-panel-top {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 13px 18px;
  background: rgba(255, 255, 255, 0.025);
  border-bottom: 1px solid rgba(205, 211, 219, 0.08);
}

.dot { width: 9px; height: 9px; border-radius: 50%; }
.dot-r { background: #ef4444; }
.dot-y { background: #f5a623; }
.dot-g { background: #34c77b; }

.mock-panel-title {
  margin-left: 10px;
  font-size: 0.8rem;
  color: var(--text-low);
  font-weight: 500;
}

.mock-panel-body {
  padding: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mock-stat {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(205, 211, 219, 0.1);
  border-radius: var(--radius-sm);
  padding: 15px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.mock-stat-num { font-family: var(--font-display); font-size: 1.32rem; font-weight: 800; color: var(--text-hi); }
.mock-stat-ok .mock-stat-num { color: #4fd695; }
.mock-stat-label { font-size: 0.68rem; color: var(--text-low); text-align: center; }

.mock-bars {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 60px;
  margin-top: 4px;
}
.mock-bars span {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--orange-400), var(--orange-700));
  border-radius: 3px 3px 0 0;
  opacity: 0.9;
}

/* ---------- Trust strip ---------- */
.trust-strip {
  border-top: 1px solid rgba(205, 211, 219, 0.1);
  border-bottom: 1px solid rgba(205, 211, 219, 0.1);
  background: rgba(255, 255, 255, 0.012);
  padding: 22px 0;
}

.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 10px;
  text-align: center;
}

.trust-item {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mid);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.trust-item svg { width: 18px; height: 18px; color: var(--orange-400); flex: none; }

@media (min-width: 700px) {
  .trust-inner { grid-template-columns: repeat(5, 1fr); }
  .trust-item { flex-direction: row; gap: 8px; font-size: 0.85rem; }
}

/* ---------- Sections ---------- */
.section { padding: 76px 0; }
.section-alt { background: rgba(255, 255, 255, 0.014); }

/* ---------- Icon chip (shared) ---------- */
.ico-chip {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(242, 116, 31, 0.18), rgba(242, 116, 31, 0.05));
  border: 1px solid rgba(242, 116, 31, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.ico-chip svg { width: 22px; height: 22px; color: var(--orange-400); }

/* ---------- Features grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 40px;
}

@media (min-width: 640px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}

.feature-card {
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0));
  background-color: var(--navy-800);
  border: 1px solid rgba(205, 211, 219, 0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  border-color: rgba(242, 116, 31, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -24px rgba(242, 116, 31, 0.35);
}

.feature-card p { margin: 0; font-size: 0.92rem; color: var(--text-low); }

/* ---------- How it works / flow ---------- */
.flow {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.flow-step {
  background: var(--navy-800);
  border: 1px solid rgba(205, 211, 219, 0.1);
  border-radius: var(--radius);
  padding: 26px 20px;
  text-align: center;
}

.flow-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 0.95rem;
}

.flow-step p { margin: 0; font-size: 0.86rem; color: var(--text-low); }

.flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-500);
  font-size: 1.3rem;
  font-weight: 700;
  transform: rotate(90deg);
  padding: 2px 0;
}

@media (min-width: 900px) {
  .flow { grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; align-items: stretch; }
  .flow-arrow { transform: none; }
}

/* ---------- Apps showcase ---------- */
.apps-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .apps-inner { grid-template-columns: 1.1fr 0.9fr; gap: 60px; }
}

.check-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.94rem;
  color: var(--text-mid);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: rgba(242, 116, 31, 0.16);
  box-shadow: inset 0 0 0 1px rgba(242, 116, 31, 0.4);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 6px;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--orange-400);
  border-bottom: 2px solid var(--orange-400);
  transform: rotate(-45deg);
}

.apps-visual {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.apps-logo-big {
  max-width: 320px;
  width: 100%;
  filter: drop-shadow(0 20px 50px rgba(242, 116, 31, 0.25));
}

/* ---------- Security ---------- */
.security-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}

@media (min-width: 640px) {
  .security-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1000px) {
  .security-grid { grid-template-columns: repeat(4, 1fr); }
}

.security-card {
  background: var(--navy-800);
  border: 1px solid rgba(205, 211, 219, 0.1);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.security-card:hover { border-color: rgba(242, 116, 31, 0.4); transform: translateY(-3px); }
.security-card .ico-chip { margin-left: auto; margin-right: auto; }

.security-card p { font-size: 0.86rem; color: var(--text-low); margin: 0; }

/* ---------- Pricing ---------- */
.pricing-group-label {
  margin: 44px 0 20px;
  text-align: center;
}
.pricing-group-label:first-of-type { margin-top: 40px; }
.pricing-group-label h3 {
  color: var(--text-hi);
  font-size: 1.05rem;
  margin: 0 0 6px;
}
.pricing-group-label p {
  color: var(--text-low);
  font-size: 0.86rem;
  margin: 0;
  max-width: 520px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.pricing-grid-2 { max-width: 760px; margin: 0 auto; }
.pricing-grid-3 { max-width: 900px; margin: 0 auto; }

@media (min-width: 640px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 780px) {
  .pricing-grid-3 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
}
@media (min-width: 1100px) {
  /* auto-fit, not a hardcoded repeat(4,...) — this row holds 4 plans right
     now (Starter, Pro, Business, Enterprise) and shouldn't need a CSS edit
     every time a plan is added or retired. */
  .pricing-grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
}

.price-card {
  position: relative;
  background: var(--navy-800);
  border: 1px solid rgba(205, 211, 219, 0.12);
  border-radius: var(--radius);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.price-card:hover { transform: translateY(-3px); }

.price-featured {
  border-color: var(--orange-500);
  box-shadow: 0 0 0 1px rgba(242, 116, 31, 0.4), 0 24px 60px -24px rgba(242, 116, 31, 0.45);
}

.price-badge {
  position: absolute;
  top: -13px;
  left: 26px;
  background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 5px 13px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.price-tag {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0 0 6px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 1.95rem;
  font-weight: 800;
  color: var(--text-hi);
}

.price-period {
  font-size: 0.85rem;
  color: var(--text-low);
}

.price-alt {
  font-size: 0.78rem;
  color: var(--text-low);
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.price-save {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(242, 116, 31, 0.14);
  border: 1px solid rgba(242, 116, 31, 0.35);
  color: var(--orange-400);
  font-weight: 800;
  font-size: 0.7rem;
  padding: 3px 9px 3px 7px;
  border-radius: 999px;
  white-space: nowrap;
}
.price-save svg { width: 11px; height: 11px; flex: none; }

.price-limit {
  color: var(--orange-400);
  font-weight: 700;
  font-size: 0.9rem;
  margin: 0 0 20px;
}

.price-note {
  margin-top: 30px;
  font-size: 0.8rem;
  color: var(--text-low);
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.price-card li {
  font-size: 0.86rem;
  color: var(--text-mid);
  padding-left: 20px;
  position: relative;
}

.price-card li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--orange-500);
}

/* ---------- Contact ---------- */
.contact-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.contact-inner .section-sub { margin-bottom: 32px; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid rgba(205, 211, 219, 0.1);
  padding: 44px 0 32px;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
}

.footer-brand { justify-content: center; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  font-size: 0.86rem;
  color: var(--text-low);
}

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

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-low);
  margin: 0;
}

@media (min-width: 780px) {
  .footer-inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .footer-brand { justify-content: flex-start; }
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Multi-page nav active state ---------- */
.main-nav a.active { color: var(--text-hi); position: relative; }
@media (min-width: 900px) {
  .main-nav a.active::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -24px;
    height: 2px;
    background: linear-gradient(90deg, var(--orange-400), var(--orange-600));
  }
}

/* ---------- Interior page hero ---------- */
.page-hero { padding: 48px 0 8px; }
.page-hero .hero-inner { max-width: 720px; }
.page-hero h1 { font-size: clamp(1.85rem, 5.5vw, 2.75rem); }

/* ---------- Pillar summary (home) ---------- */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 40px;
}
@media (min-width: 780px) { .pillars-grid { grid-template-columns: repeat(3, 1fr); } }

.pillar-card {
  background: var(--navy-800);
  border: 1px solid rgba(205, 211, 219, 0.1);
  border-radius: var(--radius);
  padding: 30px 26px;
  text-align: center;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.pillar-card:hover { border-color: rgba(242, 116, 31, 0.35); transform: translateY(-3px); }
.pillar-card .ico-chip { margin-left: auto; margin-right: auto; }
.pillar-card p { color: var(--text-low); font-size: 0.9rem; margin: 8px 0 16px; }
.pillar-card a { color: var(--orange-400); font-weight: 700; font-size: 0.85rem; }
.pillar-card a:hover { text-decoration: underline; }

/* ---------- Platform badges (real logos) ---------- */
.platform-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.platform-badges a,
.platform-badges span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 17px;
  border-radius: 999px;
  background: rgba(242, 116, 31, 0.1);
  border: 1px solid rgba(242, 116, 31, 0.3);
  color: var(--text-hi);
  font-size: 0.82rem;
  font-weight: 600;
}
.platform-badges svg { width: 16px; height: 16px; flex: none; color: var(--orange-400); }

/* ---------- Platform grid (apps page) ---------- */
.platform-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 44px;
}
@media (min-width: 700px) { .platform-grid { grid-template-columns: 1fr 1fr; } }

.platform-card {
  background: var(--navy-800);
  border: 1px solid rgba(205, 211, 219, 0.1);
  border-radius: var(--radius);
  padding: 30px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.platform-card:hover { border-color: rgba(242, 116, 31, 0.35); transform: translateY(-3px); }

.platform-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.platform-ico-wrap {
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(242, 116, 31, 0.18), rgba(242, 116, 31, 0.05));
  border: 1px solid rgba(242, 116, 31, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
}
.platform-ico-wrap svg { width: 24px; height: 24px; color: var(--orange-400); }

.platform-card p { color: var(--text-low); font-size: 0.9rem; margin: 0; }

/* ---------- App screenshots ---------- */
.shot-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 40px 90px -24px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(205, 211, 219, 0.1);
}
.shot-frame img { display: block; width: 100%; }

.shots-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 44px 0;
  align-items: center;
}
@media (min-width: 780px) { .shots-row { grid-template-columns: 1fr 1.3fr; } }
.shots-row.reverse { direction: rtl; }
.shots-row.reverse > * { direction: ltr; }

/* ---------- Ecosystem highlight (apps page) ---------- */
.ecosystem-card {
  margin-top: 60px;
  background: linear-gradient(135deg, rgba(242, 116, 31, 0.14), rgba(242, 116, 31, 0.02));
  border: 1px solid rgba(242, 116, 31, 0.32);
  border-radius: var(--radius);
  padding: 42px 30px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}
@media (min-width: 900px) { .ecosystem-card { grid-template-columns: 1fr 1fr; padding: 50px; } }

.ecosystem-diagram {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.ecosystem-hub {
  padding: 14px 22px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange-400), var(--orange-600));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 14px 30px -12px rgba(242, 116, 31, 0.55);
}
.ecosystem-hub svg { width: 18px; height: 18px; }
.ecosystem-connector { width: 2px; height: 18px; background: rgba(205, 211, 219, 0.25); }
.ecosystem-targets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.ecosystem-targets span {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--navy-900);
  border: 1px solid rgba(205, 211, 219, 0.18);
  color: var(--text-mid);
  font-size: 0.78rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.ecosystem-targets svg { width: 14px; height: 14px; color: var(--orange-400); }

/* ---------- Savings / efficiency blocks ---------- */
.savings-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid rgba(205, 211, 219, 0.08);
}
.savings-block:last-child { border-bottom: none; padding-bottom: 8px; }
@media (min-width: 900px) {
  .savings-block { grid-template-columns: 1fr 1fr; gap: 56px; }
  .savings-block.reverse { direction: rtl; }
  .savings-block.reverse > * { direction: ltr; }
}
.savings-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.76rem;
  color: var(--orange-400);
  background: rgba(242, 116, 31, 0.12);
  border: 1px solid rgba(242, 116, 31, 0.3);
  padding: 4px 11px;
  border-radius: 999px;
  margin-bottom: 14px;
  letter-spacing: 0.04em;
}
.savings-copy p { color: var(--text-mid); font-size: 0.96rem; margin: 14px 0 0; }
.savings-visual {
  background: var(--navy-800);
  border: 1px solid rgba(205, 211, 219, 0.1);
  border-radius: var(--radius);
  padding: 30px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}

/* Before/after compare (channel dedup) */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  width: 100%;
}
@media (min-width: 480px) { .compare-grid { grid-template-columns: 1fr auto 1fr; align-items: center; } }
.compare-panel { border-radius: var(--radius-sm); padding: 18px; border: 1px solid; }
.compare-panel.before { border-color: rgba(239, 68, 68, 0.3); background: rgba(239, 68, 68, 0.04); }
.compare-panel.after { border-color: rgba(242, 116, 31, 0.4); background: rgba(242, 116, 31, 0.06); }
.compare-panel.neutral { border-color: rgba(205, 211, 219, 0.22); background: rgba(255, 255, 255, 0.015); }
.compare-label {
  font-size: 0.72rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.06em; margin-bottom: 10px; display: block;
}
.compare-panel.before .compare-label { color: #f87171; }
.compare-panel.after .compare-label { color: var(--orange-400); }
.compare-panel.neutral .compare-label { color: var(--text-low); }
.compare-panel.neutral .compare-chip {
  color: var(--text-mid); background: rgba(255, 255, 255, 0.03); text-decoration: none;
}
.compare-panel.neutral .compare-chip svg { color: var(--text-low); }
.compare-chip.stack { margin-bottom: 8px; font-size: 0.85rem; font-weight: 600; }
.compare-panel.after .compare-chip.stack svg { color: var(--orange-400); }
.compare-chip {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 10px; border-radius: 8px; font-size: 0.82rem; margin-bottom: 6px;
}
.compare-panel.before .compare-chip { color: var(--text-low); background: rgba(255, 255, 255, 0.02); text-decoration: line-through; }
.compare-panel.before .compare-chip svg { width: 14px; height: 14px; color: #f87171; flex: none; }
.compare-panel.after .compare-chip { color: var(--text-hi); background: rgba(242, 116, 31, 0.12); font-weight: 700; font-size: 0.98rem; text-decoration: none; margin-bottom: 0; }
.compare-panel.after .compare-chip svg { width: 17px; height: 17px; color: var(--orange-400); flex: none; }
.compare-arrow { display: flex; align-items: center; justify-content: center; color: var(--orange-500); }
.compare-arrow svg { width: 22px; height: 22px; transform: rotate(90deg); }
@media (min-width: 480px) { .compare-arrow svg { transform: none; } }
.compare-note { font-size: 0.74rem; color: var(--text-low); margin-top: 12px; text-align: center; }

/* Failover chain (freeze / black-screen detection) */
.failover-chain { display: flex; flex-direction: column; align-items: center; gap: 16px; width: 100%; }
.failover-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: center; }
.failover-node {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px; border: 1px solid;
  font-size: 0.85rem; font-weight: 700;
}
.failover-node.down { border-color: rgba(239, 68, 68, 0.35); background: rgba(239, 68, 68, 0.08); color: #f87171; }
.failover-node.up { border-color: rgba(52, 199, 123, 0.4); background: rgba(52, 199, 123, 0.1); color: #4fd695; }
.failover-node svg { width: 16px; height: 16px; flex: none; }
.failover-arrow { color: var(--text-low); }
.failover-arrow svg { width: 18px; height: 18px; }
.detect-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.detect-chip {
  display: flex; align-items: center; gap: 7px;
  padding: 7px 13px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(205, 211, 219, 0.15);
  color: var(--text-mid); font-size: 0.78rem; font-weight: 600;
}
.detect-chip svg { width: 14px; height: 14px; color: var(--orange-400); flex: none; }

/* "Watching now" UI mock */
.watching-row { display: flex; gap: 12px; overflow-x: auto; padding: 4px 2px; width: 100%; }
.watching-thumb {
  flex: none; width: 122px; aspect-ratio: 2 / 3;
  border-radius: 12px; overflow: hidden;
  background: linear-gradient(155deg, var(--navy-600), var(--navy-900));
  border: 1px solid rgba(205, 211, 219, 0.12);
  position: relative;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.watching-thumb svg.play-ico { width: 24px; height: 24px; color: rgba(255, 255, 255, 0.45); }
.watching-thumb-label { font-size: 0.66rem; color: var(--text-low); text-align: center; padding: 0 8px; }
.watching-badge {
  position: absolute; top: 8px; left: 8px;
  display: flex; align-items: center; gap: 4px;
  background: rgba(4, 11, 22, 0.78); backdrop-filter: blur(4px);
  padding: 3px 8px; border-radius: 999px;
  font-size: 0.64rem; font-weight: 700; color: var(--text-hi);
}
.watching-badge svg { width: 11px; height: 11px; color: var(--orange-400); flex: none; }
.watching-live {
  position: absolute; top: 8px; right: 8px;
  display: flex; align-items: center; gap: 4px;
  font-size: 0.6rem; font-weight: 800; color: #fff;
  background: #ef4444; padding: 2px 7px; border-radius: 999px; letter-spacing: 0.03em;
}

/* ---------- Stat banner (savings headline) ---------- */
.stat-banner {
  margin: 8px 0 52px;
  background: linear-gradient(135deg, rgba(242, 116, 31, 0.14), rgba(242, 116, 31, 0.02));
  border: 1px solid rgba(242, 116, 31, 0.32);
  border-radius: var(--radius);
  padding: 40px 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: center;
  text-align: center;
}
@media (min-width: 780px) {
  .stat-banner { grid-template-columns: auto 1fr; text-align: left; padding: 46px 48px; gap: 44px; }
}
.stat-banner-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.2rem, 9vw, 4.6rem);
  color: var(--orange-400);
  line-height: 1;
  white-space: nowrap;
}
.stat-banner-num small {
  display: block;
  font-size: 0.24em;
  color: var(--text-hi);
  font-weight: 700;
  margin-top: 8px;
  letter-spacing: -0.01em;
}
.stat-compare {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
  justify-content: center;
  align-items: center;
}
@media (min-width: 780px) { .stat-compare { justify-content: flex-start; } }
.stat-compare-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--navy-900);
  border: 1px solid rgba(205, 211, 219, 0.15);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
}
.stat-compare-item .num { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--text-hi); }
.stat-compare-item.win .num { color: var(--orange-400); }
.stat-compare-item .label { font-size: 0.74rem; color: var(--text-low); }
.stat-compare-arrow { display: flex; align-items: center; color: var(--orange-500); }
.stat-compare-arrow svg { width: 20px; height: 20px; }
.stat-banner-note { font-size: 0.78rem; color: var(--text-low); margin: 14px 0 0; }

/* ---------- Consumption report mock ---------- */
.report-peak {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 14px 16px;
  margin-top: 14px;
  background: rgba(242, 116, 31, 0.08);
  border: 1px solid rgba(242, 116, 31, 0.25);
  border-radius: var(--radius-sm);
}
.report-peak .num { font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--orange-400); }
.report-peak .label { font-size: 0.8rem; color: var(--text-mid); }

/* ---------- Included-in-every-plan grid ---------- */
.included-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 36px 0 4px;
}
@media (min-width: 640px) { .included-grid { grid-template-columns: 1fr 1fr; } }
.included-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--navy-800);
  border: 1px solid rgba(205, 211, 219, 0.1);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}
.included-item .ico-wrap {
  width: 38px; height: 38px; flex: none; border-radius: 10px;
  background: linear-gradient(135deg, rgba(242, 116, 31, 0.18), rgba(242, 116, 31, 0.05));
  border: 1px solid rgba(242, 116, 31, 0.22);
  display: flex; align-items: center; justify-content: center;
}
.included-item .ico-wrap svg { width: 19px; height: 19px; color: var(--orange-400); }
.included-item span.txt { font-size: 0.9rem; font-weight: 600; color: var(--text-hi); }
.included-note { font-size: 0.82rem; color: var(--text-low); margin: 18px 0 0; text-align: center; }

/* ---------- Legal pages ---------- */
.legal a.inline { color: var(--orange-400) !important; }
.legal .note-box {
  background: rgba(242, 116, 31, 0.06) !important;
  border-color: rgba(242, 116, 31, 0.22) !important;
}
