:root {
  --red: #ff444f;
  --red-dark: #d92735;
  --ink: #17171f;
  --muted: #62626d;
  --line: #e7e7ec;
  --soft: #f7f7f9;
  --white: #ffffff;
  --green: #00b86b;
  --gold: #ffb020;
  --shadow: 0 20px 50px rgba(23, 23, 31, 0.12);
}

body.dark-theme {
  --red: #ff4d58;
  --red-dark: #ff6b73;
  --ink: #f7f7fb;
  --muted: #b9bcc8;
  --line: #2b2f3a;
  --soft: #11141c;
  --white: #171a23;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
  background: #0d1017;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

section,
footer {
  scroll-margin-top: 86px;
}

body.menu-open {
  overflow: hidden;
}

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

a,
button,
select,
input,
textarea {
  transition: color 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

a:focus-visible,
button:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(255, 68, 79, 0.28);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(23, 23, 31, 0.04);
  backdrop-filter: blur(16px);
}

body.dark-theme .site-header {
  background: rgba(13, 16, 23, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.26);
}

body.dark-theme .crt-chart-stage,
body.dark-theme .contact-card,
body.dark-theme .watch-row.featured,
body.dark-theme .watchlist-table-head {
  background: var(--soft);
}

body.dark-theme .crt-chart-status {
  background: rgba(23, 26, 35, 0.94);
}

body.dark-theme .price-strip,
body.dark-theme .service-price {
  color: #17171f;
}

body.dark-theme .footer-dark {
  background: #121722;
}

body.dark-theme .footer-badge {
  color: #ffffff;
  background: #25d366;
  border-color: rgba(37, 211, 102, 0.55);
  box-shadow: 0 14px 34px rgba(37, 211, 102, 0.18);
}

body.dark-theme .footer-badge:hover {
  background: #1ebe5d;
}

body.dark-theme .footer-product-card {
  background: #202633;
  border-color: #343b4b;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.26);
}

body.dark-theme .footer-product-card .button.primary,
body.dark-theme .service-button,
body.dark-theme a[href*="wa.me"].button {
  color: #ffffff;
  background: #ff444f;
  border-color: #ff444f;
  box-shadow: 0 14px 34px rgba(255, 68, 79, 0.22);
}

body.dark-theme .footer-product-card .button.primary:hover,
body.dark-theme .service-button:hover,
body.dark-theme a[href*="wa.me"].button:hover {
  background: #ff5d67;
  border-color: #ff5d67;
}

body.dark-theme .footer-col a,
body.dark-theme .footer-bottom {
  color: #d3d7e4;
}

body.dark-theme .footer-col h3,
body.dark-theme .footer-product-card strong {
  color: #ffffff;
}

body.dark-theme .flow-timeline article,
body.dark-theme .product-showcase,
body.dark-theme .product-offer-card,
body.dark-theme .trust-grid article,
body.dark-theme .payment-card,
body.dark-theme .payment-products article {
  background: #171c27;
  border-color: #2d3443;
}

body.dark-theme .payment-section {
  background:
    linear-gradient(135deg, rgba(255, 68, 79, 0.08), rgba(255, 176, 32, 0.04)),
    #11141c;
}

body.dark-theme .payment-detail {
  background: #10141d;
  border-color: #2d3443;
}

body.dark-theme .payment-warning {
  color: #ffdba3;
  background: rgba(255, 176, 32, 0.1);
  border-color: rgba(255, 176, 32, 0.22);
}

body.dark-theme .risk-note {
  color: #ffdba3 !important;
  background: rgba(255, 176, 32, 0.1);
  border: 1px solid rgba(255, 176, 32, 0.22);
}

body.dark-theme.checkout-body {
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 68, 79, 0.16), transparent 28%),
    linear-gradient(180deg, #0d1017, #11141c);
}

body.dark-theme .checkout-header {
  background: rgba(13, 16, 23, 0.9);
}

body.dark-theme .checkout-back {
  color: #f7f7fb;
  background: #151a24;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

body.dark-theme .checkout-card,
body.dark-theme .checkout-confirm,
body.dark-theme .checkout-steps article {
  background: #171c27;
  border-color: #2d3443;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.24);
}

body.dark-theme .checkout-detail {
  background: #10141d;
  border-color: #2d3443;
}

body.dark-theme .checkout-summary {
  border-color: #2d3443;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
}

body.dark-theme .checkout-badges span {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 68, 79, 0.08)),
    rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

body.dark-theme .checkout-hero h1 span,
body.dark-theme .checkout-eyebrow {
  color: #ff6b73;
}

body.dark-theme .checkout-eyebrow::before {
  background: #ff6b73;
}

body.dark-theme .checkout-help {
  background: rgba(255, 68, 79, 0.08);
  border-color: rgba(255, 68, 79, 0.22);
}

body.dark-theme .checkout-note-list {
  background: rgba(255, 68, 79, 0.08);
  border-color: rgba(255, 68, 79, 0.18);
}

body.dark-theme .pending-card {
  background:
    linear-gradient(135deg, rgba(255, 176, 32, 0.07), rgba(255, 68, 79, 0.04)),
    #171c27;
}

body.dark-theme .pending-panel {
  background: #10141d;
  border-color: #2d3443;
}

body.dark-theme .crypto-confirm-panel,
body.dark-theme .crypto-wallet-panel,
body.dark-theme .mpesa-confirm-panel,
body.dark-theme .mpesa-till-panel {
  background:
    linear-gradient(135deg, rgba(255, 176, 32, 0.1), rgba(255, 68, 79, 0.05)),
    #10141d;
  border-color: rgba(255, 176, 32, 0.22);
}

body.dark-theme .crypto-wallet-panel {
  background:
    linear-gradient(135deg, rgba(34, 158, 217, 0.12), rgba(255, 176, 32, 0.05)),
    #10141d;
  border-color: rgba(34, 158, 217, 0.24);
}

body.dark-theme .mpesa-till-panel {
  background:
    linear-gradient(135deg, rgba(0, 184, 124, 0.1), rgba(255, 176, 32, 0.05)),
    #10141d;
  border-color: rgba(0, 184, 124, 0.22);
}

body.dark-theme .crypto-wallet-panel strong,
body.dark-theme .mpesa-till-panel strong {
  color: #ffffff;
  background: #171c27;
  border-color: #2d3443;
}

body.dark-theme .mpesa-product-select {
  color: #ffffff;
  background: #171c27;
  border-color: #2d3443;
}

body.dark-theme .mpesa-selected-copy b {
  color: #ffffff;
}

body.dark-theme .product-showcase {
  background:
    linear-gradient(120deg, rgba(255, 68, 79, 0.16), rgba(23, 28, 39, 0) 46%),
    #171c27;
}

body.dark-theme .free-signal-path {
  background:
    linear-gradient(135deg, rgba(255, 68, 79, 0.08), rgba(255, 176, 32, 0.04)),
    #11141c;
}

body.dark-theme .signal-path-grid article {
  background: #171c27;
  border-color: #2d3443;
}

body.dark-theme .telegram-benefits div {
  background: var(--white);
  border-color: var(--line);
}

body.dark-theme .telegram-benefits span {
  color: #8ab4ff;
}

body.dark-theme .risk-disclaimer {
  color: #ffdba3;
  background: rgba(255, 176, 32, 0.1);
  border-color: rgba(255, 176, 32, 0.24);
}

body.dark-theme .signal-proof-section {
  background:
    linear-gradient(180deg, #0d1017, #11141c);
}

body.dark-theme .proof-highlight,
body.dark-theme .proof-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 68, 79, 0.04)),
    #171c27;
  border-color: #2d3443;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.24);
}

body.dark-theme .proof-highlight strong,
body.dark-theme .proof-card-head strong {
  color: #ffffff;
}

body.dark-theme .proof-pair figure {
  border-color: #2d3443;
  background: #05070b;
}

body.dark-theme .proof-pair figcaption {
  background: rgba(13, 16, 23, 0.82);
  border-color: rgba(255, 255, 255, 0.16);
}

body.dark-theme .product-tags span {
  color: #ff8b92;
  background: rgba(255, 68, 79, 0.13);
  border-color: rgba(255, 68, 79, 0.22);
}

.menu-toggle,
.menu-close {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
}

.menu-toggle {
  gap: 4px;
  width: 42px;
  height: 42px;
  background: var(--white);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 99px;
}

.menu-close {
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: var(--soft);
  font-size: 25px;
  line-height: 1;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  font-size: 13px;
  letter-spacing: 0;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.5vw, 18px);
  flex: 1 1 auto;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.top-nav a {
  padding: 9px 4px;
  white-space: nowrap;
}

.top-nav a:hover {
  color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.header-login {
  color: var(--ink);
  font-size: 13px;
  font-weight: 900;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 9px 16px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 950;
}

.header-cta:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

body.dark-theme .top-nav,
body.dark-theme .header-login {
  color: #d3d7e4;
}

.nav {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 14px;
}

.nav a {
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

.nav a:hover {
  color: var(--ink);
  background: var(--soft);
  border-color: var(--line);
}

.nav-cta {
  color: var(--white) !important;
  background: var(--ink);
}

.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 40;
  width: min(260px, calc(100vw - 42px));
  height: 100vh;
  min-height: 100dvh;
  padding: 18px 16px;
  overflow-y: auto;
  align-content: start;
  background: var(--white) !important;
  border-right: 1px solid var(--line);
  box-shadow: 20px 0 60px rgba(23, 23, 31, 0.18);
  transform: translateX(-105%);
  transition: transform 0.24s ease;
}

.side-menu a {
  display: block;
  width: 100%;
  color: var(--ink);
  background: var(--white);
}

body.dark-theme .side-menu {
  background: #0f131b !important;
  border-right-color: rgba(255, 255, 255, 0.1);
  box-shadow: 20px 0 70px rgba(0, 0, 0, 0.38);
}

body.dark-theme .side-menu a {
  color: #f7f7fb;
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

body.dark-theme .side-menu a:hover {
  color: #ffffff;
  background: rgba(255, 68, 79, 0.14);
  border-color: rgba(255, 68, 79, 0.28);
}

body.dark-theme .menu-toggle,
body.dark-theme .menu-close {
  color: #f7f7fb;
  background: #151a24;
  border-color: rgba(255, 255, 255, 0.12);
}

body.dark-theme .menu-toggle span {
  background: #f7f7fb;
}

.side-menu .nav-cta {
  margin-top: 4px;
  text-align: center;
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-align: left;
}

.theme-toggle span {
  position: relative;
  width: 38px;
  height: 22px;
  flex: 0 0 auto;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 99px;
}

.theme-toggle span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  background: var(--red);
  border-radius: 50%;
  transition: transform 0.2s ease;
}

body.dark-theme .theme-toggle span::after {
  transform: translateX(16px);
}

.header-actions .compact-theme-toggle {
  width: auto;
  min-height: 38px;
  padding: 8px 10px;
  font-size: 12px;
}

.header-actions .compact-theme-toggle span {
  width: 30px;
  height: 18px;
}

.header-actions .compact-theme-toggle span::after {
  top: 2px;
  left: 2px;
  width: 12px;
  height: 12px;
}

body.dark-theme .header-actions .compact-theme-toggle span::after {
  transform: translateX(12px);
}

.side-menu.open {
  transform: translateX(0);
}

.side-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.side-menu-head .brand {
  gap: 0;
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 35;
  display: block;
  background: rgba(23, 23, 31, 0.42);
  backdrop-filter: blur(4px);
}

.menu-backdrop[hidden] {
  display: none !important;
}

.menu-backdrop.open {
  display: block;
}

.hero {
  display: grid;
  place-items: center start;
  min-height: calc(100vh - 72px);
  padding: clamp(42px, 8vw, 90px) clamp(18px, 5vw, 64px);
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 68, 79, 0.09), transparent 26%),
    radial-gradient(circle at 12% 78%, rgba(255, 176, 32, 0.08), transparent 26%),
    linear-gradient(180deg, #fff, #fafafa);
}

body.dark-theme .hero {
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 68, 79, 0.16), transparent 28%),
    radial-gradient(circle at 10% 76%, rgba(255, 176, 32, 0.1), transparent 24%),
    linear-gradient(180deg, #0d1017 0%, #11141c 58%, #0d1017 100%);
}

.hero-copy {
  width: min(900px, 100%);
}

body.dark-theme .hero h1 {
  color: #ffffff;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.35);
}

body.dark-theme .hero-text {
  color: #d5d8e2;
}

body.dark-theme .hero .eyebrow {
  color: #ff6b73;
}

body.dark-theme .hero .button.primary {
  color: #ffffff;
  box-shadow: 0 16px 34px rgba(255, 68, 79, 0.22);
}

body.dark-theme .hero .button.secondary {
  color: #ffffff;
  background: #1d2230;
  border-color: #323746;
}

body.dark-theme .hero .button.secondary:hover {
  background: #252b3a;
}

body.dark-theme .hero .discount {
  color: #ffffff;
}

body.dark-theme .hero .normal {
  color: #aeb2c2;
}

body.dark-theme .hero .tag {
  color: #ffdba3;
  background: rgba(255, 176, 32, 0.14);
  border: 1px solid rgba(255, 176, 32, 0.22);
}

body.dark-theme .tag {
  color: #ffdba3;
  background: rgba(255, 176, 32, 0.14);
}

body.dark-theme .hero .terminal-preview {
  border-color: #343847;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(31px, 5vw, 54px);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 19px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: var(--red);
}

.button.primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.button.secondary:hover {
  border-color: rgba(255, 68, 79, 0.42);
  box-shadow: 0 10px 26px rgba(23, 23, 31, 0.08);
  transform: translateY(-1px);
}

body.dark-theme .button.primary,
body.dark-theme .copy-button,
body.dark-theme .crypto-copy-button,
body.dark-theme .mpesa-copy-button {
  color: #ffffff;
}

body.dark-theme .button.secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.button.deriv-button {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 68, 79, 0.92), rgba(255, 126, 52, 0.88)),
    #ff444f;
  border-color: rgba(255, 68, 79, 0.36);
  box-shadow: 0 16px 38px rgba(255, 68, 79, 0.18);
}

.button.deriv-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 48px rgba(255, 68, 79, 0.24);
}

body.dark-theme .button.deriv-button {
  color: #12151d;
  background: linear-gradient(135deg, #ffffff, #ffe7e9);
  border-color: rgba(255, 255, 255, 0.38);
}

.button.telegram-button {
  color: #ffffff;
  background:
    linear-gradient(135deg, #229ed9, #0b6ea8),
    #229ed9;
  border-color: rgba(34, 158, 217, 0.36);
  box-shadow: 0 16px 38px rgba(34, 158, 217, 0.18);
}

.button.telegram-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 48px rgba(34, 158, 217, 0.25);
}

body.dark-theme .button.telegram-button {
  color: #06121c;
  background: linear-gradient(135deg, #e9f8ff, #9fdcff);
  border-color: rgba(255, 255, 255, 0.34);
}

.deriv-account-note,
.deriv-start-card,
.deriv-mini-card,
.telegram-mini-card {
  border-radius: 8px;
}

.deriv-account-note {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  max-width: 720px;
  margin: 0 0 18px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 68, 79, 0.14);
  box-shadow: 0 14px 40px rgba(23, 23, 31, 0.06);
}

.deriv-account-note span,
.deriv-start-card span {
  color: var(--red);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.deriv-account-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

body.dark-theme .deriv-account-note {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

body.dark-theme .deriv-account-note p {
  color: #d7deec;
}

.price-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.discount {
  font-size: 30px;
  font-weight: 900;
}

.normal {
  color: var(--muted);
  text-decoration: line-through;
}

.normal.no-strike {
  text-decoration: none;
  font-weight: 900;
}

.tag {
  padding: 6px 9px;
  color: #7a4100;
  background: #fff2d6;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
}

.terminal-preview {
  overflow: hidden;
  position: relative;
  min-height: 480px;
  background: #101116;
  border: 1px solid #242631;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.terminal-top {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 16px;
  color: #a9abb5;
  background: #171820;
  border-bottom: 1px solid #2a2d38;
  font-size: 13px;
}

.terminal-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
}

.terminal-top span:nth-child(2) {
  background: var(--gold);
}

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

.terminal-top strong {
  margin-left: auto;
  font-weight: 700;
}

#chartCanvas {
  display: block;
  width: 100%;
  height: 420px;
}

.social-chart-preview {
  min-height: 500px;
}

.avatar-scene {
  position: relative;
  min-height: 438px;
  padding: 28px;
  background:
    radial-gradient(circle at 24% 78%, rgba(255, 221, 0, 0.16), transparent 28%),
    radial-gradient(circle at 84% 22%, rgba(255, 68, 79, 0.14), transparent 26%),
    #101116;
}

.synthetic-screen {
  position: absolute;
  top: 34px;
  right: 28px;
  width: min(560px, calc(100% - 56px));
  height: 300px;
  overflow: hidden;
  background: #0d1017;
  border: 1px solid #303442;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

.chart-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 54px 46px;
}

.chart-path {
  position: absolute;
  inset: 12px 18px;
  width: calc(100% - 36px);
  height: calc(100% - 24px);
  fill: none;
}

.chart-path path {
  fill: none;
  stroke: #00b86b;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 14px rgba(0, 184, 107, 0.25));
}

.fvg-zone {
  position: absolute;
  top: 108px;
  left: 58%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 108px;
  height: 64px;
  color: #ffffff;
  background: rgba(255, 68, 79, 0.2);
  border: 1px solid rgba(255, 68, 79, 0.78);
  font-weight: 950;
}

.chart-candle {
  position: absolute;
  z-index: 3;
  width: 12px;
  border-radius: 2px;
}

.chart-candle::before {
  content: "";
  position: absolute;
  left: 5px;
  top: -18px;
  width: 2px;
  height: calc(100% + 36px);
  background: inherit;
  opacity: 0.75;
}

.chart-candle.green {
  background: #00b86b;
}

.chart-candle.red {
  background: #ff444f;
}

.chart-candle.c1 { left: 12%; top: 150px; height: 42px; }
.chart-candle.c2 { left: 19%; top: 184px; height: 58px; }
.chart-candle.c3 { left: 35%; top: 128px; height: 70px; }
.chart-candle.c4 { left: 43%; top: 88px; height: 62px; }
.chart-candle.c5 { left: 54%; top: 72px; height: 54px; }
.chart-candle.c6 { left: 66%; top: 122px; height: 68px; }
.chart-candle.c7 { left: 80%; top: 92px; height: 76px; }
.chart-candle.c8 { left: 91%; top: 38px; height: 74px; }

.social-avatar {
  position: absolute;
  z-index: 4;
  bottom: 28px;
  width: 126px;
  height: 220px;
}

.male-avatar {
  left: 36px;
}

.female-avatar {
  left: 168px;
  bottom: 22px;
}

.avatar-face {
  position: absolute;
  left: 24px;
  top: 38px;
  z-index: 2;
  width: 78px;
  height: 88px;
  background: #f1b98f;
  border: 3px solid #17171f;
  border-radius: 46% 46% 48% 48%;
}

.female-avatar .avatar-face {
  background: #d99d7b;
}

.avatar-hair {
  position: absolute;
  left: 16px;
  top: 20px;
  z-index: 3;
  width: 94px;
  height: 60px;
  background: #1f2029;
  border-radius: 48px 48px 20px 20px;
}

.male-avatar .avatar-hair::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: -6px;
  width: 34px;
  height: 26px;
  background: #1f2029;
  border-radius: 0 0 24px 24px;
  transform: rotate(-12deg);
}

.female-avatar .avatar-hair {
  left: 8px;
  top: 14px;
  width: 110px;
  height: 118px;
  background: #27170f;
  border-radius: 54px 54px 38px 38px;
}

.eye {
  position: absolute;
  top: 38px;
  width: 8px;
  height: 8px;
  background: #17171f;
  border-radius: 50%;
}

.eye.left {
  left: 24px;
}

.eye.right {
  right: 24px;
}

.smile {
  position: absolute;
  left: 27px;
  top: 58px;
  width: 24px;
  height: 12px;
  border-bottom: 3px solid #17171f;
  border-radius: 0 0 18px 18px;
}

.avatar-body {
  position: absolute;
  left: 8px;
  bottom: 0;
  width: 110px;
  height: 104px;
  background: #ffdd00;
  border: 3px solid #17171f;
  border-radius: 38px 38px 12px 12px;
}

.female-avatar .avatar-body {
  background: #ff444f;
}

.phone {
  position: absolute;
  right: 4px;
  bottom: 42px;
  z-index: 5;
  width: 34px;
  height: 58px;
  background: #11141c;
  border: 3px solid #f7f7fb;
  border-radius: 8px;
  transform: rotate(-9deg);
}

.female-avatar .phone {
  left: 0;
  right: auto;
  transform: rotate(10deg);
}

.phone::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 10px;
  width: 14px;
  height: 20px;
  background: linear-gradient(#00b86b 0 50%, #ff444f 50% 100%);
  border-radius: 3px;
}

.premium-hero-visual {
  min-height: 520px;
  background:
    linear-gradient(135deg, rgba(255, 68, 79, 0.1), rgba(255, 176, 32, 0.06)),
    #101116;
}

.premium-scene {
  position: relative;
  min-height: 458px;
  overflow: hidden;
  background:
    radial-gradient(circle at 22% 20%, rgba(255, 68, 79, 0.26), transparent 26%),
    radial-gradient(circle at 72% 68%, rgba(255, 176, 32, 0.18), transparent 28%),
    linear-gradient(135deg, #141821 0%, #101116 56%, #1b1118 100%);
}

.premium-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(120deg, transparent, #000 18%, #000 82%, transparent);
}

.halo-ring {
  position: absolute;
  left: 42px;
  top: 54px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  animation: heroFloat 6s ease-in-out infinite;
}

.halo-ring::before,
.halo-ring::after {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid rgba(255, 68, 79, 0.28);
  border-radius: 50%;
}

.halo-ring::after {
  inset: 62px;
  border-color: rgba(255, 176, 32, 0.22);
}

.soft-orbit {
  position: absolute;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  filter: blur(1px);
  animation: heroPulse 4.8s ease-in-out infinite;
}

.orbit-one {
  left: 64px;
  bottom: 72px;
  background: rgba(255, 68, 79, 0.18);
}

.orbit-two {
  right: 78px;
  top: 70px;
  background: rgba(255, 176, 32, 0.14);
  animation-delay: 1.4s;
}

.glass-chart {
  position: absolute;
  top: 50px;
  right: 34px;
  z-index: 2;
  width: min(520px, calc(100% - 72px));
  height: 310px;
  overflow: hidden;
  background: rgba(15, 18, 26, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.glass-topline {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  color: #f7f7fb;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.glass-topline span {
  color: #ff858c;
}

.glass-grid {
  position: absolute;
  inset: 48px 0 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 58px 44px;
}

.premium-chart-line {
  position: absolute;
  inset: 50px 20px 18px;
  z-index: 2;
  width: calc(100% - 40px);
  height: calc(100% - 68px);
}

.premium-chart-line path {
  fill: none;
  stroke: url("#premiumLine");
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 760;
  stroke-dashoffset: 760;
  animation: drawPremiumLine 3.4s ease forwards infinite;
}

.premium-fvg {
  position: absolute;
  right: 116px;
  top: 126px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 112px;
  height: 68px;
  color: #ffffff;
  background: rgba(255, 68, 79, 0.2);
  border: 1px solid rgba(255, 68, 79, 0.72);
  border-radius: 8px;
  font-weight: 950;
}

.premium-bars {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 3;
  display: flex;
  align-items: end;
  gap: 10px;
}

.premium-bars span {
  width: 10px;
  background: linear-gradient(#00b86b, #ff444f);
  border-radius: 999px;
  opacity: 0.85;
  animation: barLift 1.8s ease-in-out infinite;
}

.premium-bars span:nth-child(1) { height: 38px; }
.premium-bars span:nth-child(2) { height: 58px; animation-delay: 0.12s; }
.premium-bars span:nth-child(3) { height: 44px; animation-delay: 0.24s; }
.premium-bars span:nth-child(4) { height: 72px; animation-delay: 0.36s; }
.premium-bars span:nth-child(5) { height: 54px; animation-delay: 0.48s; }
.premium-bars span:nth-child(6) { height: 86px; animation-delay: 0.6s; }

.feminine-figure {
  position: absolute;
  left: 56px;
  bottom: 0;
  z-index: 4;
  width: 230px;
  height: 330px;
  animation: heroFloat 5.8s ease-in-out infinite;
}

.figure-hair {
  position: absolute;
  left: 54px;
  top: 8px;
  width: 124px;
  height: 168px;
  background: linear-gradient(145deg, #211016, #4d1e2a 70%, #6d2734);
  border-radius: 70px 70px 54px 54px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.figure-face {
  position: absolute;
  left: 74px;
  top: 38px;
  width: 82px;
  height: 96px;
  background: linear-gradient(145deg, #f0b693, #d58d75);
  border-radius: 45% 45% 48% 48%;
}

.figure-face::before,
.figure-face::after {
  content: "";
  position: absolute;
  top: 42px;
  width: 8px;
  height: 8px;
  background: #25151a;
  border-radius: 50%;
}

.figure-face::before {
  left: 24px;
}

.figure-face::after {
  right: 24px;
}

.figure-neck {
  position: absolute;
  left: 100px;
  top: 124px;
  width: 32px;
  height: 42px;
  background: #d58d75;
}

.figure-body {
  position: absolute;
  left: 38px;
  top: 154px;
  width: 154px;
  height: 146px;
  background: linear-gradient(135deg, #ff444f, #8d253b);
  border-radius: 72px 72px 18px 18px;
  box-shadow: 0 20px 50px rgba(255, 68, 79, 0.22);
}

.figure-laptop {
  position: absolute;
  left: 18px;
  bottom: 22px;
  width: 196px;
  height: 92px;
  background: linear-gradient(145deg, #f7f7fb, #d7dae4);
  border-radius: 12px 12px 6px 6px;
  transform: perspective(300px) rotateX(8deg);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.figure-laptop span {
  position: absolute;
  inset: 18px 48px 32px;
  background:
    linear-gradient(90deg, #ff444f 0 44%, #ffb020 44% 60%, #00b86b 60%);
  border-radius: 999px;
}

.edge-hero-visual {
  min-height: 520px;
  background:
    linear-gradient(135deg, rgba(255, 68, 79, 0.08), rgba(255, 176, 32, 0.06)),
    #101116;
}

.edge-scene {
  position: relative;
  min-height: 458px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 68, 79, 0.2), transparent 27%),
    radial-gradient(circle at 76% 72%, rgba(0, 184, 107, 0.14), transparent 30%),
    linear-gradient(135deg, #11141c 0%, #101116 54%, #17121a 100%);
}

.edge-scene::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.038) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(120deg, transparent, #000 16%, #000 86%, transparent);
}

.edge-glow {
  position: absolute;
  right: 58px;
  top: 52px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), rgba(255, 68, 79, 0.08) 42%, transparent 70%);
  border-radius: 50%;
  animation: heroPulse 5s ease-in-out infinite;
}

.discipline-card {
  position: absolute;
  left: 28px;
  top: 34px;
  z-index: 4;
  display: grid;
  gap: 7px;
  max-width: 260px;
  padding: 18px;
  color: #ffffff;
  background: rgba(23, 23, 31, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  backdrop-filter: blur(14px);
}

.discipline-card span {
  color: #ff858c;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.discipline-card strong {
  font-size: 22px;
  line-height: 1.05;
}

.discipline-card small {
  color: #cfd1dc;
  line-height: 1.5;
}

.equity-stage {
  position: absolute;
  left: 42px;
  right: 34px;
  bottom: 46px;
  height: 330px;
}

.equity-grid {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    rgba(255, 255, 255, 0.025);
  background-size: 64px 54px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 30px 80px rgba(0, 0, 0, 0.28);
}

.equity-curve {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.curve-shadow {
  fill: none;
  stroke: rgba(255, 255, 255, 0.11);
  stroke-width: 16;
  stroke-linecap: round;
}

.curve-main {
  fill: none;
  stroke: url("#edgeCurve");
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 840;
  stroke-dashoffset: 840;
  animation: drawEdgeCurve 4.4s ease forwards infinite;
  filter: drop-shadow(0 0 18px rgba(255, 68, 79, 0.23));
}

.edge-marker {
  position: absolute;
  z-index: 3;
  padding: 7px 10px;
  color: #ffffff;
  background: rgba(255, 68, 79, 0.16);
  border: 1px solid rgba(255, 68, 79, 0.32);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.marker-one {
  left: 20%;
  bottom: 80px;
}

.marker-two {
  left: 48%;
  bottom: 148px;
}

.marker-three {
  right: 7%;
  top: 52px;
  background: rgba(0, 184, 107, 0.16);
  border-color: rgba(0, 184, 107, 0.32);
}

.dove-mark {
  position: absolute;
  right: 64px;
  top: 44px;
  z-index: 5;
  width: 122px;
  height: 86px;
  animation: doveGlide 5.4s ease-in-out infinite;
}

.dove-body {
  position: absolute;
  left: 48px;
  top: 34px;
  width: 54px;
  height: 30px;
  background: linear-gradient(145deg, #ffffff, #dfe4f0);
  border-radius: 60% 45% 55% 48%;
  box-shadow: 0 16px 35px rgba(255, 255, 255, 0.16);
}

.dove-body::after {
  content: "";
  position: absolute;
  right: -8px;
  top: 6px;
  width: 16px;
  height: 12px;
  background: #ffffff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.wing {
  position: absolute;
  background: linear-gradient(145deg, #ffffff, #eef2fb);
  filter: drop-shadow(0 12px 20px rgba(255, 255, 255, 0.1));
}

.wing-left {
  left: 6px;
  top: 12px;
  width: 70px;
  height: 42px;
  border-radius: 80% 18% 70% 20%;
  transform: rotate(-18deg);
  transform-origin: right bottom;
  animation: wingBeatLeft 1.7s ease-in-out infinite;
}

.wing-right {
  left: 38px;
  top: 6px;
  width: 72px;
  height: 42px;
  border-radius: 18% 80% 20% 70%;
  transform: rotate(18deg);
  transform-origin: left bottom;
  animation: wingBeatRight 1.7s ease-in-out infinite;
}

.dove-tail {
  position: absolute;
  left: 36px;
  top: 54px;
  width: 28px;
  height: 26px;
  background: #f7f7fb;
  clip-path: polygon(0 0, 100% 35%, 18% 100%);
  transform: rotate(10deg);
}

@keyframes drawEdgeCurve {
  0% { stroke-dashoffset: 840; }
  58%, 100% { stroke-dashoffset: 0; }
}

@keyframes doveGlide {
  0%, 100% { transform: translate(0, 0) rotate(-3deg); }
  50% { transform: translate(-16px, -12px) rotate(4deg); }
}

@keyframes wingBeatLeft {
  0%, 100% { transform: rotate(-18deg) scaleY(1); }
  50% { transform: rotate(-34deg) scaleY(1.08); }
}

@keyframes wingBeatRight {
  0%, 100% { transform: rotate(18deg) scaleY(1); }
  50% { transform: rotate(34deg) scaleY(1.08); }
}

@keyframes drawPremiumLine {
  0% { stroke-dashoffset: 760; }
  52%, 100% { stroke-dashoffset: 0; }
}

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

@keyframes heroPulse {
  0%, 100% { opacity: 0.5; transform: scale(0.94); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes barLift {
  0%, 100% { transform: scaleY(0.82); opacity: 0.62; }
  50% { transform: scaleY(1); opacity: 1; }
}

.signal-card {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(360px, calc(100% - 36px));
  padding: 16px;
  color: var(--white);
  background: rgba(23, 23, 31, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.signal-card div {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
}

.signal-card p {
  margin: 0;
  color: #d9dbe4;
  font-size: 14px;
  line-height: 1.45;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(0, 184, 107, 0.18);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-band div {
  padding: 26px clamp(18px, 5vw, 64px);
  border-right: 1px solid var(--line);
}

.trust-band div:last-child {
  border-right: 0;
}

.trust-band strong {
  display: block;
  margin-bottom: 6px;
  font-size: 26px;
}

.trust-band span {
  color: var(--muted);
}

.pathway-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 64px);
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 18px 46px rgba(23, 23, 31, 0.08);
}

.pathway-strip a {
  display: grid;
  gap: 5px;
  min-height: 116px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.72)),
    var(--white);
}

.pathway-strip span {
  color: var(--red);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.pathway-strip strong {
  color: var(--ink);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.12;
}

.pathway-strip small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.pathway-strip a:hover {
  position: relative;
  z-index: 1;
  background:
    linear-gradient(145deg, rgba(255, 176, 32, 0.14), rgba(255, 68, 79, 0.08)),
    var(--white);
  box-shadow: inset 0 0 0 1px rgba(255, 176, 32, 0.38);
  transform: translateY(-1px);
}

body.dark-theme .pathway-strip {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
}

body.dark-theme .pathway-strip a {
  background:
    linear-gradient(145deg, rgba(29, 34, 46, 0.94), rgba(19, 23, 32, 0.9)),
    var(--white);
}

body.dark-theme .pathway-strip a:hover {
  background:
    linear-gradient(145deg, rgba(255, 176, 32, 0.13), rgba(255, 68, 79, 0.1)),
    var(--white);
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 5vw, 64px);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 34px;
}

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

.feature-grid article,
.guide-card,
.pricing-panel {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-story {
  background: var(--soft);
}

.flow-timeline {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.flow-timeline article {
  position: relative;
  min-height: 230px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 32px rgba(23, 23, 31, 0.06);
}

.flow-timeline article::after {
  content: "";
  position: absolute;
  top: 38px;
  right: -12px;
  width: 12px;
  height: 2px;
  background: var(--red);
}

.flow-timeline article:last-child::after {
  display: none;
}

.flow-timeline span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 950;
}

.flow-timeline p {
  color: var(--muted);
  line-height: 1.65;
}

.free-signal-path {
  background:
    linear-gradient(135deg, rgba(255, 68, 79, 0.05), rgba(255, 176, 32, 0.04)),
    var(--soft);
}

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

.signal-path-grid article {
  min-height: 245px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(23, 23, 31, 0.06);
}

.signal-path-grid span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 950;
}

.signal-path-grid p {
  color: var(--muted);
  line-height: 1.65;
}

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

.deriv-start-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 244, 245, 0.86)),
    var(--white);
  border: 1px solid rgba(255, 68, 79, 0.18);
  box-shadow: 0 18px 46px rgba(23, 23, 31, 0.07);
}

.deriv-start-card strong {
  display: block;
  margin-top: 5px;
  font-size: clamp(20px, 2vw, 28px);
}

.deriv-start-card p {
  max-width: 720px;
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

body.dark-theme .deriv-start-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 68, 79, 0.08)),
    rgba(18, 23, 32, 0.82);
  border-color: rgba(255, 255, 255, 0.12);
}

body.dark-theme .deriv-start-card p {
  color: #d7deec;
}

.risk-disclaimer {
  margin: 20px 0 0;
  padding: 14px 16px;
  color: #7b4a00;
  background: rgba(255, 176, 32, 0.14);
  border: 1px solid rgba(255, 176, 32, 0.32);
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.6;
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 18px;
  margin-bottom: 18px;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(120deg, rgba(255, 68, 79, 0.08), rgba(255, 255, 255, 0) 44%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-showcase h3 {
  max-width: 720px;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.04;
}

.product-showcase p {
  max-width: 740px;
  color: var(--muted);
  line-height: 1.7;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.product-tags span {
  padding: 8px 10px;
  color: var(--red);
  background: rgba(255, 68, 79, 0.08);
  border: 1px solid rgba(255, 68, 79, 0.16);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-offer-card {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 22px;
  color: var(--ink);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-offer-card strong {
  font-size: clamp(46px, 7vw, 72px);
  line-height: 0.9;
}

.product-offer-card small {
  margin-bottom: 8px;
  color: var(--muted);
  font-weight: 800;
  text-decoration: line-through;
}

.offer-note {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.feature-grid article {
  min-height: 190px;
}

.feature-grid article:hover,
.guide-card:hover,
.diagram-card:hover,
.journal-chart-card:hover,
.trust-grid article:hover,
.flow-timeline article:hover {
  border-color: rgba(255, 68, 79, 0.22);
  transform: translateY(-2px);
}

.feature-grid p,
.split p,
.guide-card p,
.guide-card li {
  color: var(--muted);
  line-height: 1.7;
}

.notes-section {
  background: var(--white);
}

.notes-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}

.notes-layout img {
  display: block;
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.notes-layout .check-list {
  padding-left: 22px;
}

.strategy-illustrations {
  background: var(--white);
}

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

.diagram-card {
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(23, 23, 31, 0.06);
}

.diagram-image-card {
  padding: 0;
  overflow: hidden;
  background: transparent;
}

.strategy-diagram-image {
  display: block;
  width: 100%;
  height: auto;
}

.diagram-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.bias-pill {
  display: inline-flex;
  justify-self: start;
  padding: 7px 10px;
  color: var(--white);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.bias-pill.buy {
  background: var(--green);
}

.bias-pill.sell {
  background: var(--red);
}

.strategy-svg {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
  background: #101116;
}

.handoff-diagram {
  background: #fbfaf6;
  border: 1px solid rgba(23, 23, 31, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.diagram-card p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.service-grid article {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.market-watch {
  background: var(--soft);
}

.market-watch-layout {
  display: grid;
  grid-template-columns: minmax(520px, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: start;
}

.watchlist-panel {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.market-focus-panel {
  position: sticky;
  top: 96px;
  padding: clamp(24px, 4vw, 34px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.market-focus-panel h3 {
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.05;
}

.market-focus-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.focus-list {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.focus-list div {
  padding: 15px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.focus-list strong {
  display: block;
  margin-bottom: 5px;
}

.focus-list span {
  color: var(--muted);
  line-height: 1.55;
}

.chart-mentor-note {
  display: grid;
  gap: 10px;
  margin-top: 16px;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(255, 68, 79, 0.08), rgba(255, 176, 32, 0.08)),
    var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.chart-mentor-note strong {
  color: var(--ink);
  font-size: 15px;
}

.chart-mentor-note span {
  color: var(--muted);
  line-height: 1.55;
}

.chart-mentor-note a {
  justify-self: start;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
}

.crt-chart-section {
  background: var(--white);
}

.crt-chart-layout {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) minmax(320px, 0.55fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: start;
}

.crt-chart-card,
.crt-chart-guide {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.crt-chart-card {
  position: sticky;
  top: 96px;
  overflow: hidden;
}

.crt-chart-card.expanded {
  position: fixed;
  inset: 16px;
  z-index: 60;
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--white);
}

.crt-chart-card.expanded .crt-chart-stage {
  min-height: 0;
  height: 100%;
}

.crt-chart-card.expanded #crtChartCanvas {
  height: 100%;
}

body.chart-expanded {
  overflow: hidden;
}

body.chart-expanded::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 55;
  background: rgba(23, 23, 31, 0.55);
  backdrop-filter: blur(5px);
}

.crt-chart-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 10px;
  padding: 14px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.crt-chart-toolbar label {
  display: grid;
  gap: 6px;
}

.crt-chart-toolbar label span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.crt-chart-toolbar select {
  min-height: 40px;
  min-width: 190px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
}

.crt-chart-toolbar .button {
  min-height: 40px;
  padding: 10px 13px;
  font-size: 13px;
}

.crt-floating-tools {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  padding: 5px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.58)),
    rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(22, 24, 34, 0.12);
  border-radius: 8px;
  box-shadow: 0 10px 26px rgba(18, 21, 31, 0.1);
  backdrop-filter: blur(14px);
}

body.dark-theme .crt-floating-tools {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 68, 79, 0.06)),
    rgba(17, 20, 28, 0.84);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.32);
}

.crt-zoom-button,
.crt-zoom-fit {
  display: inline-grid;
  place-items: center;
  min-height: 31px;
  padding: 0 9px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 950;
}

.crt-zoom-button {
  width: 32px;
  padding: 0;
  font-size: 14px;
  line-height: 1;
}

body.dark-theme .crt-zoom-button,
body.dark-theme .crt-zoom-fit {
  color: #f7f7fb;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.crt-zoom-button:hover,
.crt-zoom-fit:hover {
  color: #ffffff;
  background: var(--red);
  border-color: var(--red);
}

.crt-chart-stage {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--white);
  touch-action: none;
  cursor: grab;
}

#crtChartCanvas {
  display: block;
  width: 100%;
  height: 560px;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

#crtChartCanvas.dragging {
  cursor: grabbing;
}

.crt-chart-status {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 8px 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.crt-chart-guide {
  position: sticky;
  top: 96px;
  padding: clamp(22px, 4vw, 32px);
}

.crt-chart-guide h3 {
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.05;
}

.crt-chart-guide p {
  color: var(--muted);
  line-height: 1.7;
}

.deriv-mini-card {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(255, 68, 79, 0.08), rgba(255, 176, 32, 0.08)),
    rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 68, 79, 0.16);
  border-radius: 8px;
}

.deriv-mini-card strong {
  color: var(--ink);
  font-size: 15px;
}

.deriv-mini-card span {
  color: var(--muted);
  line-height: 1.55;
}

.deriv-mini-card a {
  color: var(--red);
  font-weight: 950;
}

body.dark-theme .deriv-mini-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

body.dark-theme .deriv-mini-card strong {
  color: #ffffff;
}

body.dark-theme .deriv-mini-card span {
  color: #d7deec;
}

.telegram-mini-card {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding: 14px;
  background:
    linear-gradient(135deg, rgba(34, 158, 217, 0.12), rgba(255, 255, 255, 0.74)),
    rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(34, 158, 217, 0.2);
  border-radius: 8px;
}

.telegram-mini-card strong {
  color: var(--ink);
  font-size: 15px;
}

.telegram-mini-card span {
  color: var(--muted);
  line-height: 1.55;
}

.telegram-mini-card a {
  color: #0b6ea8;
  font-weight: 950;
}

body.dark-theme .telegram-mini-card {
  background: rgba(34, 158, 217, 0.1);
  border-color: rgba(159, 220, 255, 0.22);
}

body.dark-theme .telegram-mini-card strong {
  color: #ffffff;
}

body.dark-theme .telegram-mini-card span {
  color: #d7deec;
}

.telegram-channel-section {
  background:
    linear-gradient(180deg, var(--white), rgba(34, 158, 217, 0.06)),
    var(--soft);
}

.telegram-channel-card {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(18px, 4vw, 36px);
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 44px);
  background:
    radial-gradient(circle at 12% 10%, rgba(34, 158, 217, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 249, 249, 0.9)),
    var(--white);
  border: 1px solid rgba(34, 158, 217, 0.16);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.telegram-channel-copy h2 {
  max-width: 760px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 0.98;
}

.telegram-channel-copy p {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.72;
}

.telegram-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.telegram-benefits {
  display: grid;
  gap: 12px;
  align-content: center;
}

.telegram-benefits div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(34, 158, 217, 0.16);
  border-radius: 10px;
}

.telegram-benefits span {
  display: inline-flex;
  margin-bottom: 8px;
  color: #0b6ea8;
  font-size: 12px;
  font-weight: 950;
}

.telegram-benefits strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
}

.telegram-benefits p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

body.dark-theme .telegram-channel-section {
  background: var(--soft);
}

body.dark-theme .telegram-channel-card {
  background:
    radial-gradient(circle at 12% 10%, rgba(34, 158, 217, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(34, 158, 217, 0.06)),
    var(--white);
  border-color: rgba(159, 220, 255, 0.18);
}

body.dark-theme .telegram-benefits div {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

body.dark-theme .telegram-benefits span {
  color: #9fdcff;
}

body.dark-theme .telegram-channel-copy p,
body.dark-theme .telegram-benefits p {
  color: var(--muted);
}

.footer-deriv-button {
  margin-top: 10px;
}

.signal-proof-section {
  background:
    linear-gradient(180deg, var(--white), var(--soft));
}

.proof-highlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto 24px;
  padding: clamp(18px, 3vw, 26px);
  background:
    linear-gradient(135deg, rgba(255, 68, 79, 0.08), rgba(255, 176, 32, 0.08)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.proof-highlight span,
.proof-card-head span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.proof-highlight strong {
  display: block;
  color: var(--ink);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.08;
}

.proof-highlight p {
  max-width: 720px;
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.proof-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.4vw, 24px);
  max-width: 1180px;
  margin: 0 auto;
}

.proof-card {
  display: grid;
  gap: 16px;
  padding: clamp(16px, 2vw, 22px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.proof-card-head {
  display: grid;
  gap: 2px;
}

.proof-card-head strong {
  color: var(--ink);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.18;
}

.proof-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.proof-pair figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #050505;
  border: 1px solid var(--line);
  border-radius: 9px;
}

.proof-pair img {
  display: block;
  width: 100%;
  height: min(54vw, 520px);
  min-height: 360px;
  object-fit: cover;
  object-position: top center;
}

.proof-pair figcaption {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  padding: 8px 10px;
  color: #ffffff;
  background: rgba(10, 12, 18, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.signal-proof-section .risk-disclaimer {
  max-width: 1180px;
  margin: 18px auto 0;
}

.reviews-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 68, 79, 0.07), transparent 30%),
    linear-gradient(180deg, var(--white), var(--soft));
}

.reviews-hero {
  display: grid;
  justify-items: center;
  max-width: 760px;
  margin: 0 auto 18px;
  text-align: center;
}

.review-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  padding: 7px 12px;
  color: var(--red);
  background: rgba(255, 176, 32, 0.16);
  border: 1px solid rgba(255, 176, 32, 0.34);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
}

.review-kicker::before {
  content: "\2713";
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  color: #17171f;
  background: var(--gold);
  border-radius: 50%;
}

.reviews-hero h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.05;
  letter-spacing: 0;
}

.reviews-hero h2::after {
  content: ".";
  color: var(--gold);
}

.reviews-hero p {
  max-width: 620px;
  margin: 10px auto 0;
  color: var(--muted);
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.55;
}

.review-score {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(23, 23, 31, 0.07);
  backdrop-filter: blur(16px);
}

.review-score span,
.review-stars {
  color: var(--gold);
  letter-spacing: 2px;
}

.review-score strong {
  color: var(--ink);
  font-size: 15px;
}

.review-score small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.review-card,
.review-form {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.46)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.review-card {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: clamp(18px, 2.5vw, 24px);
}

.review-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--red), #17171f);
  border-radius: 50%;
  font-weight: 1000;
  box-shadow: 0 14px 26px rgba(255, 68, 79, 0.22);
}

.review-card-head strong {
  color: var(--ink);
  font-size: 17px;
}

.review-card-head p {
  margin: 3px 0 0;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.review-tag {
  justify-self: start;
  padding: 7px 10px;
  color: #17171f;
  background: rgba(255, 176, 32, 0.18);
  border: 1px solid rgba(255, 176, 32, 0.34);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 1000;
}

.review-submit-area {
  display: grid;
  justify-items: center;
  gap: 16px;
  max-width: 1180px;
  margin: 24px auto 0;
}

.review-toggle-button {
  min-height: 48px;
  padding-inline: 22px;
  color: #17171f;
  background:
    linear-gradient(135deg, #ffd874, var(--gold));
  border: 1px solid rgba(255, 176, 32, 0.62);
  box-shadow: 0 16px 36px rgba(255, 176, 32, 0.24);
}

.review-toggle-button:hover {
  color: #17171f;
  background:
    linear-gradient(135deg, #ffe6a2, #ffc247);
  transform: translateY(-2px);
}

.review-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 820px);
  padding: clamp(16px, 2vw, 20px);
  border: 1px solid rgba(255, 176, 32, 0.28);
  border-radius: 12px;
}

.review-form[hidden] {
  display: none;
}

.review-form label {
  display: grid;
  gap: 7px;
}

.review-form span {
  color: var(--red);
  font-size: 12px;
  font-weight: 1000;
  text-transform: uppercase;
}

.review-form input,
.review-form select,
.review-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 9px;
  font: inherit;
}

.review-message-field,
.review-form .button,
.review-form-status {
  grid-column: 1 / -1;
}

.review-form-status {
  display: none;
  margin: 0;
  padding: 12px 14px;
  color: #097647;
  background: rgba(0, 184, 107, 0.1);
  border: 1px solid rgba(0, 184, 107, 0.22);
  border-radius: 9px;
  font-weight: 900;
}

.review-form-status.visible {
  display: block;
}

body.dark-theme .review-score,
body.dark-theme .review-card,
body.dark-theme .review-form {
  background:
    linear-gradient(145deg, rgba(30, 35, 48, 0.82), rgba(23, 26, 35, 0.68)),
    var(--white);
  border-color: rgba(255, 255, 255, 0.09);
}

body.dark-theme .review-kicker,
body.dark-theme .review-tag {
  color: #ffe0a3;
}

.journal-section {
  background: var(--soft);
}

.journal-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.75fr) minmax(480px, 1fr);
  gap: clamp(18px, 4vw, 34px);
  align-items: start;
}

.journal-layout > * {
  min-width: 0;
}

.journal-form,
.journal-table-card {
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.journal-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.journal-form h2 {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

.journal-intro {
  grid-column: 1 / -1;
  margin-bottom: 6px;
  color: var(--muted);
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.journal-form label {
  display: grid;
  gap: 7px;
}

.journal-form span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.journal-form input,
.journal-form select,
.journal-form textarea {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.journal-notes,
.journal-actions {
  grid-column: 1 / -1;
}

.journal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.journal-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.journal-summary div {
  padding: 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.journal-summary strong {
  display: block;
  font-size: 28px;
}

.journal-summary span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.journal-performance {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.journal-chart-card {
  min-height: 250px;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 68, 79, 0.06), rgba(255, 255, 255, 0) 55%),
    var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.journal-chart-card.wide {
  grid-column: 1 / -1;
}

.journal-chart-card > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.journal-chart-card span {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.journal-chart-card strong {
  color: var(--ink);
  font-size: 15px;
}

.journal-chart-card canvas {
  display: block;
  width: 100%;
  height: 180px;
}

.journal-table-wrap {
  overflow-x: auto;
  max-width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--red) transparent;
}

.journal-table-wrap::before {
  content: "Swipe table sideways to view all trade details";
  display: none;
  position: sticky;
  left: 0;
  padding: 10px 12px;
  color: var(--muted);
  background: var(--soft);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 800;
}

.journal-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1080px;
}

.journal-table th,
.journal-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 14px;
  white-space: nowrap;
}

.journal-table th {
  color: var(--red);
  font-size: 12px;
  text-transform: uppercase;
}

.journal-table td {
  color: var(--muted);
}

.journal-edit-button {
  min-height: 32px;
  padding: 6px 10px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
}

.watchlist-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  color: var(--muted);
  background: linear-gradient(90deg, rgba(255, 68, 79, 0.07), rgba(255, 255, 255, 0));
  border-bottom: 1px solid var(--line);
}

.watchlist-toolbar span {
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.watchlist-toolbar strong {
  color: var(--ink);
  font-size: 14px;
}

.watchlist-table-head {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(90px, auto) minmax(70px, auto) minmax(70px, auto);
  gap: 10px;
  padding: 10px 16px;
  color: var(--muted);
  background: var(--soft);
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.watchlist-group {
  border-bottom: 1px solid var(--line);
}

.watchlist-group:last-child {
  border-bottom: 0;
}

.watchlist-group button {
  width: 100%;
  padding: 10px 14px;
  color: var(--red);
  background: var(--white);
  border: 0;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  text-align: left;
  text-transform: uppercase;
}

.watch-row {
  display: grid;
  grid-template-columns: 20px minmax(190px, 1fr) minmax(90px, auto) minmax(74px, auto) minmax(70px, auto);
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 8px 14px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

.watch-row.active {
  background:
    linear-gradient(90deg, rgba(255, 68, 79, 0.08), rgba(255, 68, 79, 0.02)),
    var(--white);
  box-shadow: inset 3px 0 0 var(--red);
}

.watch-row strong {
  color: var(--ink);
  font-size: 14px;
}

.watch-row span {
  white-space: nowrap;
}

.watch-row .up {
  color: #00a86b;
}

.watch-row .down {
  color: var(--red);
}

.muted-row {
  display: block;
  color: var(--muted);
  background: var(--soft);
}

.asset-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.asset-dot.red {
  background: #ff444f;
}

.asset-dot.orange {
  background: #ff9f2d;
}

.asset-dot.blue {
  background: #4d8dff;
}

.asset-dot.green {
  background: #00b86b;
}

.asset-dot.violet {
  background: #8b5cf6;
}

.service-price {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 18px;
  padding: 8px 11px;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.service-button {
  align-self: flex-start;
  margin-top: 14px;
  min-height: 42px;
  color: var(--white);
  background: var(--red);
}

.service-button:hover {
  background: var(--red-dark);
}

.trust-section {
  background: var(--soft);
}

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

.trust-grid article {
  min-height: 190px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(23, 23, 31, 0.05);
}

.trust-grid article::before {
  content: "";
  display: block;
  width: 34px;
  height: 4px;
  margin-bottom: 18px;
  background: var(--red);
  border-radius: 99px;
}

.trust-grid p {
  color: var(--muted);
  line-height: 1.7;
}

.mentor-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mentor-list li {
  min-height: 62px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 800;
}

.mobile-bottom-nav {
  display: none;
}

.contact {
  background: var(--soft);
}

.social-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding: 14px 18px;
  background: #17171f;
  border-radius: 8px;
}

.social-strip a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #c7c9d4;
}

.social-strip svg {
  width: 34px;
  height: 34px;
  overflow: visible;
}

.social-strip path,
.social-strip circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-strip text {
  fill: currentColor;
  font-size: 18px;
  font-weight: 900;
  text-anchor: middle;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.social-strip a:hover {
  color: var(--white);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  background: var(--soft);
}

.steps {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 70px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.steps span {
  display: grid;
  flex: 0 0 42px;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  font-size: 13px;
}

.pricing {
  background: var(--soft);
  color: var(--ink);
}

.pricing .eyebrow {
  color: var(--red);
}

.pricing-panel {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 24px;
  color: var(--ink);
}

.price-label {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.big-price {
  margin: 6px 0;
  font-size: clamp(48px, 7vw, 82px);
  font-weight: 950;
  line-height: 1;
}

.check-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9;
}

.payment-section {
  background:
    linear-gradient(135deg, rgba(255, 68, 79, 0.06), rgba(255, 176, 32, 0.04)),
    var(--soft);
}

.payment-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

.payment-card,
.payment-products article {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(23, 23, 31, 0.06);
}

.payment-card {
  display: grid;
  gap: 14px;
}

.payment-card h3,
.payment-products h3 {
  margin: 0;
}

.payment-card p,
.payment-products p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.payment-label,
.payment-products span {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0;
}

.payment-detail {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.payment-detail span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.payment-detail strong {
  grid-column: 1 / -1;
  overflow-wrap: anywhere;
  font-size: clamp(17px, 2.2vw, 22px);
}

.payment-detail .copy-button {
  grid-column: 2;
  grid-row: 1 / span 2;
}

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

.payment-products article {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.payment-products strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.1;
}

.payment-products .button {
  margin-top: auto;
  min-height: 42px;
  padding: 10px 12px;
  font-size: 13px;
}

.payment-warning {
  margin: 18px 0 0;
  padding: 14px 16px;
  color: #7b4a00;
  background: rgba(255, 176, 32, 0.14);
  border: 1px solid rgba(255, 176, 32, 0.32);
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.6;
}

.checkout-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 68, 79, 0.09), transparent 28%),
    linear-gradient(180deg, var(--white), var(--soft));
}

.checkout-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 18px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.checkout-header > .button,
.checkout-header > .checkout-back {
  margin-left: auto;
}

.checkout-back {
  display: grid;
  place-items: center;
  min-width: 64px;
  height: 42px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(23, 23, 31, 0.06);
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
  text-decoration: none;
}

.checkout-back:hover {
  color: #ffffff;
  background: var(--red);
  border-color: var(--red);
  transform: translateX(-2px);
}

.checkout-page {
  display: grid;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px) clamp(18px, 5vw, 40px) 70px;
}

.checkout-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  gap: clamp(22px, 5vw, 56px);
  align-items: center;
  min-height: 250px;
}

.checkout-hero {
  max-width: 700px;
}

.checkout-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--red);
}

.checkout-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--red);
  border-radius: 999px;
}

.checkout-hero h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(38px, 5.4vw, 62px);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

.checkout-hero h1 span {
  display: block;
  color: var(--red);
}

.checkout-hero p {
  max-width: 620px;
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.75;
}

.checkout-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.checkout-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.42)),
    rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(23, 23, 31, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.8);
  font-size: 11px;
  font-weight: 900;
}

.checkout-summary {
  position: relative;
  display: block;
  align-self: stretch;
  overflow: hidden;
  padding: 24px;
  color: #ffffff;
  background:
    radial-gradient(circle at 16% 8%, rgba(255, 255, 255, 0.2), transparent 28%),
    linear-gradient(135deg, rgba(255, 68, 79, 0.22), rgba(255, 176, 32, 0.08)),
    #161820;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(23, 23, 31, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.checkout-summary::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(255, 68, 79, 0.22), transparent 34%);
}

.checkout-summary > * {
  position: relative;
  z-index: 1;
}

.checkout-summary span,
.checkout-card-head span,
.checkout-detail span {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.checkout-summary strong {
  display: block;
  margin-top: 12px;
  color: #ffffff;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.05;
}

.checkout-summary p {
  margin: 8px 0 0;
  color: #edf0f8;
  line-height: 1.6;
}

.checkout-summary div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.checkout-summary small {
  color: #dbe0ee;
  font-size: 13px;
  font-weight: 800;
}

.checkout-summary b {
  color: #ffffff;
  font-size: 28px;
}

.checkout-summary-meta {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  color: #eef1f8;
  list-style: none;
  font-size: 13px;
  line-height: 1.45;
}

.checkout-summary-meta li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.checkout-summary-meta li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 68, 79, 0.18);
}

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

.checkout-steps article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 12px;
  align-items: center;
  padding: 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.checkout-steps span {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--white);
  background: var(--red);
  border-radius: 8px;
  font-weight: 950;
}

.checkout-steps strong {
  font-size: 15px;
}

.checkout-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

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

.checkout-card,
.checkout-confirm {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(23, 23, 31, 0.07);
}

.checkout-card {
  display: grid;
  gap: 11px;
  align-content: start;
}

.checkout-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.checkout-card-head strong {
  font-size: 18px;
}

.checkout-card p,
.checkout-confirm p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.checkout-detail {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  align-items: center;
  padding: 12px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.checkout-detail strong {
  grid-column: 1 / -1;
  overflow-wrap: anywhere;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.35;
}

.checkout-detail p {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.gateway-detail {
  background:
    linear-gradient(135deg, rgba(34, 158, 217, 0.09), rgba(255, 68, 79, 0.06)),
    var(--soft);
  border-color: rgba(34, 158, 217, 0.18);
}

.gateway-button {
  width: 100%;
  min-height: 44px;
}

.checkout-detail .copy-button {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.checkout-detail .reveal-wallet {
  grid-column: 1 / -1;
  width: 100%;
  min-height: 42px;
}

.checkout-detail .wallet-copy {
  width: 100%;
}

.wallet-hidden {
  color: var(--muted);
  font-size: 16px !important;
  font-weight: 800;
}

.checkout-confirm {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}

.checkout-confirm h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 42px);
}

.checkout-confirm .button {
  min-width: 220px;
}

.checkout-note-list {
  display: grid;
  gap: 6px;
  margin: 0;
  padding: 12px 14px 12px 28px;
  color: var(--muted);
  background: rgba(255, 68, 79, 0.06);
  border: 1px solid rgba(255, 68, 79, 0.14);
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.45;
}

.pending-card {
  background:
    linear-gradient(135deg, rgba(255, 176, 32, 0.06), rgba(255, 68, 79, 0.03)),
    var(--white);
}

.crypto-confirm-panel,
.crypto-wallet-panel,
.mpesa-confirm-panel,
.mpesa-till-panel,
.pending-panel {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.crypto-wallet-panel[hidden],
.crypto-whatsapp-button[hidden],
.mpesa-till-panel[hidden],
.mpesa-whatsapp-button[hidden] {
  display: none !important;
}

.crypto-confirm-panel,
.mpesa-confirm-panel {
  border-color: rgba(255, 176, 32, 0.36);
  background:
    linear-gradient(135deg, rgba(255, 176, 32, 0.13), rgba(255, 68, 79, 0.04)),
    var(--soft);
}

.crypto-wallet-panel {
  border-color: rgba(34, 158, 217, 0.28);
  background:
    linear-gradient(135deg, rgba(34, 158, 217, 0.12), rgba(255, 176, 32, 0.05)),
    var(--soft);
}

.mpesa-till-panel {
  border-color: rgba(0, 184, 124, 0.28);
  background:
    linear-gradient(135deg, rgba(0, 184, 124, 0.12), rgba(255, 176, 32, 0.06)),
    var(--soft);
}

.crypto-confirm-panel label,
.crypto-wallet-panel span,
.mpesa-confirm-panel label,
.mpesa-confirm-panel span,
.mpesa-till-panel span,
.pending-panel span {
  color: var(--red);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.crypto-confirm-panel strong,
.crypto-wallet-panel strong,
.mpesa-confirm-panel strong,
.mpesa-till-panel strong,
.pending-panel strong {
  font-size: clamp(18px, 2vw, 24px);
}

.crypto-confirm-panel p,
.crypto-wallet-panel p,
.mpesa-confirm-panel p,
.mpesa-till-panel p,
.pending-panel p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
}

.crypto-wallet-panel strong {
  width: 100%;
  padding: 7px 10px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: clamp(12px, 1.3vw, 14px);
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.mpesa-product-select {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
}

.mpesa-selected-copy {
  color: var(--muted);
}

.mpesa-selected-copy b {
  color: var(--ink);
}

.mpesa-till-panel strong {
  width: fit-content;
  padding: 7px 11px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: 0.06em;
}

.crypto-copy-button,
.crypto-confirm-button,
.crypto-whatsapp-button,
.mpesa-copy-button,
.mpesa-confirm-button,
.mpesa-whatsapp-button {
  width: 100%;
}

.crypto-copy-button + small,
.mpesa-copy-button + small {
  min-height: 16px;
  color: var(--red);
  font-size: 12px;
  font-weight: 800;
}

.crypto-confirm-button:disabled,
.mpesa-confirm-button:disabled {
  opacity: 0.7;
  cursor: default;
}

.checkout-help {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  color: var(--ink);
  background: rgba(255, 68, 79, 0.06);
  border: 1px solid rgba(255, 68, 79, 0.16);
  border-radius: 8px;
}

.checkout-help strong {
  flex: 0 0 auto;
}

.checkout-help span {
  color: var(--muted);
  line-height: 1.5;
}

.checkout-help a {
  flex: 0 0 auto;
  color: var(--red);
  font-weight: 900;
}

.faq {
  background: var(--soft);
}

.faq-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 62px;
  margin-top: 10px;
  padding: 18px 20px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-align: left;
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 0;
  border-radius: 0 0 8px 8px;
  line-height: 1.7;
}

.faq-answer.open {
  display: block;
}

body.dark-theme .section,
body.dark-theme .pricing,
body.dark-theme .market-watch,
body.dark-theme .crt-chart-section,
body.dark-theme .journal-section,
body.dark-theme .trust-section,
body.dark-theme .faq,
body.dark-theme .reviews-section,
body.dark-theme .notes-section,
body.dark-theme .strategy-illustrations {
  background: var(--soft);
  color: var(--ink);
}

body.dark-theme .section-heading p,
body.dark-theme .split p,
body.dark-theme .feature-grid p,
body.dark-theme .guide-card p,
body.dark-theme .guide-card li,
body.dark-theme .trust-grid p,
body.dark-theme .mentor-list li,
body.dark-theme .faq-answer,
body.dark-theme .review-card > p,
body.dark-theme .reviews-hero p,
body.dark-theme .journal-table td,
body.dark-theme .watch-row,
body.dark-theme .market-focus-panel p,
body.dark-theme .focus-list span,
body.dark-theme .chart-mentor-note span,
body.dark-theme .checkout-card p,
body.dark-theme .checkout-confirm p,
body.dark-theme .payment-card p,
body.dark-theme .payment-products p {
  color: var(--muted);
}

body.dark-theme .feature-grid article,
body.dark-theme .guide-card,
body.dark-theme .diagram-card,
body.dark-theme .pricing-panel,
body.dark-theme .watchlist-panel,
body.dark-theme .market-focus-panel,
body.dark-theme .crt-chart-card,
body.dark-theme .crt-chart-guide,
body.dark-theme .journal-form,
body.dark-theme .journal-table-card,
body.dark-theme .journal-chart-card,
body.dark-theme .faq-item,
body.dark-theme .faq-answer,
body.dark-theme .service-grid article,
body.dark-theme .focus-list div,
body.dark-theme .journal-summary div,
body.dark-theme .watchlist-group button,
body.dark-theme .pending-panel,
body.dark-theme .checkout-help,
body.dark-theme .checkout-note-list {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

body.dark-theme .diagram-card p,
body.dark-theme .notes-layout .check-list {
  color: var(--muted);
}

body.dark-theme .diagram-heading h3 {
  color: var(--ink);
}

body.dark-theme .handoff-diagram {
  background: #11141c;
  border-color: var(--line);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

body.dark-theme .handoff-diagram rect[fill="#fbfaf6"] {
  fill: #171a23;
  stroke: #2d3443;
}

body.dark-theme .handoff-diagram rect[fill="#9f9f9a"] {
  fill: #69707d;
}

body.dark-theme .handoff-diagram rect[fill="#fff6cc"] {
  fill: rgba(255, 176, 32, 0.18);
}

body.dark-theme .handoff-diagram text {
  fill: #f7f7fb;
}

body.dark-theme .handoff-diagram text[fill="#17171f"] {
  fill: #f7f7fb;
}

body.dark-theme .handoff-diagram text[fill="#14418f"] {
  fill: #8ab4ff;
}

body.dark-theme .handoff-diagram text[fill="#173b91"] {
  fill: #8ab4ff;
}

body.dark-theme .handoff-diagram line,
body.dark-theme .handoff-diagram path {
  stroke: #f7f7fb;
}

body.dark-theme .handoff-diagram path[fill="#17171f"] {
  fill: #f7f7fb;
}

body.dark-theme .watchlist-toolbar,
body.dark-theme .watchlist-table-head,
body.dark-theme .muted-row,
body.dark-theme .journal-table-wrap::before {
  background:
    linear-gradient(90deg, rgba(255, 68, 79, 0.08), rgba(255, 255, 255, 0)),
    var(--white);
  border-color: var(--line);
}

body.dark-theme .watch-row {
  border-top-color: var(--line);
}

body.dark-theme .watch-row.active {
  background:
    linear-gradient(90deg, rgba(255, 68, 79, 0.18), rgba(255, 68, 79, 0.04)),
    var(--white);
}

body.dark-theme input,
body.dark-theme select,
body.dark-theme textarea,
body.dark-theme .journal-form input,
body.dark-theme .journal-form select,
body.dark-theme .journal-form textarea,
body.dark-theme .review-form input,
body.dark-theme .review-form select,
body.dark-theme .review-form textarea,
body.dark-theme .crt-chart-toolbar select {
  color: var(--ink);
  background: #10141d;
  border-color: var(--line);
}

body.dark-theme input::placeholder,
body.dark-theme textarea::placeholder {
  color: rgba(247, 247, 251, 0.48);
}

body.dark-theme .pricing-panel,
body.dark-theme .journal-chart-card {
  box-shadow: var(--shadow);
}

body.dark-theme .service-price {
  color: #ffffff;
  background: var(--red);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 26px clamp(18px, 5vw, 64px);
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-dark {
  display: block;
  padding: clamp(34px, 6vw, 58px) clamp(18px, 7vw, 90px) 26px;
  color: #cfd1dc;
  background: #171b23;
  border-top: 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  color: var(--white);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 950;
  font-style: italic;
  letter-spacing: 0;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.footer-social a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #c7c9d4;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.footer-social svg {
  width: 25px;
  height: 25px;
}

.footer-social path,
.footer-social circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social text {
  fill: currentColor;
  font-size: 18px;
  font-weight: 900;
  text-anchor: middle;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.footer-social a:hover {
  color: var(--white);
  background: rgba(255, 68, 79, 0.16);
  border-color: rgba(255, 68, 79, 0.34);
  transform: translateY(-2px);
}

.footer-badge {
  justify-self: end;
  padding: 12px 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
}

.footer-badge:hover {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-2px);
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr)) minmax(220px, 280px);
  gap: clamp(22px, 4vw, 48px);
  padding: 30px 0;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-col h3 {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 14px;
}

.footer-col a {
  color: #b8bbc8;
  font-size: 13px;
}

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

.footer-product-card {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.footer-product-card span {
  color: #ff858c;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-product-card strong {
  color: var(--white);
  font-size: 20px;
}

.footer-product-card p {
  margin: 0;
  color: #b8bbc8;
  font-size: 13px;
  line-height: 1.6;
}

.footer-product-card .button {
  min-height: 40px;
  padding: 10px 12px;
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding-top: 20px;
  color: #8f94a3;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 12px;
}

.guide-hero {
  padding: clamp(52px, 8vw, 92px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(120deg, rgba(255, 68, 79, 0.1), rgba(255, 176, 32, 0.04)),
    var(--white);
}

.guide-hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

.guide-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 28px;
  padding: 34px clamp(18px, 5vw, 64px) 84px;
  background: var(--soft);
}

.guide-nav {
  position: sticky;
  top: 96px;
  align-self: start;
  display: grid;
  gap: 8px;
}

.guide-nav a {
  padding: 12px 14px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 700;
}

.guide-nav a:hover {
  color: var(--ink);
  border-color: var(--red);
}

body.dark-theme .guide-hero {
  background:
    linear-gradient(120deg, rgba(255, 68, 79, 0.14), rgba(255, 176, 32, 0.04)),
    var(--soft);
}

body.dark-theme .guide-layout {
  background: var(--soft);
}

body.dark-theme .guide-nav a {
  color: var(--muted);
  background: var(--white);
  border-color: var(--line);
}

body.dark-theme .guide-nav a:hover {
  color: var(--ink);
  border-color: var(--red);
}

.guide-content {
  display: grid;
  gap: 16px;
}

.guide-card h2 {
  font-size: clamp(26px, 4vw, 38px);
}

.copy-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 18px;
  padding: 14px;
  background: #17171f;
  border-radius: 8px;
}

.copy-box code {
  overflow-wrap: anywhere;
  color: #f1f1f5;
}

.copy-button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 8px 12px;
  color: var(--white);
  background: var(--red);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 800;
}

.input-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.input-table div {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  gap: 16px;
  padding: 15px;
  border-bottom: 1px solid var(--line);
}

.input-table div:last-child {
  border-bottom: 0;
}

.input-table span {
  color: var(--muted);
}

.risk-note {
  padding: 16px;
  color: #7a4100 !important;
  background: #fff2d6;
  border-radius: 8px;
}

.risk-calculator-card {
  border-color: rgba(255, 176, 32, 0.32);
}

.risk-calculator {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.risk-calculator label {
  display: grid;
  gap: 7px;
}

.risk-calculator span {
  color: var(--red);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.risk-calculator input,
.risk-calculator select {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
}

.risk-results {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.risk-results div {
  padding: 14px;
  background:
    linear-gradient(145deg, rgba(255, 176, 32, 0.14), rgba(255, 68, 79, 0.05)),
    var(--white);
  border: 1px solid rgba(255, 176, 32, 0.28);
  border-radius: 8px;
}

.risk-results span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.risk-results strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1;
}

body.dark-theme .risk-calculator input,
body.dark-theme .risk-calculator select {
  color: var(--ink);
  background: #10141d;
  border-color: var(--line);
}

body.dark-theme .risk-results div {
  background:
    linear-gradient(145deg, rgba(255, 176, 32, 0.11), rgba(255, 68, 79, 0.08)),
    var(--white);
  border-color: rgba(255, 176, 32, 0.22);
}

@media (max-width: 980px) {
  .top-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .header-login {
    display: none;
  }

  .hero,
  .split,
  .pricing-panel,
  .notes-layout,
  .diagram-grid,
  .crt-chart-layout,
  .journal-layout,
  .payment-layout,
  .checkout-intro,
  .checkout-grid,
  .checkout-summary,
  .checkout-confirm,
  .product-showcase,
  .guide-layout {
    grid-template-columns: 1fr;
  }

  .crt-chart-card,
  .crt-chart-guide {
    position: static;
  }

  .edge-hero-visual {
    min-height: 500px;
  }

  .edge-scene {
    min-height: 438px;
  }

  .equity-stage {
    left: 22px;
    right: 22px;
    bottom: 42px;
    height: 300px;
  }

  .discipline-card {
    left: 22px;
    top: 22px;
    max-width: 230px;
  }

  .dove-mark {
    right: 34px;
    top: 52px;
  }

  .feature-grid,
  .trust-band,
  .pathway-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-social {
    justify-content: flex-start;
  }

  .footer-badge {
    justify-self: start;
  }

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

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

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

  .flow-timeline {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .flow-timeline article:nth-child(3)::after,
  .flow-timeline article:nth-child(6)::after {
    display: none;
  }

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

  .journal-form,
  .journal-table-card {
    padding: 18px;
  }

  .journal-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .journal-table-wrap::before {
    display: block;
  }

  .proof-highlight,
  .proof-grid,
  .telegram-channel-card,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .proof-actions,
  .telegram-actions {
    justify-content: flex-start;
  }

  .proof-pair img {
    height: min(92vw, 560px);
  }

  .market-watch-layout {
    grid-template-columns: 1fr;
  }

  .market-focus-panel {
    position: static;
  }

  .guide-nav {
    position: static;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 92px;
  }

  .site-header {
    align-items: center;
    flex-direction: row;
    gap: 10px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .compact-theme-toggle {
    display: none;
  }

  .header-cta {
    min-height: 36px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .side-menu {
    width: min(82vw, 286px);
    padding-bottom: 96px;
  }

  .telegram-channel-card {
    padding: 20px;
  }

  .telegram-channel-copy h2 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .telegram-actions .button {
    width: 100%;
  }

  .mobile-bottom-nav {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 28;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    padding: 8px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
      rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(23, 23, 31, 0.1);
    border-radius: 14px;
    box-shadow: 0 18px 52px rgba(23, 23, 31, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(22px) saturate(170%);
  }

  body.chart-expanded .mobile-bottom-nav {
    display: none;
  }

  body.dark-theme .mobile-bottom-nav {
    background:
      linear-gradient(135deg, rgba(35, 40, 54, 0.9), rgba(20, 24, 34, 0.78)),
      rgba(17, 20, 28, 0.86);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  }

  .mobile-bottom-nav a {
    display: grid;
    justify-items: center;
    gap: 4px;
    min-width: 0;
    padding: 7px 3px;
    color: var(--muted);
    border-radius: 10px;
    font-size: 10px;
    font-weight: 900;
    line-height: 1.1;
  }

  .mobile-bottom-nav a:hover,
  .mobile-bottom-nav a.active {
    color: var(--ink);
    background: rgba(255, 68, 79, 0.09);
  }

  body.dark-theme .mobile-bottom-nav a:hover,
  body.dark-theme .mobile-bottom-nav a.active {
    color: #ffffff;
    background: rgba(255, 68, 79, 0.18);
  }

  .mobile-bottom-nav span {
    display: grid;
    place-items: center;
    width: 28px;
    height: 24px;
    color: #ffffff;
    background: var(--red);
    border-radius: 8px;
    font-size: 10px;
    font-weight: 950;
    box-shadow: 0 10px 20px rgba(255, 68, 79, 0.22);
  }

  .hero {
    min-height: auto;
  }

  .terminal-preview {
    min-height: 380px;
  }

  .edge-hero-visual {
    min-height: 450px;
  }

  .edge-scene {
    min-height: 408px;
  }

  .discipline-card {
    max-width: 210px;
    padding: 14px;
  }

  .discipline-card strong {
    font-size: 18px;
  }

  .equity-stage {
    left: 14px;
    right: 14px;
    bottom: 66px;
    height: 270px;
  }

  .dove-mark {
    right: 18px;
    top: 86px;
    transform: scale(0.72);
    transform-origin: top right;
  }

  .edge-marker {
    font-size: 10px;
    padding: 6px 8px;
  }

  .marker-two {
    left: 36%;
  }

  .marker-three {
    right: 5%;
    top: 76px;
  }

  .signal-card {
    left: 14px;
    right: 14px;
    width: auto;
  }

  #chartCanvas {
    height: 330px;
  }

  .crt-chart-toolbar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    padding: 12px;
  }

  .crt-chart-toolbar label,
  .crt-chart-toolbar select,
  .crt-chart-toolbar .button {
    width: 100%;
    min-width: 0;
  }

  .crt-floating-tools {
    grid-column: 1 / -1;
    justify-self: end;
    margin-left: 0;
    gap: 5px;
    padding: 6px;
    border-radius: 9px;
  }

  .crt-zoom-button,
  .crt-zoom-fit {
    min-height: 32px;
    font-size: 12px;
  }

  .crt-zoom-button {
    width: 32px;
  }

  .crt-chart-toolbar .button {
    min-height: 44px;
    padding: 10px 8px;
    font-size: 12px;
  }

  .crt-chart-stage {
    min-height: 430px;
  }

  .feature-grid,
  .trust-band,
  .pathway-strip,
  .guide-nav,
  .mentor-list,
  .checkout-steps,
  .payment-products {
    grid-template-columns: 1fr;
  }

  .watchlist-panel {
    overflow-x: auto;
  }

  .watch-row {
    grid-template-columns: 20px minmax(190px, 1fr) 92px 74px 70px;
    min-width: 540px;
  }

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

  .flow-timeline,
  .trust-grid,
  .proof-pair,
  .signal-path-grid {
    grid-template-columns: 1fr;
  }

  .proof-pair img {
    height: min(138vw, 620px);
    min-height: 420px;
  }

  .proof-actions .button {
    width: 100%;
  }

  .flow-timeline article::after {
    display: block;
    top: auto;
    right: auto;
    bottom: -12px;
    left: 28px;
    width: 2px;
    height: 12px;
  }

  .flow-timeline article:last-child::after {
    display: none;
  }

  .footer-bottom {
    display: grid;
  }

  .trust-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pricing-panel {
    align-items: stretch;
  }

  .copy-box,
  .journal-form,
  .payment-detail,
  .risk-calculator,
  .input-table div {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: stretch;
  }

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

  .journal-section {
    padding-left: 12px;
    padding-right: 12px;
  }

  .journal-form,
  .journal-table-card {
    padding: 16px;
    border-radius: 10px;
  }

  .journal-form {
    gap: 12px;
  }

  .journal-form h2 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .journal-intro {
    font-size: 14px;
    line-height: 1.55;
  }

  .journal-form label {
    gap: 6px;
  }

  .journal-form input,
  .journal-form select,
  .journal-form textarea {
    min-height: 48px;
    padding: 12px 13px;
    font-size: 15px;
  }

  .journal-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .journal-actions .button {
    width: 100%;
    min-height: 46px;
  }

  .journal-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .journal-summary div {
    padding: 12px;
  }

  .journal-summary strong {
    font-size: 24px;
  }

  .journal-summary span {
    font-size: 11px;
  }

  .journal-performance {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .journal-chart-card {
    min-height: 210px;
    padding: 14px;
  }

  .journal-chart-card canvas {
    height: 150px;
  }

  .journal-table {
    min-width: 900px;
  }

  .journal-table th,
  .journal-table td {
    padding: 10px;
    font-size: 13px;
  }

  .review-score {
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    border-radius: 12px;
  }

  .review-card,
  .review-form {
    border-radius: 12px;
  }

  .review-card-head {
    align-items: flex-start;
  }

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

  .payment-detail .copy-button {
    grid-column: 1;
    grid-row: auto;
  }

  .checkout-header {
    align-items: center;
    padding: 14px 16px;
  }

  .checkout-header .button,
  .checkout-header .checkout-back {
    width: auto;
    min-width: 58px;
    height: 38px;
    min-height: 38px;
    padding: 0 12px;
    font-size: 12px;
  }

  .checkout-detail {
    grid-template-columns: 1fr;
  }

  .checkout-detail .copy-button {
    grid-column: 1;
    grid-row: auto;
  }

  .checkout-detail .reveal-wallet,
  .checkout-detail .wallet-copy {
    grid-column: 1;
  }

  .checkout-confirm .button {
    width: 100%;
  }

  .checkout-help {
    display: grid;
  }

  .checkout-intro {
    min-height: auto;
  }

  .checkout-badges {
    gap: 8px;
  }

  .checkout-summary {
    padding: 20px;
  }
  .deriv-account-note,
  .deriv-start-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .deriv-account-note {
    display: flex;
  }

  .deriv-start-card .button {
    width: 100%;
  }
}
