    :root{
      --bg:#ffffff;
      --surface:#ffffff;
      --surface-2:#f8fafc;
      --border:rgba(15,23,42,.12);
      --text:#0f172a;
      --muted:#6b7280;
      --muted-2:#94a3b8;

      --green:#16a34a;
      --green-2:#15803d;

      --shadow:0 18px 40px rgba(15,23,42,.10);
      --shadow-2:0 10px 28px rgba(15,23,42,.08);

      --radius:18px;
      --max:1120px;
    }

    *{box-sizing:border-box}
    html,body{height:100%}
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
      color:var(--text);
      background:var(--bg);
      line-height:1.55;
      -webkit-font-smoothing:antialiased;
      -moz-osx-font-smoothing:grayscale;
    }
    a{color:inherit;text-decoration:none}
    img{max-width:100%;height:auto;display:block}

    /* Modern Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    @keyframes slideInRight {
      from {
        opacity: 0;
        transform: translateX(30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    @keyframes slideInLeft {
      from {
        opacity: 0;
        transform: translateX(-30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }
    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      25% { transform: translateY(-8px); }
      50% { transform: translateY(0px); }
      75% { transform: translateY(8px); }
    }
    @keyframes shimmer {
      0% { background-position: -1000px 0; }
      100% { background-position: 1000px 0; }
    }
    @keyframes gradient {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
    @keyframes scaleIn {
      from {
        opacity: 0;
        transform: scale(0.9);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }
    @keyframes rotate {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
    @keyframes glow {
      0%, 100% { box-shadow: 0 0 20px rgba(22,163,74,.3); }
      50% { box-shadow: 0 0 30px rgba(22,163,74,.5); }
    }

    .container{width:100%;max-width:var(--max);margin:0 auto;padding:0 18px}
    .section{padding:72px 0}
    .section.tight{padding:56px 0}
    .section-title{
      font-size:clamp(22px,2.5vw,30px);
      letter-spacing:-.02em;
      margin:0 0 10px 0;
      position:relative;
      display:inline-block;
    }
    .section-title::after{
      content:'';
      position:absolute;
      bottom:-4px;
      left:0;
      width:60px;
      height:3px;
      background:linear-gradient(90deg, var(--green), transparent);
      border-radius:2px;
      animation: scaleIn 0.6s ease-out 0.3s both;
    }
    .section-subtitle{
      margin:0 0 26px 0;
      color:var(--muted);
      max-width:820px;
      font-size:15px;
    }

    /* Header */
    .header{
      position:fixed;top:0;left:0;right:0;z-index:50;
      background:rgba(255,255,255,.95);
      backdrop-filter:blur(12px);
      border-bottom:1px solid var(--border);
      box-shadow:0 2px 8px rgba(15,23,42,.05);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      transform: translateY(0);
    }
    .header.scrolled{
      box-shadow:0 4px 16px rgba(15,23,42,.08);
      background:rgba(255,255,255,.98);
    }
    body{padding-top:74px;padding-bottom:40px}
    .header-inner{
      display:flex;align-items:center;justify-content:space-between;
      height:74px;gap:12px;
    }
    .brand{
      display:flex;align-items:center;gap:12px;
      flex:0 0 auto;
      min-width:220px;
    }
    .logo{
      height:40px;
      width:auto;
      display:block;
      flex:0 0 auto;
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .logo:hover{
      transform: scale(1.05) rotate(2deg);
    }

    .nav{display:flex;align-items:center;gap:18px}
    .nav a{
      font-size:14px;
      color:rgba(15,23,42,.78);
      padding:10px 10px;
      border-radius:10px;
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      position:relative;
    }
    .nav a::before{
      content:'';
      position:absolute;
      bottom:6px;
      left:50%;
      width:0;
      height:2px;
      background:var(--green);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      transform:translateX(-50%);
      border-radius:2px;
    }
    .nav a:hover{
      background:rgba(15,23,42,.04);
      color:rgba(15,23,42,.92);
      transform:translateY(-1px);
    }
    .nav a:hover::before{
      width:60%;
    }

    .actions{display:flex;align-items:center;gap:10px}
    .btn{
      display:inline-flex;align-items:center;justify-content:center;
      padding:11px 14px;border-radius:14px;
      font-size:14px;border:1px solid transparent;
      cursor:pointer;
      transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      white-space:nowrap;
      position:relative;
      overflow:hidden;
    }
    .btn::before{
      content:'';
      position:absolute;
      top:50%;
      left:50%;
      width:0;
      height:0;
      border-radius:50%;
      background:rgba(255,255,255,.2);
      transform:translate(-50%,-50%);
      transition:width 0.6s, height 0.6s;
    }
    .btn:active::before{
      width:300px;
      height:300px;
    }
    .btn:active{transform:translateY(1px) scale(0.98)}
    .btn-primary{
      background:var(--green);
      color:#fff;
      box-shadow:0 10px 22px rgba(22,163,74,.18);
      border-color:rgba(22,163,74,.25);
    }
    .btn-primary:hover{
      background:#139043;
      box-shadow:0 12px 28px rgba(22,163,74,.25);
      transform: translateY(-2px) scale(1.02);
    }
    .btn-primary:active{
      box-shadow:0 6px 16px rgba(22,163,74,.2);
    }
    .btn-secondary{
      background:#fff;
      border-color:var(--border);
      color:rgba(15,23,42,.86);
    }
    .btn-secondary:hover{
      background:rgba(15,23,42,.03);
      border-color:rgba(15,23,42,.2);
      transform: translateY(-1px);
      box-shadow:0 2px 8px rgba(15,23,42,.06);
    }
    .mobile-toggle{display:none}

    /* Language dropdown */
    .lang-dd{position:relative}
    .lang-btn{
      display:flex;align-items:center;gap:8px;
      padding:10px 12px;
      border:1px solid var(--border);
      border-radius:12px;
      background:#fff;
      cursor:pointer;
      font-size:13px;
      color:rgba(15,23,42,.78);
      transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .lang-btn:hover{
      transform:translateY(-1px);
      box-shadow:0 4px 12px rgba(15,23,42,.08);
      border-color:rgba(22,163,74,.3);
    }
    .lang-btn .chev{opacity:.7;font-size:12px}
    .lang-menu{
      position:absolute;right:0;top:calc(100% + 8px);
      min-width:190px;
      background:#fff;
      border:1px solid var(--border);
      border-radius:14px;
      box-shadow:var(--shadow);
      padding:6px;
      display:none;
      z-index:100;
      opacity:0;
      transform:translateY(-10px) scale(0.95);
      transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      pointer-events:none;
    }
    .lang-menu.open{
      display:block;
      opacity:1;
      transform:translateY(0) scale(1);
      pointer-events:auto;
    }
    .lang-menu button{
      width:100%;
      text-align:left;
      padding:10px 10px;
      border:0;background:transparent;
      border-radius:10px;
      cursor:pointer;
      font-size:13px;
      color:rgba(15,23,42,.85);
      display:flex;gap:10px;align-items:center;
      transition:all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      transform:translateX(0);
    }
    .lang-menu button:hover{
      background:rgba(15,23,42,.04);
      transform:translateX(4px);
    }
    .lang-dot{
      width:8px;height:8px;border-radius:999px;
      background:rgba(15,23,42,.16);
      margin-left:auto;
    }
    .lang-menu button.active .lang-dot{
      background:var(--green);
      box-shadow:0 0 0 3px rgba(22,163,74,.12);
    }

    /* Hero */
    .hero{padding:46px 0 10px}
    .hero-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:26px;
      align-items:stretch;
    }
    .hero-right-column{
      display:flex;
      flex-direction:column;
      gap:18px;
      height:100%;
    }
    .hero-visual{
      flex:1 1 auto;
      min-height:0;
    }
    .badge{
      display:inline-flex;align-items:center;gap:8px;
      padding:8px 12px;
      border:1px solid rgba(22,163,74,.25);
      background:rgba(22,163,74,.08);
      border-radius:999px;
      font-size:12px;
      color:rgba(15,23,42,.85);
      margin-bottom:14px;
      width:fit-content;
      transition: all 0.2s ease;
    }
    .badge:hover {
      transform: translateY(-1px);
      box-shadow: 0 2px 8px rgba(22,163,74,.12);
    }
    .badge .dot{
      width:8px;height:8px;border-radius:999px;
      background:var(--green);
      box-shadow:0 0 0 3px rgba(22,163,74,.12);
      animation: pulse 2s ease-in-out infinite, glow 3s ease-in-out infinite;
    }
    .h1{
      font-size:clamp(30px,4.2vw,46px);
      letter-spacing:-.03em;
      line-height:1.08;
      margin:0 0 14px 0;
      font-weight:900;
      background:linear-gradient(135deg, var(--text) 0%, rgba(15,23,42,.8) 100%);
      -webkit-background-clip:text;
      -webkit-text-fill-color:transparent;
      background-clip:text;
    }
    .lead{
      font-size:16px;
      color:var(--muted);
      margin:0 0 18px 0;
      max-width:760px;
    }
    .hero-actions{display:flex;flex-wrap:wrap;gap:10px;margin:18px 0 14px}

    /* Hero visual (fixed layout) */
    /* synth wave - плавающая анимация карточки hero */
    .hero-visual{
      border:1px solid var(--border);
      border-radius:var(--radius);
      background:linear-gradient(180deg,#ffffff,#f2fbf7);
      box-shadow:var(--shadow-2);
      overflow:hidden;

      position:relative;
      display:flex;
      align-items:center;
      justify-content:center;
      padding:18px;
      animation: float 4s ease-in-out infinite;
    }
    .hero-visual img{
      width:100%;
      height:100%;
      max-width:100%;
      max-height:100%;
      object-fit:contain;
      object-position:center;
      display:block;
      transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      filter: drop-shadow(0 10px 20px rgba(15,23,42,.1));
    }
    .hero-visual:hover img {
      transform: scale(1.05) translateY(-5px);
      filter: drop-shadow(0 20px 40px rgba(15,23,42,.15));
    }

    .overlay{
      position:absolute;
      left:14px; right:14px; bottom:14px;
      border:1px solid var(--border);
      border-radius:16px;
      background:rgba(255,255,255,.88);
      backdrop-filter:blur(10px);
      padding:10px 12px;
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:10px;
      z-index:2;
      max-width:calc(100% - 28px);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      animation: fadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
    }
    .hero-visual:hover .overlay {
      background:rgba(255,255,255,.98);
      box-shadow: 0 8px 24px rgba(15,23,42,.15);
      transform:translateY(-2px);
    }
    .overlay .left{display:flex;flex-direction:column;line-height:1.1;min-width:0}
    .overlay .left strong{font-size:13px;letter-spacing:-.01em}
    .overlay .left span{
      font-size:12px;color:var(--muted);margin-top:4px;line-height:1.25;
      display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;
    }
    .pill{
      display:inline-flex;align-items:center;gap:8px;
      padding:6px 10px;border-radius:999px;
      font-size:12px;border:1px solid var(--border);
      color:rgba(15,23,42,.8);background:#fff;
      z-index:2;flex:0 0 auto;
      transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .pill.live{
      border-color:rgba(22,163,74,.25);
      background:rgba(22,163,74,.08);
      animation:pulse 2s ease-in-out infinite;
    }
    .pill.live:hover{
      transform:scale(1.05);
      box-shadow:0 4px 12px rgba(22,163,74,.2);
    }
    .pill.soon{border-color:rgba(15,23,42,.16);background:rgba(15,23,42,.03);color:rgba(15,23,42,.65)}

    /* Hero CTA (visible link) */
    .cta-inline{
      margin-top:12px;
      border:1px solid var(--border);
      background:linear-gradient(180deg, #ffffff, rgba(22,163,74,.03));
      border-radius:18px;
      padding:14px 14px;
    }
    .cta-inline .line{
      font-size:14px;
      color:rgba(15,23,42,.78);
      margin:0 0 10px 0;
    }
    .cta-inline .line a{
      color:var(--green-2);
      text-decoration:underline;
      text-underline-offset:3px;
      font-weight:800;
    }
    .cta-inline .cta-actions{
      display:flex;gap:10px;flex-wrap:wrap;margin-top:8px;
    }

    /* Big feature cards */
    .feature-cards{
      margin-top:22px;
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:18px;
    }
    .feature-card{
      border:1px solid rgba(15,23,42,.08);
      border-radius:26px;
      background:#fff;
      box-shadow:0 22px 44px rgba(15,23,42,.10);
      padding:30px 24px;
      text-align:center;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position:relative;
      overflow:hidden;
    }
    .feature-card::before{
      content:'';
      position:absolute;
      top:0;
      left:-100%;
      width:100%;
      height:100%;
      background:linear-gradient(90deg, transparent, rgba(22,163,74,.05), transparent);
      transition:left 0.5s;
    }
    .feature-card:hover::before{
      left:100%;
    }
    .feature-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow:0 28px 56px rgba(15,23,42,.16);
      border-color:rgba(22,163,74,.25);
    }
    .feature-card .icon{
      width:92px;height:92px;margin:0 auto 18px;display:grid;place-items:center;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .feature-card:hover .icon {
      transform: scale(1.12) rotate(5deg);
      filter: drop-shadow(0 8px 16px rgba(22,163,74,.2));
    }
    .feature-card .icon img{width:86px;height:86px;object-fit:contain}
    .feature-card h2,.feature-card h3{margin:0 0 12px;font-size:24px;letter-spacing:-.02em}
    .feature-card p{
      margin:0;color:var(--muted);font-size:16px;line-height:1.6;
      max-width:340px;margin-left:auto;margin-right:auto;
    }
    .market-hours-widget{
      border:1px solid var(--border);
      border-radius:var(--radius);
      background:#fff;
      box-shadow:var(--shadow-2);
      padding:18px;
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      display:flex;
      flex-direction:column;
      flex:1 1 auto;
      min-height:0;
      position:relative;
    }
    .market-hours-widget::before{
      content:'';
      position:absolute;
      inset:0;
      border-radius:var(--radius);
      background:linear-gradient(135deg, rgba(22,163,74,.02), transparent);
      opacity:0;
      transition:opacity 0.3s;
    }
    .market-hours-widget:hover::before{
      opacity:1;
    }
    .market-hours-widget:hover {
      transform: translateY(-5px) scale(1.01);
      box-shadow:0 16px 32px rgba(15,23,42,.14);
      border-color:rgba(22,163,74,.2);
    }
    .market-hours-widget iframe{
      flex:1;
      min-height:0;
      border-radius:12px;
      border:0;
    }
    .market-hours-widget .widget-footer{
      margin-top:10px;
      text-align:center;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
      font-size:13px;
      color:#666666;
    }
    .market-hours-widget .widget-footer a{
      color:#666666;
      text-decoration:none;
      font-weight:700;
    }
    .market-hours-widget .widget-footer a:hover{
      color:var(--green);
    }

    /* Cards / grids */
    .grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;align-items:stretch}
    .grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
    .card{
      border:1px solid var(--border);
      border-radius:var(--radius);
      background:#fff;
      box-shadow:var(--shadow-2);
      padding:18px;
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      position:relative;
      overflow:hidden;
    }
    .card::after{
      content:'';
      position:absolute;
      top:0;
      left:0;
      right:0;
      height:3px;
      background:linear-gradient(90deg, var(--green), #139043);
      transform:scaleX(0);
      transform-origin:left;
      transition:transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .card:hover::after{
      transform:scaleX(1);
    }
    .card:hover {
      transform: translateY(-5px) scale(1.01);
      box-shadow:0 16px 32px rgba(15,23,42,.14);
      border-color:rgba(22,163,74,.2);
    }
    .card.soft{background:linear-gradient(180deg,#fff,var(--surface-2))}

    /* Products */
    .product{position:relative;display:flex;flex-direction:column;height:100%}
    .product.live{
      border-color:rgba(22,163,74,.25);
      background:linear-gradient(180deg, rgba(22,163,74,.06), #fff);
    }
    .product.soon{
      background:#f3f4f6;
      border-color:rgba(15,23,42,.10);
      color:rgba(15,23,42,.65);
      box-shadow:none;
    }
    .product.soon *{filter:grayscale(1)}
    .product.soon .btn{pointer-events:none;opacity:.55}
    .product.soon::after{
      content:"";
      position:absolute;inset:0;border-radius:var(--radius);
      background:linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.55));
      pointer-events:none;
    }
    .product.aggressive{
      border-color:rgba(22,163,74,.35);
      background:linear-gradient(180deg, rgba(22,163,74,.12), #fff);
    }
    .product.aggressive .pill.live{
      background:rgba(22,163,74,.16);
      border-color:rgba(22,163,74,.4);
    }
    .product .hero-actions{
      margin-top:auto;
    }

    .product-title{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-bottom:10px}
    .product-title h3{margin:0;font-size:18px;letter-spacing:-.02em}
    .product-meta{color:var(--muted);font-size:14px;margin:10px 0 0;flex:1}

    .feature-list{
      margin:14px 0 0;padding:0;list-style:none;
      display:grid;gap:8px;
      color:rgba(15,23,42,.82);
      font-size:14px;
      flex:1;
    }
    .feature-list li{display:flex;gap:10px;align-items:flex-start}
    .bullet{
      width:18px;height:18px;border-radius:8px;
      background:rgba(22,163,74,.14);
      display:grid;place-items:center;
      color:var(--green);
      font-weight:900;
      font-size:12px;
      margin-top:2px;
      flex:0 0 auto;
      transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .feature-list li:hover .bullet{
      transform:scale(1.2) rotate(5deg);
      background:rgba(22,163,74,.25);
    }

    /* Myfxbook widget wrapper */
    .myfxbook-wrap{
      margin-top:14px;
      border:1px solid var(--border);
      border-radius:16px;
      padding:12px;
      background:#fff;
      overflow:hidden;
    }
    .myfxbook-wrap a{display:block}
    .myfxbook-wrap img{border-radius:12px;width:100%;height:auto}

    /* Compact Myfxbook */
    .myfxbook-wrap.compact{
      display:flex;justify-content:center;align-items:center;
    }
    .myfxbook-wrap.compact img{width:320px;max-width:100%;height:auto}

    /* Steps */
    .steps{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
    .step{
      border:1px solid var(--border);
      border-radius:var(--radius);
      padding:16px;
      background:#fff;
      box-shadow:var(--shadow-2);
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      position:relative;
    }
    .step:hover {
      transform: translateY(-5px) scale(1.02);
      box-shadow:0 14px 28px rgba(15,23,42,.13);
      border-color:rgba(22,163,74,.2);
    }
    .step .num{
      width:34px;height:34px;border-radius:14px;
      background:rgba(22,163,74,.14);
      display:grid;place-items:center;
      color:var(--green);
      font-weight:900;
      margin-bottom:10px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      position:relative;
    }
    .step .num::before{
      content:'';
      position:absolute;
      inset:-4px;
      border-radius:18px;
      background:rgba(22,163,74,.1);
      opacity:0;
      transition:opacity 0.3s;
    }
    .step:hover .num {
      background:rgba(22,163,74,.2);
      transform: scale(1.15) rotate(5deg);
    }
    .step:hover .num::before{
      opacity:1;
    }
    .step h4{margin:0 0 6px;letter-spacing:-.01em}
    .step p{margin:0;color:var(--muted);font-size:14px}

    /* Access */
    .access-grid{display:grid;grid-template-columns:1.25fr .75fr;gap:14px;align-items:stretch}
    .note{
      border:1px dashed rgba(15,23,42,.18);
      border-radius:var(--radius);
      background:rgba(15,23,42,.02);
      padding:16px;
      color:rgba(15,23,42,.78);
      font-size:14px;
      transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position:relative;
    }
    .note::before{
      content:'';
      position:absolute;
      inset:0;
      border-radius:var(--radius);
      background:linear-gradient(135deg, rgba(22,163,74,.03), transparent);
      opacity:0;
      transition:opacity 0.3s;
    }
    .note:hover::before{
      opacity:1;
    }
    .note:hover{
      border-color:rgba(22,163,74,.25);
      transform:translateY(-2px);
      box-shadow:0 4px 12px rgba(15,23,42,.08);
    }
    .note strong{color:var(--text)}

    /* Footer */
    .footer{
      border-top:1px solid var(--border);
      padding:28px 0 34px;
      background:#fff;
      color:var(--muted);
      font-size:13px;
    }
    .footer-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:14px;align-items:start}
    .footer a{
      color:rgba(15,23,42,.75);
      transition:all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      position:relative;
      display:inline-block;
    }
    .footer a::after{
      content:'';
      position:absolute;
      bottom:-2px;
      left:0;
      width:0;
      height:1px;
      background:var(--green);
      transition:width 0.3s;
    }
    .footer a:hover{
      color:rgba(15,23,42,.92);
      transform:translateY(-1px);
    }
    .footer a:hover::after{
      width:100%;
    }
    .legal{margin-top:10px;font-size:12px;color:var(--muted-2);max-width:900px}


    /* Important highlight (Trust & Transparency) */
    .highlight-important .container{
      border:2px solid #ef4444;
      border-radius:24px;
      padding:28px;
      background:linear-gradient(180deg,#ffffff,#fff5f5);
      box-shadow:var(--shadow-2);
    }
    @media (max-width:980px){
      .highlight-important .container{padding:20px;}
    }


    
    @media (max-width:640px){
      /* Keep the red frame inside the viewport on mobile */
      .highlight-important{padding-left:12px;padding-right:12px;}
      .highlight-important .container{
        border-width:1px;
        border-color:rgba(239,68,68,.45);
        border-radius:20px;
        padding:18px;
        margin:0;
        width:100%;
        max-width:100%;
        box-sizing:border-box;
      }
    }
/* Mobile */
    @media (max-width:980px){
      .hero-grid{grid-template-columns:1fr}
      .hero-right-column{gap:14px;}
      .hero-visual{min-height:300px;}
      .market-hours-widget iframe{min-height:200px;}
      .grid-3{grid-template-columns:1fr}
      .grid-2{grid-template-columns:1fr}
      .steps{grid-template-columns:1fr}
      .access-grid{grid-template-columns:1fr}
      .feature-cards{grid-template-columns:1fr; gap:14px;}
      .feature-card{padding:22px 18px;}
      .feature-card .icon{width:78px;height:78px;}
      .feature-card .icon img{width:72px;height:72px;}

      .nav{display:none}
      .mobile-toggle{display:inline-flex}
      .brand{min-width:unset}
      .logo{height:34px}

      /* remove huge CTA from header on mobile */
      .header-cta{display:none !important;}

      .hero-visual{
        height:auto;
        min-height:400px;
        max-height:none;
        padding:12px;
      }
      .hero-visual img{
        height:auto;
        max-height:400px;
      }

      /* language menu becomes a nice "sheet" */
      .lang-menu{
        position:fixed !important;
        left:12px !important;
        right:12px !important;
        top:86px !important;
        bottom:auto !important;

        min-width:unset !important;
        max-height:calc(100vh - 110px);
        overflow:auto;

        border-radius:18px !important;
        padding:8px !important;
        z-index:100 !important;
      }
      .lang-menu button{padding:14px 12px;font-size:15px}
    }

    /* Mobile menu panel */
    .mobile-panel{
      display:none;
      border-top:1px solid var(--border);
      background:rgba(255,255,255,.92);
      backdrop-filter:blur(12px);
      max-height:0;
      overflow:hidden;
      transition:max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
      opacity:0;
    }
    .mobile-panel.open{
      display:block;
      max-height:500px;
      opacity:1;
    }
    .mobile-links{
      padding:10px 18px 18px;
      display:grid;
      gap:8px;
    }
    .mobile-links a{
      padding:12px 12px;
      border:1px solid var(--border);
      border-radius:14px;
      background:#fff;
      font-size:14px;
      color:rgba(15,23,42,.86);
      transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position:relative;
      overflow:hidden;
    }
    .mobile-links a::before{
      content:'';
      position:absolute;
      left:0;
      top:0;
      height:100%;
      width:4px;
      background:var(--green);
      transform:scaleY(0);
      transition:transform 0.3s;
    }
    .mobile-links a:hover::before{
      transform:scaleY(1);
    }
    .mobile-links a:hover{
      transform:translateX(4px);
      border-color:rgba(22,163,74,.3);
      background:rgba(22,163,74,.03);
    }

    html{scroll-behavior:smooth}
  
    /* Back to top button */
    .back-to-top{
      position:fixed;
      bottom:24px;
      right:24px;
      width:48px;
      height:48px;
      border-radius:50%;
      background:var(--green);
      color:#fff;
      border:none;
      cursor:pointer;
      display:none;
      align-items:center;
      justify-content:center;
      box-shadow:0 4px 12px rgba(22,163,74,.3);
      z-index:40;
      transition:all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      font-size:20px;
    }
    .back-to-top:hover{
      background:#139043;
      transform:translateY(-4px) scale(1.1);
      box-shadow:0 8px 20px rgba(22,163,74,.5);
      animation: float 2s ease-in-out infinite;
    }
    .back-to-top:active{
      transform:translateY(-2px) scale(1.05);
    }
    .back-to-top.visible{display:flex}
    @media (max-width:980px){
      .back-to-top{bottom:20px;right:20px;width:44px;height:44px;font-size:18px}
    }
  
/* --- i18n static pages: anchors in language menu + footer language buttons --- */
.lang-menu a{
  width:100%;
  text-align:left;
  padding:10px 10px;
  border:0;
  background:transparent;
  border-radius:10px;
  cursor:pointer;
  font-size:13px;
  color:rgba(15,23,42,.85);
  display:flex;
  gap:10px;
  align-items:center;
}
.lang-menu a:hover{background:rgba(15,23,42,.04)}
.lang-menu .active .lang-dot{
  background:var(--green);
  box-shadow:0 0 0 3px rgba(22,163,74,.12);
}
.btn-small{padding:9px 10px;border-radius:12px;font-size:12px}
.footer-lang{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:flex-end;
  margin-top:12px;
}
@media (max-width:980px){
  .footer-grid{grid-template-columns:1fr}
  .footer-lang{justify-content:flex-start}
}

/* TradingView Ticker Tape */
.ticker-tape-wrapper{
  position:fixed;
  bottom:0;
  left:0;
  right:0;
  z-index:30;
  background:#fff;
  border-top:1px solid var(--border);
  box-shadow:0 -2px 8px rgba(15,23,42,.05);
  animation: slideInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  transform:translateY(100%);
}
@keyframes slideInUp {
  to {
    transform:translateY(0);
  }
}
@media (max-width:980px){
  body{padding-bottom:36px}
}