/* ============================================================
   OH Theme Management — main.css v2.1.0
   Professional SaaS Design System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=DM+Serif+Display&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --otm-primary:        #5c5fef;
  --otm-primary-dark:   #4040cc;
  --otm-primary-light:  #ededfd;
  --otm-accent:         #f97316;
  --otm-accent-dark:    #ea6c0a;
  --otm-success:        #10b981;
  --otm-warning:        #f59e0b;
  --otm-danger:         #ef4444;
  --otm-indigo:         #6366f1;
  --otm-violet:         #8b5cf6;
  --otm-purple:         #a855f7;
  --otm-fuchsia:        #d946ef;

  --otm-white:          #ffffff;
  --otm-bg:             #fafafa;
  --otm-bg-soft:        #f4f4f8;
  --otm-bg-muted:       #ededf5;
  --otm-border:         #e4e4ef;
  --otm-border-dark:    #c9c9e0;

  --otm-text:           #0f0f1a;
  --otm-text-muted:     #6b7080;
  --otm-text-light:     #9ca3af;

  --otm-font-display:   'DM Serif Display', Georgia, serif;
  --otm-font-body:      'DM Sans', system-ui, sans-serif;

  --otm-radius:         10px;
  --otm-radius-lg:      18px;
  --otm-radius-xl:      28px;
  --otm-shadow-sm:      0 1px 8px rgba(92,95,239,0.06);
  --otm-shadow:         0 4px 24px rgba(92,95,239,0.10);
  --otm-shadow-lg:      0 12px 48px rgba(92,95,239,0.18);
  --otm-shadow-hover:   0 20px 60px rgba(92,95,239,0.24);

  --otm-container:      1240px;
  --otm-gap:            2rem;
  --otm-transition:     0.22s cubic-bezier(0.4,0,0.2,1);
  --otm-transition-slow:0.4s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;font-size:16px;-webkit-text-size-adjust:100%}
body{font-family:var(--otm-font-body);font-size:1rem;font-weight:400;line-height:1.7;color:var(--otm-text);background:var(--otm-bg);-webkit-font-smoothing:antialiased}
img{max-width:100%;height:auto;display:block}
a{color:var(--otm-primary);text-decoration:none;transition:color var(--otm-transition)}
a:hover{color:var(--otm-primary-dark)}
h1,h2,h3,h4,h5,h6{font-family:var(--otm-font-display);font-weight:400;line-height:1.15;color:var(--otm-text)}
h1{font-size:clamp(2.2rem,5vw,3.8rem);line-height:1.08}
h2{font-size:clamp(1.8rem,3.5vw,2.8rem)}
h3{font-size:clamp(1.2rem,2.5vw,1.6rem)}
h4{font-size:1.2rem}
p{margin-bottom:1rem}p:last-child{margin-bottom:0}

/* ── Layout ─────────────────────────────────────────────────── */
.otm-container{max-width:var(--otm-container);margin-inline:auto;padding-inline:1.5rem}
.otm-section{padding-block:5rem}
.otm-section--sm{padding-block:3rem}
.otm-section--lg{padding-block:7rem}
.otm-section--bg{background:var(--otm-bg-soft)}
.otm-grid{display:grid;gap:var(--otm-gap)}
.otm-grid--2{grid-template-columns:repeat(2,1fr)}
.otm-grid--3{grid-template-columns:repeat(3,1fr)}
.otm-grid--4{grid-template-columns:repeat(4,1fr)}

/* ── Section Header ─────────────────────────────────────────── */
.otm-section-header{text-align:center;max-width:680px;margin-inline:auto;margin-bottom:3.5rem}
.otm-section-badge{display:inline-flex;align-items:center;gap:0.5rem;background:var(--otm-primary-light);color:var(--otm-primary);font-size:0.78rem;font-weight:700;letter-spacing:0.09em;text-transform:uppercase;padding:0.4rem 1.1rem;border-radius:100px;margin-bottom:1.1rem;font-family:var(--otm-font-body)}
.otm-section-title{margin-bottom:1rem;color:var(--otm-text)}
.otm-section-desc{color:var(--otm-text-muted);font-size:1.08rem;line-height:1.8}

/* ── Buttons ────────────────────────────────────────────────── */
.otm-btn{display:inline-flex;align-items:center;justify-content:center;gap:0.5rem;font-family:var(--otm-font-body);font-size:0.93rem;font-weight:600;border:2px solid transparent;border-radius:var(--otm-radius);padding:.7rem 1.6rem;cursor:pointer;text-decoration:none;transition:all var(--otm-transition);white-space:nowrap;letter-spacing:0.01em;position:relative}
.otm-btn--primary{background:var(--otm-primary);color:#fff;border-color:var(--otm-primary)}
.otm-btn--primary:hover{background:var(--otm-primary-dark);border-color:var(--otm-primary-dark);color:#fff;transform:translateY(-2px);box-shadow:var(--otm-shadow-lg)}
.otm-btn--accent{background:var(--otm-accent);color:#fff;border-color:var(--otm-accent)}
.otm-btn--accent:hover{background:var(--otm-accent-dark);border-color:var(--otm-accent-dark);color:#fff;transform:translateY(-2px);box-shadow:0 8px 30px rgba(249,115,22,.35)}
.otm-btn--outline{background:transparent;color:var(--otm-primary);border-color:var(--otm-primary)}
.otm-btn--outline:hover{background:var(--otm-primary);color:#fff;transform:translateY(-2px)}
.otm-btn--ghost{background:transparent;color:var(--otm-text-muted);border-color:transparent}
.otm-btn--ghost:hover{color:var(--otm-primary);background:var(--otm-primary-light)}
.otm-btn--outline-sm{background:transparent;color:var(--otm-text-muted);border:1.5px solid var(--otm-border);border-radius:8px;padding:.45rem 1rem;font-size:.83rem;font-weight:600}
.otm-btn--outline-sm:hover{border-color:var(--otm-primary);color:var(--otm-primary)}
.otm-btn--full{width:100%;justify-content:center}
.otm-btn--sm{padding:.5rem 1.1rem;font-size:.85rem}
.otm-btn--lg{padding:.9rem 2rem;font-size:1rem}
.otm-btn--glow::after{content:'';position:absolute;inset:0;border-radius:inherit;background:inherit;opacity:0;filter:blur(12px);transition:opacity .3s;z-index:-1}
.otm-btn--glow:hover::after{opacity:.5}

/* ── Header ─────────────────────────────────────────────────── */
.otm-header{position:fixed;top:0;left:0;right:0;z-index:1000;padding:.9rem 0;transition:all .35s ease}
.otm-header__bg{position:absolute;inset:0;background:rgba(250,250,250,.85);backdrop-filter:blur(20px) saturate(180%);-webkit-backdrop-filter:blur(20px) saturate(180%);border-bottom:1px solid var(--otm-border);transition:all .35s}
.otm-header.scrolled .otm-header__bg{background:rgba(250,250,250,.97);box-shadow:var(--otm-shadow)}
.otm-header__inner{display:flex;align-items:center;gap:1.5rem;position:relative;z-index:1}
.otm-header__logo{display:flex;align-items:center;gap:.6rem;text-decoration:none;flex-shrink:0}
.otm-logo-mark svg{display:block}
.otm-logo-text{font-family:var(--otm-font-body);font-weight:800;font-size:1.25rem;color:var(--otm-text);letter-spacing:-.02em}
.otm-logo-accent{color:var(--otm-primary)}

/* Nav */
.otm-nav{flex:1}
.otm-nav__list{display:flex;align-items:center;gap:.25rem;list-style:none;padding:0;margin:0}
.otm-nav__item{position:relative}
.otm-nav__link{display:block;padding:.5rem .9rem;color:var(--otm-text-muted);font-size:.88rem;font-weight:500;font-family:var(--otm-font-body);border-radius:8px;transition:all var(--otm-transition)}
.otm-nav__link:hover,.otm-nav__item.current-menu-item .otm-nav__link{color:var(--otm-primary);background:var(--otm-primary-light)}
.otm-nav__list ul{display:none;position:absolute;top:calc(100% + .5rem);left:0;background:#fff;border:1px solid var(--otm-border);border-radius:var(--otm-radius);padding:.5rem;min-width:200px;box-shadow:var(--otm-shadow-lg);z-index:100}
.otm-nav__list li:hover>ul{display:block}
.otm-nav__list ul li a{display:block;padding:.5rem 1rem;font-size:.85rem;color:var(--otm-text);border-radius:6px}
.otm-nav__list ul li a:hover{background:var(--otm-primary-light);color:var(--otm-primary)}

/* Header Right */
.otm-header__right{display:flex;align-items:center;gap:.75rem;margin-left:auto}
.otm-header__features{display:flex;align-items:center;gap:.4rem}
.otm-hpill{display:inline-flex;align-items:center;gap:.35rem;padding:.28rem .7rem;border-radius:100px;font-size:.74rem;font-weight:600;font-family:var(--otm-font-body);animation:hpill-float 3s ease-in-out infinite;transition:transform .2s,box-shadow .2s;cursor:default}
.otm-hpill:hover{transform:translateY(-2px) scale(1.05);box-shadow:0 4px 16px rgba(0,0,0,.1)}
.otm-hpill--i{background:#eef2ff;color:#6366f1;animation-delay:0s}
.otm-hpill--v{background:#f5f3ff;color:#7c3aed;animation-delay:.4s}
.otm-hpill--p{background:#fdf4ff;color:#a21caf;animation-delay:.8s}
.otm-hpill--f{background:#fef3c7;color:#b45309;animation-delay:1.2s}
@keyframes hpill-float{0%,100%{transform:translateY(0)}50%{transform:translateY(-3px)}}
.otm-header__actions{display:flex;align-items:center;gap:.5rem}

/* Hamburger */
.otm-hamburger{display:none;flex-direction:column;gap:5px;padding:.5rem;background:none;border:none;cursor:pointer;border-radius:8px;transition:background .2s}
.otm-hamburger:hover{background:var(--otm-bg-soft)}
.otm-hamburger span{display:block;width:22px;height:2px;background:var(--otm-text);border-radius:2px;transition:all .3s}
.otm-hamburger.is-open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.otm-hamburger.is-open span:nth-child(2){opacity:0}
.otm-hamburger.is-open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ── Hero ────────────────────────────────────────────────────── */
.otm-hero{padding-top:calc(80px + 3rem);padding-bottom:4rem;background:#fff;overflow:hidden;position:relative}
.otm-hero__orbit-ring{position:absolute;border-radius:50%;border:1px solid rgba(92,95,239,.08);pointer-events:none}
.otm-hero__orbit-ring--1{width:600px;height:600px;top:-200px;right:-200px;animation:orbit-spin 20s linear infinite}
.otm-hero__orbit-ring--2{width:900px;height:900px;top:-350px;right:-350px;animation:orbit-spin 35s linear infinite reverse}
@keyframes orbit-spin{to{transform:rotate(360deg)}}

.otm-hero__inner{display:grid;grid-template-columns:1fr 1fr;gap:3rem;align-items:center}
.otm-hero__inner--centered{grid-template-columns:1fr;max-width:860px;margin-inline:auto;text-align:center}
.otm-hero__content{position:relative;z-index:2}
.otm-hero__content--full{width:100%}
.otm-hero__badge{display:inline-flex;align-items:center;gap:.5rem;background:linear-gradient(135deg,#eef2ff,#f5f3ff);border:1px solid #c7d2fe;color:var(--otm-primary);font-size:.8rem;font-weight:700;font-family:var(--otm-font-body);padding:.45rem 1rem;border-radius:100px;margin-bottom:1.5rem;letter-spacing:.05em}
.otm-hero__badge-dot{width:8px;height:8px;background:#10b981;border-radius:50%;box-shadow:0 0 0 3px rgba(16,185,129,.2);animation:pulse-dot 2s ease infinite}
@keyframes pulse-dot{0%,100%{box-shadow:0 0 0 3px rgba(16,185,129,.2)}50%{box-shadow:0 0 0 6px rgba(16,185,129,.1)}}

.otm-hero__title{font-size:clamp(2rem,4.5vw,3.4rem);line-height:1.06;margin-bottom:1.2rem;font-weight:400}
.otm-hero__title--centered{font-size:clamp(2.6rem,5.5vw,4.2rem)}
.otm-gradient-text{background:linear-gradient(135deg,var(--otm-primary) 0%,var(--otm-violet) 50%,var(--otm-fuchsia) 100%);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.otm-hero__desc{font-size:1.05rem;color:var(--otm-text-muted);margin-bottom:1.8rem;line-height:1.75}
.otm-hero__desc--centered{font-size:1.15rem;max-width:640px;margin-inline:auto;margin-bottom:2rem}

/* Hero Feature Grid */
.otm-hero__features-grid{display:grid;grid-template-columns:1fr 1fr;gap:.6rem;margin-bottom:1.8rem}
.otm-hero__features-grid--wide{grid-template-columns:repeat(4,1fr);margin-top:2.5rem;max-width:1100px;margin-inline:auto;text-align:left}
.otm-hero__feat-item{display:flex;align-items:center;gap:.7rem;padding:.65rem .8rem;background:var(--otm-bg-soft);border:1px solid var(--otm-border);border-radius:var(--otm-radius);transition:all .2s;animation:feat-slide-in .5s both;animation-delay:var(--delay)}
.otm-hero__feat-item:hover{background:var(--otm-primary-light);border-color:#c7d2fe;transform:translateX(3px)}
@keyframes feat-slide-in{from{opacity:0;transform:translateX(-10px)}to{opacity:1;transform:translateX(0)}}
.otm-hero__feat-icon{flex-shrink:0;width:32px;height:32px;display:flex;align-items:center;justify-content:center;background:#fff;border-radius:8px;color:var(--otm-primary);box-shadow:var(--otm-shadow-sm)}
.otm-hero__feat-info{flex:1;min-width:0}
.otm-hero__feat-label{font-size:.8rem;font-weight:700;font-family:var(--otm-font-body);color:var(--otm-text);line-height:1.2;margin-bottom:.1rem}
.otm-hero__feat-desc{font-size:.71rem;color:var(--otm-text-light);line-height:1.3}
.otm-hero__feat-check{flex-shrink:0;width:20px;height:20px;background:var(--otm-success);border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff}

.otm-hero__actions{display:flex;gap:.85rem;align-items:center;flex-wrap:wrap;margin-bottom:1.5rem}
.otm-hero__actions--centered{justify-content:center;margin-bottom:2rem}
.otm-hero__trust{display:flex;align-items:center;gap:1rem;flex-wrap:wrap}
.otm-hero__trust--centered{justify-content:center;margin-bottom:2.5rem}
.otm-hero__trust-stat{text-align:center}
.otm-hero__trust-stat strong{display:block;font-size:1.1rem;font-weight:800;font-family:var(--otm-font-body);color:var(--otm-text)}
.otm-hero__trust-stat span{font-size:.75rem;color:var(--otm-text-muted)}
.otm-hero__trust-div{width:1px;height:28px;background:var(--otm-border)}

/* Hero Visual */
.otm-hero__visual{position:relative}
.otm-hero__mockup-wrap{position:relative}
.otm-hero__mockup-glow{position:absolute;inset:-30px;background:radial-gradient(ellipse at center,rgba(92,95,239,.15) 0%,transparent 70%);pointer-events:none;border-radius:50%}
.otm-hero__mockup-frame{background:#fff;border:1px solid var(--otm-border);border-radius:var(--otm-radius-lg);overflow:hidden;box-shadow:var(--otm-shadow-lg);position:relative;z-index:1}
.otm-hero__mockup-bar{display:flex;align-items:center;gap:.5rem;padding:.6rem 1rem;background:var(--otm-bg-soft);border-bottom:1px solid var(--otm-border)}
.otm-hero__mockup-bar span{width:10px;height:10px;border-radius:50%}
.otm-hero__mockup-bar span:nth-child(1){background:#ff5f57}
.otm-hero__mockup-bar span:nth-child(2){background:#ffbd2e}
.otm-hero__mockup-bar span:nth-child(3){background:#28ca41}
.otm-hero__mockup-url{flex:1;background:#fff;border:1px solid var(--otm-border);border-radius:6px;padding:.25rem .7rem;font-size:.72rem;font-family:monospace;color:var(--otm-text-muted)}
.otm-hero__mockup-frame img{width:100%;display:block}
.otm-hero__mockup-floating{position:absolute;top:0;left:0;right:0;bottom:0;pointer-events:none}
.otm-hero__float-card{position:absolute;background:#fff;border:1px solid var(--otm-border);border-radius:var(--otm-radius);padding:.7rem 1rem;display:flex;align-items:center;gap:.7rem;box-shadow:var(--otm-shadow);animation:float-card 4s ease-in-out infinite}
.otm-hero__float-card--tl{top:-18px;left:-20px;animation-delay:0s}
.otm-hero__float-card--br{bottom:-18px;right:-20px;animation-delay:1.5s}
@keyframes float-card{0%,100%{transform:translateY(0)}50%{transform:translateY(-6px)}}
.otm-float-icon{width:36px;height:36px;border-radius:10px;display:flex;align-items:center;justify-content:center;font-size:1.1rem}
.otm-float-icon--green{background:#d1fae5}
.otm-float-icon--violet{background:#ede9fe}
.otm-float-val{font-size:.9rem;font-weight:800;font-family:var(--otm-font-body);color:var(--otm-text);line-height:1}
.otm-float-lbl{font-size:.7rem;color:var(--otm-text-muted);margin-top:.1rem}
.otm-hero__badge-float{display:inline-flex;align-items:center;gap:.4rem;background:#fff;border:1px solid var(--otm-border);border-radius:100px;padding:.4rem .9rem;font-size:.78rem;font-weight:600;font-family:var(--otm-font-body);box-shadow:var(--otm-shadow);position:absolute;z-index:2}
.otm-hero__badge-float--tl{top:-.8rem;left:50%;transform:translateX(-50%)}
.otm-hero__badge-float--br{bottom:-.8rem;left:50%;transform:translateX(-50%)}

/* ── Marquee Strip ──────────────────────────────────────────── */
.otm-marquee-wrap{overflow:hidden;background:var(--otm-primary);padding:.7rem 0;border-top:1px solid rgba(255,255,255,.1)}
.otm-marquee{display:flex;animation:marquee-scroll 30s linear infinite}
.otm-marquee__item{flex-shrink:0;padding:0 2rem;color:rgba(255,255,255,.9);font-size:.85rem;font-weight:600;font-family:var(--otm-font-body);white-space:nowrap}
@keyframes marquee-scroll{to{transform:translateX(-50%)}}

/* ── Feature Viewer ──────────────────────────────────────────── */
.otm-feature-viewer{background:#fff}
.otm-fv-tabs{display:flex;gap:.4rem;flex-wrap:wrap;margin-bottom:2.5rem;padding:.5rem;background:var(--otm-bg-soft);border-radius:var(--otm-radius-lg);width:fit-content;margin-inline:auto}
.otm-fv-tab{display:flex;align-items:center;gap:.4rem;padding:.5rem 1rem;border-radius:var(--otm-radius);border:none;background:transparent;color:var(--otm-text-muted);font-size:.83rem;font-weight:600;font-family:var(--otm-font-body);cursor:pointer;transition:all .2s}
.otm-fv-tab:hover{color:var(--otm-primary);background:#fff}
.otm-fv-tab.active{background:#fff;color:var(--otm-primary);box-shadow:var(--otm-shadow-sm)}
.otm-fv-count{background:var(--otm-primary-light);color:var(--otm-primary);border-radius:100px;padding:.1rem .45rem;font-size:.72rem}
.otm-fv-tab.active .otm-fv-count{background:var(--otm-primary);color:#fff}

.otm-fv-layout{display:grid;grid-template-columns:1fr 1fr;gap:2.5rem;align-items:start}

/* FV Left */
.otm-fv-left{position:sticky;top:100px}
.otm-fv-img-wrap{position:relative}
.otm-fv-img-frame{background:#fff;border:1px solid var(--otm-border);border-radius:var(--otm-radius-lg);overflow:hidden;box-shadow:var(--otm-shadow-lg);cursor:pointer;transition:box-shadow .2s}
.otm-fv-img-frame:hover{box-shadow:var(--otm-shadow-hover)}
.otm-fv-img-bar{display:flex;align-items:center;gap:.4rem;padding:.5rem .9rem;background:var(--otm-bg-soft);border-bottom:1px solid var(--otm-border)}
.otm-fv-img-bar span{width:9px;height:9px;border-radius:50%}
.otm-fv-img-bar span:nth-child(1){background:#ff5f57}
.otm-fv-img-bar span:nth-child(2){background:#ffbd2e}
.otm-fv-img-bar span:nth-child(3){background:#28ca41}
#otm-fv-main-img{width:100%;display:block;transition:opacity .3s}
#otm-fv-main-img.switching{opacity:0}
.otm-fv-img-number{text-align:center;margin-top:.75rem;font-size:.82rem;font-weight:600;font-family:var(--otm-font-body);color:var(--otm-text-muted)}

/* Nav buttons */
.otm-fv-nav{display:flex;gap:.75rem;margin-top:1rem}
.otm-fv-nav-btn{flex:1;display:flex;align-items:center;justify-content:center;gap:.4rem;padding:.7rem 1rem;background:#fff;border:1.5px solid var(--otm-border);border-radius:var(--otm-radius);font-size:.85rem;font-weight:600;font-family:var(--otm-font-body);color:var(--otm-text-muted);cursor:pointer;transition:all .2s}
.otm-fv-nav-btn:hover{border-color:var(--otm-primary);color:var(--otm-primary);background:var(--otm-primary-light)}
.otm-fv-nav-btn:disabled{opacity:.35;cursor:not-allowed}

/* Thumbnails */
.otm-fv-thumbs{display:grid;grid-template-columns:repeat(6,1fr);gap:.4rem;margin-top:1rem;max-height:160px;overflow-y:auto;padding-right:.3rem}
.otm-fv-thumbs::-webkit-scrollbar{width:4px}
.otm-fv-thumbs::-webkit-scrollbar-thumb{background:var(--otm-border-dark);border-radius:2px}
.otm-fv-thumb{border-radius:6px;overflow:hidden;cursor:pointer;border:2px solid transparent;transition:all .2s;opacity:.6}
.otm-fv-thumb.active{border-color:var(--otm-primary);opacity:1}
.otm-fv-thumb:hover{opacity:1;border-color:var(--otm-primary-dark)}
.otm-fv-thumb img{width:100%;height:44px;object-fit:cover}
.otm-fv-thumb.hidden{display:none}

/* FV Right Detail */
.otm-fv-right{position:relative}
.otm-fv-detail{display:none;animation:detail-slide-in .35s both}
.otm-fv-detail.active{display:block}
@keyframes detail-slide-in{from{opacity:0;transform:translateY(12px)}to{opacity:1;transform:translateY(0)}}
.otm-fv-detail__badge{display:inline-flex;align-items:center;gap:.5rem;background:var(--otm-primary-light);color:var(--otm-primary);font-size:.78rem;font-weight:700;font-family:var(--otm-font-body);padding:.4rem 1rem;border-radius:100px;margin-bottom:1rem;letter-spacing:.05em;text-transform:uppercase}
.otm-fv-detail__icon{font-size:1.1rem}
.otm-fv-detail__title{font-size:clamp(1.3rem,2.5vw,1.9rem);line-height:1.2;margin-bottom:1rem;color:var(--otm-text)}
.otm-fv-detail__desc{color:var(--otm-text-muted);font-size:.97rem;line-height:1.8;margin-bottom:1.5rem;padding-left:0;list-style:none}
.otm-fv-detail__bullets{list-style:none;padding:0;display:flex;flex-direction:column;gap:.65rem;margin-bottom:2rem}
.otm-fv-detail__bullets li{display:flex;align-items:flex-start;gap:.7rem;font-size:.92rem;color:var(--otm-text);line-height:1.5}
.otm-fv-bullet-check{flex-shrink:0;width:20px;height:20px;background:linear-gradient(135deg,var(--otm-primary),var(--otm-violet));border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;margin-top:.15rem}
.otm-fv-detail__actions{display:flex;align-items:center;gap:1.5rem;padding-top:1.5rem;border-top:1px solid var(--otm-border)}
.otm-fv-detail__screen-no{font-size:.8rem;color:var(--otm-text-light);font-family:var(--otm-font-body)}

/* ── Pricing ─────────────────────────────────────────────────── */
.otm-pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem;align-items:start}
.otm-pricing-card{background:#fff;border:1.5px solid var(--otm-border);border-radius:var(--otm-radius-xl);padding:2rem;transition:all .3s;position:relative}
.otm-pricing-card:hover{border-color:var(--otm-primary);box-shadow:var(--otm-shadow-lg);transform:translateY(-4px)}
.otm-pricing-card--popular{border-color:var(--otm-primary);box-shadow:0 0 0 4px rgba(92,95,239,.1)}
.otm-pricing-popular-badge{display:inline-flex;align-items:center;gap:.3rem;background:var(--otm-primary);color:#fff;font-size:.75rem;font-weight:700;font-family:var(--otm-font-body);padding:.3rem .8rem;border-radius:100px;margin-bottom:1rem}
.otm-pricing-name{font-family:var(--otm-font-body);font-weight:800;font-size:1.1rem;color:var(--otm-text);margin-bottom:.25rem}
.otm-pricing-tagline{font-size:.85rem;color:var(--otm-text-muted);margin-bottom:1.2rem}
.otm-pricing-price{display:flex;align-items:baseline;gap:.25rem;margin-bottom:.25rem}
.otm-pricing-currency{font-size:1.4rem;font-weight:700;font-family:var(--otm-font-body);color:var(--otm-primary)}
.otm-pricing-amount{font-size:3rem;font-weight:800;font-family:var(--otm-font-body);color:var(--otm-text);line-height:1}
.otm-pricing-period{font-size:.85rem;color:var(--otm-text-muted)}
.otm-pricing-orig{font-size:.82rem;color:var(--otm-text-light);text-decoration:line-through;margin-bottom:1.2rem}
.otm-pricing-divider{border:none;border-top:1px solid var(--otm-border);margin:1.2rem 0}
.otm-pricing-features{list-style:none;padding:0;display:flex;flex-direction:column;gap:.6rem;margin-bottom:1.5rem;font-size:.88rem}
.otm-pricing-features li::before{content:"✓ ";color:var(--otm-success);font-weight:700}
.otm-pricing-features li.unavailable{opacity:.4}
.otm-pricing-features li.unavailable::before{content:"✕ ";color:var(--otm-danger)}
.otm-pricing-toggle-wrap{display:flex;align-items:center;gap:.75rem;justify-content:center;margin-top:1.2rem;font-size:.88rem;font-weight:600;color:var(--otm-text-muted)}
.otm-toggle{position:relative;width:44px;height:24px;display:inline-block}
.otm-toggle input{opacity:0;width:0;height:0}
.otm-toggle-slider{position:absolute;inset:0;background:var(--otm-border);border-radius:100px;cursor:pointer;transition:.3s}
.otm-toggle-slider::before{content:'';position:absolute;width:18px;height:18px;left:3px;top:3px;background:#fff;border-radius:50%;transition:.3s;box-shadow:0 1px 4px rgba(0,0,0,.2)}
.otm-toggle input:checked+.otm-toggle-slider{background:var(--otm-primary)}
.otm-toggle input:checked+.otm-toggle-slider::before{transform:translateX(20px)}
.otm-badge{display:inline-flex;align-items:center;padding:.2rem .6rem;border-radius:100px;font-size:.7rem;font-weight:700;font-family:var(--otm-font-body)}
.otm-badge--success{background:#d1fae5;color:#065f46}

/* ── Testimonials ────────────────────────────────────────────── */
.otm-testimonial-card{background:#fff;border:1.5px solid var(--otm-border);border-radius:var(--otm-radius-xl);padding:2rem;transition:all .3s}
.otm-testimonial-card:hover{border-color:var(--otm-primary);box-shadow:var(--otm-shadow-lg);transform:translateY(-4px)}
.otm-testimonial-stars{color:#f59e0b;font-size:1.1rem;margin-bottom:.9rem;letter-spacing:.05em}
.otm-testimonial-text{color:var(--otm-text-muted);font-size:.93rem;line-height:1.7;margin-bottom:1.2rem}
.otm-testimonial-author{display:flex;align-items:center;gap:.75rem}
.otm-testimonial-avatar{width:40px;height:40px;background:linear-gradient(135deg,var(--otm-primary),var(--otm-violet));border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-family:var(--otm-font-body);font-size:.9rem}
.otm-testimonial-name{font-weight:700;font-family:var(--otm-font-body);font-size:.9rem}
.otm-testimonial-role{font-size:.8rem;color:var(--otm-text-muted)}

/* ── FAQ ─────────────────────────────────────────────────────── */
.otm-faq-list{max-width:760px;margin-inline:auto;display:flex;flex-direction:column;gap:.5rem}
.otm-faq-item{background:#fff;border:1.5px solid var(--otm-border);border-radius:var(--otm-radius-lg);overflow:hidden;transition:border-color .2s}
.otm-faq-item.open{border-color:var(--otm-primary)}
.otm-faq-question{padding:1.2rem 1.5rem;display:flex;align-items:center;justify-content:space-between;gap:1rem;cursor:pointer;font-weight:600;font-family:var(--otm-font-body);font-size:.95rem;color:var(--otm-text);user-select:none}
.otm-faq-icon{width:22px;height:22px;background:var(--otm-bg-soft);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:1rem;font-weight:300;flex-shrink:0;transition:all .3s;color:var(--otm-primary)}
.otm-faq-item.open .otm-faq-icon{transform:rotate(45deg);background:var(--otm-primary);color:#fff}
.otm-faq-answer{max-height:0;overflow:hidden;transition:max-height .4s cubic-bezier(0.4,0,0.2,1)}
.otm-faq-answer-inner{padding:0 1.5rem 1.2rem;color:var(--otm-text-muted);font-size:.9rem;line-height:1.8}

/* ── CTA Banner ──────────────────────────────────────────────── */
.otm-cta-banner{background:linear-gradient(135deg,#3730a3 0%,#5c5fef 50%,#7c3aed 100%);padding:4rem 0;position:relative;overflow:hidden}
.otm-cta-banner__glow{position:absolute;top:-100px;left:50%;transform:translateX(-50%);width:600px;height:400px;background:rgba(255,255,255,.08);border-radius:50%;filter:blur(40px)}
.otm-cta-banner__inner{text-align:center;position:relative;z-index:1}
.otm-cta-banner h2{color:#fff;font-size:clamp(1.8rem,3vw,2.5rem);margin-bottom:.75rem}
.otm-cta-banner p{color:rgba(255,255,255,.8);font-size:1.05rem;margin-bottom:2rem}
.otm-cta-banner__btns{display:flex;gap:1rem;justify-content:center;flex-wrap:wrap}
.otm-cta-banner .otm-btn--accent{background:#fff;color:var(--otm-primary);border-color:#fff}
.otm-cta-banner .otm-btn--accent:hover{background:rgba(255,255,255,.9)}
.otm-cta-banner .otm-btn--outline{border-color:rgba(255,255,255,.5);color:#fff}
.otm-cta-banner .otm-btn--outline:hover{background:rgba(255,255,255,.1);border-color:#fff}

/* ── Footer ──────────────────────────────────────────────────── */
.otm-footer{background:var(--otm-text);color:rgba(255,255,255,.65);padding:3rem 0 1.5rem}
.otm-footer__inner{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:2.5rem;margin-bottom:2.5rem}
.otm-footer__brand .otm-logo-text{color:#fff}
.otm-footer__brand .otm-logo-mark svg rect{fill:#fff;opacity:.1}
.otm-footer__brand-desc{font-size:.85rem;margin-top:.75rem;line-height:1.7;color:rgba(255,255,255,.5)}
.otm-footer__col-title{font-family:var(--otm-font-body);font-size:.78rem;font-weight:700;text-transform:uppercase;letter-spacing:.1em;color:#fff;margin-bottom:.9rem}
.otm-footer__links{list-style:none;padding:0;display:flex;flex-direction:column;gap:.45rem}
.otm-footer__links a{color:rgba(255,255,255,.5);font-size:.85rem;transition:color .2s}
.otm-footer__links a:hover{color:#fff}
.otm-footer__bottom{border-top:1px solid rgba(255,255,255,.08);padding-top:1.5rem;display:flex;justify-content:space-between;align-items:center;font-size:.8rem}

/* ── Animations ─────────────────────────────────────────────── */
[data-otm-animate]{opacity:0;transform:translateY(24px);transition:opacity .6s ease,transform .6s ease}
[data-otm-animate].otm-animate{opacity:1;transform:none}

/* ── Responsive ─────────────────────────────────────────────── */
@media(max-width:1024px){
  .otm-hero__inner{grid-template-columns:1fr}
  .otm-hero__visual{order:-1}
  .otm-hero__features-grid{grid-template-columns:1fr 1fr}
  .otm-hero__features-grid--wide{grid-template-columns:repeat(2,1fr)}
  .otm-fv-layout{grid-template-columns:1fr}
  .otm-fv-left{position:static}
  .otm-pricing-grid{grid-template-columns:1fr}
  .otm-grid--3{grid-template-columns:1fr}
  .otm-footer__inner{grid-template-columns:1fr 1fr}
  .otm-header__features{display:none}
}
@media(max-width:768px){
  .otm-hero__features-grid{grid-template-columns:1fr}
  .otm-hero__features-grid--wide{grid-template-columns:repeat(2,1fr)}
  .otm-nav{display:none;position:fixed;inset:0;background:rgba(250,250,250,.98);backdrop-filter:blur(20px);flex-direction:column;padding:80px 2rem 2rem;z-index:999}
  .otm-nav.open{display:flex}
  .otm-nav__list{flex-direction:column;gap:.25rem}
  .otm-nav__link{font-size:1.1rem;padding:.75rem 1rem}
  .otm-hamburger{display:flex}
  .otm-header__actions .otm-btn--ghost{display:none}
  .otm-hero__badge-float{display:none}
  .otm-hero__float-card{display:none}
  .otm-fv-thumbs{grid-template-columns:repeat(5,1fr)}
  .otm-pricing-grid{grid-template-columns:1fr}
  .otm-grid--3{grid-template-columns:1fr}
  .otm-grid--2{grid-template-columns:1fr}
  .otm-footer__inner{grid-template-columns:1fr}
  .otm-footer__bottom{flex-direction:column;gap:.5rem;text-align:center}
  .otm-section{padding-block:3.5rem}
  .otm-fv-tabs{justify-content:center}
}
@media(max-width:480px){
  .otm-hero__actions{flex-direction:column}
  .otm-hero__actions .otm-btn{width:100%;justify-content:center}
  .otm-hero__features-grid--wide{grid-template-columns:1fr}
  .otm-fv-thumbs{grid-template-columns:repeat(4,1fr)}
  .otm-pricing-toggle-wrap{flex-wrap:wrap;justify-content:center}
}

/* ================================================================
   FEATURES GRID SECTION — Professional SaaS Dark Style
   Full-width, icon + text cards, texture + animated icons
   ================================================================ */

/* ── Section wrapper ─────────────────────────────────────────── */
.otm-features-grid-section {
  position: relative;
  background: #080c1a;
  overflow: hidden;
  padding-block: 6rem;
  width: 100%;
}

/* ── Dot-grid texture overlay ────────────────────────────────── */
.otm-feat-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(92,95,239,0.18) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

/* ── Background orbs ─────────────────────────────────────────── */
.otm-feat-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.otm-feat-orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(92,95,239,0.22) 0%, transparent 70%);
  top: -120px; left: -100px;
  animation: orb-drift-1 18s ease-in-out infinite;
}
.otm-feat-orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(139,92,246,0.18) 0%, transparent 70%);
  bottom: 0; right: -80px;
  animation: orb-drift-2 24s ease-in-out infinite;
}
.otm-feat-orb--3 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(217,70,239,0.12) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  animation: orb-drift-3 30s ease-in-out infinite;
}
@keyframes orb-drift-1 { 0%,100%{transform:translate(0,0)} 33%{transform:translate(60px,40px)} 66%{transform:translate(-30px,70px)} }
@keyframes orb-drift-2 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(-50px,-60px)} }
@keyframes orb-drift-3 { 0%,100%{transform:translate(-50%,-50%) scale(1)} 50%{transform:translate(-50%,-50%) scale(1.4)} }

/* ── Section header ──────────────────────────────────────────── */
.otm-feat-header {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 3rem;
}
.otm-feat-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(92,95,239,0.9);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--otm-font-body);
  margin-bottom: 1.2rem;
}
.otm-feat-eyebrow__dot {
  width: 5px; height: 5px;
  background: var(--otm-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--otm-primary);
  animation: eyebrow-blink 2s ease-in-out infinite;
}
.otm-feat-eyebrow__dot:last-child { animation-delay: 0.5s; }
@keyframes eyebrow-blink {
  0%,100%{opacity:1;box-shadow:0 0 6px var(--otm-primary)}
  50%{opacity:0.4;box-shadow:0 0 2px var(--otm-primary)}
}

.otm-feat-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.1rem;
  font-weight: 400;
}
.otm-gradient-text-light {
  background: linear-gradient(135deg, #818cf8 0%, #c084fc 50%, #f472b6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.otm-feat-subtitle {
  color: rgba(255,255,255,0.5);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ── Banner-only mode (heading + paragraph only, no tabs/cards) ─
   Applied via .otm-feat-banner-container on the container div.
   Collapses the large bottom margin that existed for the card grid. */
.otm-feat-banner-container { position: relative; z-index: 2; }
.otm-feat-banner-container .otm-feat-header { margin-bottom: 0; }

/* ── Category Filter Tabs ────────────────────────────────────── */
.otm-feat-tabs {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}
.otm-feat-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--otm-font-body);
  cursor: pointer;
  transition: all 0.22s;
  backdrop-filter: blur(8px);
}
.otm-feat-tab em {
  font-style: normal;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4);
  border-radius: 100px;
  padding: 0.05rem 0.45rem;
  font-size: 0.72rem;
}
.otm-feat-tab:hover {
  border-color: rgba(92,95,239,0.5);
  color: #fff;
  background: rgba(92,95,239,0.12);
}
.otm-feat-tab.active {
  background: var(--otm-primary);
  border-color: var(--otm-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(92,95,239,0.4);
}
.otm-feat-tab.active em {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* ── Features Grid ───────────────────────────────────────────── */
.otm-feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

/* ── Feature Card ────────────────────────────────────────────── */
.otm-feat-card {
  position: relative;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 1.75rem 1.4rem 1.5rem;
  overflow: hidden;
  transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
  cursor: default;
  animation: card-fade-in 0.5s both;
  animation-delay: var(--card-delay, 0s);
  backdrop-filter: blur(4px);
}
.otm-feat-card.feat-hidden { display: none; }
@keyframes card-fade-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.otm-feat-card:hover {
  border-color: rgba(92,95,239,0.4);
  background: rgba(92,95,239,0.07);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(92,95,239,0.2);
}
.otm-feat-card:hover .otm-feat-card__glow {
  opacity: 1;
}

/* Card hover glow */
.otm-feat-card__glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 30% 30%, rgba(92,95,239,0.12) 0%, transparent 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

/* Card number */
.otm-feat-card__num {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  font-size: 0.65rem;
  font-weight: 800;
  font-family: var(--otm-font-body);
  color: rgba(255,255,255,0.12);
  letter-spacing: 0.05em;
}

/* ── Icon Wrapper with animated rings ────────────────────────── */
.otm-feat-card__icon-wrap {
  position: relative;
  width: 56px;
  height: 56px;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.otm-feat-card__icon-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(92,95,239,0.3);
  animation: icon-ring-pulse 3s ease-in-out infinite;
}
.otm-feat-card__icon-ring--2 {
  inset: -10px;
  border-color: rgba(92,95,239,0.12);
  animation-delay: 0.8s;
  animation-duration: 3.5s;
}
@keyframes icon-ring-pulse {
  0%,100% { opacity: 0.6; transform: scale(1); }
  50%      { opacity: 1;   transform: scale(1.08); border-color: rgba(92,95,239,0.55); }
}

.otm-feat-card__icon {
  position: relative;
  z-index: 1;
  font-size: 1.65rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(92,95,239,0.12);
  border-radius: 14px;
  border: 1px solid rgba(92,95,239,0.2);
  animation: icon-blink 4s ease-in-out infinite;
  animation-delay: var(--card-delay, 0s);
}
@keyframes icon-blink {
  0%,90%,100% { box-shadow: 0 0 0 0 rgba(92,95,239,0); }
  45%          { box-shadow: 0 0 14px 4px rgba(92,95,239,0.35); }
}

/* ── Badge ───────────────────────────────────────────────────── */
.otm-feat-card__badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  font-family: var(--otm-font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.65rem;
  border-radius: 100px;
  margin-bottom: 0.65rem;
}
.otm-feat-card__badge--analytics  { background:rgba(99,102,241,0.18); color:#818cf8; }
.otm-feat-card__badge--wallets     { background:rgba(16,185,129,0.15); color:#34d399; }
.otm-feat-card__badge--transactions{ background:rgba(245,158,11,0.15); color:#fbbf24; }
.otm-feat-card__badge--withdrawals { background:rgba(239,68,68,0.15);  color:#f87171; }
.otm-feat-card__badge--settings    { background:rgba(100,116,139,0.2); color:#94a3b8; }
.otm-feat-card__badge--cashback    { background:rgba(249,115,22,0.15); color:#fb923c; }
.otm-feat-card__badge--mobile      { background:rgba(217,70,239,0.15); color:#e879f9; }
/* Aliases */
.otm-feat-card__badge--gateway { background:rgba(99,102,241,0.18); color:#818cf8; }
.otm-feat-card__badge--mobile  { background:rgba(217,70,239,0.15); color:#e879f9; }

/* ── Card Title ──────────────────────────────────────────────── */
.otm-feat-card__title {
  font-size: 0.97rem;
  font-weight: 700;
  font-family: var(--otm-font-body);
  color: #fff;
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

/* ── Card Description ────────────────────────────────────────── */
.otm-feat-card__desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.65;
  margin-bottom: 1rem;
}

/* ── Bullet list ─────────────────────────────────────────────── */
.otm-feat-card__bullets {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.otm-feat-card__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.77rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.45;
}
.otm-feat-check-svg {
  flex-shrink: 0;
  margin-top: 0.15rem;
  color: var(--otm-primary);
  opacity: 0.8;
}

/* ── Bottom CTA ──────────────────────────────────────────────── */
.otm-feat-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}
.otm-feat-cta__note {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  font-family: var(--otm-font-body);
}

/* ── Responsive ──────────────────────────────────────────────── */
@media(max-width:1200px) {
  .otm-feat-grid { grid-template-columns: repeat(3, 1fr); }
}
@media(max-width:900px) {
  .otm-feat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media(max-width:520px) {
  .otm-feat-grid { grid-template-columns: 1fr; }
  .otm-features-grid-section { padding-block: 4rem; }
  .otm-feat-card { padding: 1.4rem 1.2rem 1.2rem; }
}

/* ============================================================
   OH Theme — Main CSS Additions v2.2.1
   Hero Dashboard Preview + Account Page SaaS Redesign
   ============================================================ */

/* ── Hero animated dashboard preview ────────────────────────── */
.otm-hero__dash-preview {
  width: 100%;
  background: #0f1117;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  min-height: 340px;
}

/* stat row */
.otm-dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .6rem;
}
.otm-dash-stat {
  border-radius: 10px;
  padding: .65rem .8rem;
  border: 1px solid rgba(255,255,255,.08);
  display: flex; flex-direction: column; gap: .2rem;
}
.otm-dash-stat--blue   { background: rgba(99,102,241,.12); border-color: rgba(99,102,241,.25); }
.otm-dash-stat--violet { background: rgba(168,85,247,.12); border-color: rgba(168,85,247,.25); }
.otm-dash-stat--green  { background: rgba(16,185,129,.12); border-color: rgba(16,185,129,.25); }
.otm-dash-stat__icon {
  color: rgba(255,255,255,.5); margin-bottom: .1rem;
}
.otm-dash-stat__val {
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem; font-weight: 800; color: #f1f5f9; line-height: 1;
}
.otm-dash-stat__lbl {
  font-size: .65rem; color: rgba(255,255,255,.4);
  font-family: 'DM Sans', sans-serif;
}
.otm-dash-stat__trend {
  font-size: .65rem; font-weight: 700; color: #34d399;
  font-family: 'DM Sans', sans-serif;
}

/* chart area */
.otm-dash-chart {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 10px;
  padding: .7rem .8rem;
}
.otm-dash-chart__title {
  display: flex; align-items: center; justify-content: space-between;
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.6);
  margin-bottom: .6rem;
}
.otm-dash-chart__badge {
  background: rgba(16,185,129,.2); border: 1px solid rgba(16,185,129,.4);
  color: #34d399; font-size: .62rem; font-weight: 700;
  padding: .1rem .4rem; border-radius: 20px;
  display: flex; align-items: center; gap: .25rem;
}
.otm-dash-chart__badge::before {
  content: ''; width: 5px; height: 5px;
  background: #34d399; border-radius: 50%;
  animation: otm-pulse 1.5s infinite;
}
@keyframes otm-pulse {
  0%,100% { opacity:1; } 50% { opacity:.3; }
}
.otm-dash-bars {
  display: flex; align-items: flex-end;
  gap: 3px; height: 52px;
}
.otm-dash-bar {
  flex: 1;
  background: linear-gradient(to top, #6366f1, #8b5cf6);
  border-radius: 3px 3px 0 0;
  opacity: .75;
  animation: otm-bar-grow .8s ease calc(var(--bi) * 0.05s) both;
}
@keyframes otm-bar-grow {
  from { transform: scaleY(0); transform-origin: bottom; opacity:0; }
  to   { transform: scaleY(1); transform-origin: bottom; opacity:.75; }
}

/* transaction list */
.otm-dash-txns {
  display: flex; flex-direction: column; gap: .4rem;
}
.otm-dash-txn {
  display: flex; align-items: center; gap: .55rem;
  padding: .42rem .6rem;
  border-radius: 8px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}
.otm-dash-txn__dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}
.otm-dash-txn__dot--green { background: #34d399; }
.otm-dash-txn__dot--blue  { background: #6366f1; }
.otm-dash-txn__dot--amber { background: #f59e0b; }
.otm-dash-txn__info {
  flex: 1; min-width: 0;
}
.otm-dash-txn__info span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.8);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.otm-dash-txn__info small {
  font-size: .62rem; color: rgba(255,255,255,.35);
  font-family: 'DM Sans', sans-serif;
}
.otm-dash-txn__amt {
  font-family: 'DM Sans', sans-serif;
  font-size: .73rem; font-weight: 700; white-space: nowrap; flex-shrink: 0;
}
.otm-dash-txn__amt--green { color: #34d399; }
.otm-dash-txn__amt--blue  { color: #818cf8; }
.otm-dash-txn__amt--amber { color: #fbbf24; }

/* ── Account Page — Plugin Selling Edition ────────────────────── */

/* Welcome banner */
.otm-account-welcome {
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #4338ca 100%);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(99,102,241,.3);
  position: relative;
  overflow: hidden;
}
.otm-account-welcome::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(139,92,246,.3) 0%, transparent 60%);
  pointer-events: none;
}
.otm-account-welcome__inner {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.otm-account-welcome__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.2rem; font-weight: 800; color: #fff;
  margin-bottom: .3rem;
}
.otm-account-welcome__subtitle {
  font-size: .88rem; color: rgba(255,255,255,.6);
  font-family: 'DM Sans', sans-serif;
}
.otm-account-welcome__plan {
  display: flex; flex-direction: column; align-items: flex-end; gap: .3rem;
}
.otm-account-plan-chip {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(16,185,129,.2); border: 1px solid rgba(16,185,129,.4);
  color: #34d399; font-size: .8rem; font-weight: 700;
  padding: .35rem .9rem; border-radius: 20px;
  font-family: 'DM Sans', sans-serif;
}
.otm-account-welcome__expiry {
  font-size: .72rem; color: rgba(255,255,255,.45);
  font-family: 'DM Sans', sans-serif;
}

/* Stats grid */
.otm-account-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.otm-account-stat-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 1.2rem 1.25rem;
  display: flex; align-items: center; gap: .9rem;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.otm-account-stat-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transform: translateY(-2px);
}
.otm-account-stat-card__icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.otm-account-stat-card--indigo .otm-account-stat-card__icon { background:#eef2ff; color:#6366f1; }
.otm-account-stat-card--blue   .otm-account-stat-card__icon { background:#eff6ff; color:#3b82f6; }
.otm-account-stat-card--violet .otm-account-stat-card__icon { background:#f5f3ff; color:#8b5cf6; }
.otm-account-stat-card--amber  .otm-account-stat-card__icon { background:#fffbeb; color:#f59e0b; }
.otm-account-stat-card__body { flex: 1; min-width: 0; }
.otm-account-stat-card__val {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.5rem; font-weight: 800; color: #1e293b; line-height: 1;
  margin-bottom: .2rem;
}
.otm-account-stat-card__lbl {
  font-size: .78rem; color: #6b7280;
  font-family: 'DM Sans', sans-serif; font-weight: 500;
}
.otm-account-stat-card__link {
  position: absolute; top: 1rem; right: 1rem;
  width: 28px; height: 28px; border-radius: 8px;
  background: #f3f4f6; color: #6b7280;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: background .2s, color .2s;
}
.otm-account-stat-card__link:hover { background:#6366f1; color:#fff; }

/* Plan badge in sidebar */
.otm-account-plan-badge {
  display: inline-block;
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: #fff; font-size: .68rem; font-weight: 700;
  padding: .2rem .6rem; border-radius: 20px;
  font-family: 'DM Sans', sans-serif;
  margin-top: .3rem;
}

/* Sidebar logout color */
.otm-account-nav-item--logout { color: #ef4444 !important; }
.otm-account-nav-item--logout:hover { background: #fef2f2 !important; }

/* Nav badge */
.otm-account-nav-badge {
  margin-left: auto;
  background: #ef4444; color: #fff;
  font-size: .65rem; font-weight: 800;
  padding: .1rem .4rem; border-radius: 20px;
  font-family: 'DM Sans', sans-serif;
}

/* Account card arrow */
.otm-account-card {
  position: relative;
}
.otm-account-card__arrow {
  position: absolute; bottom: 1.25rem; right: 1.25rem;
  font-size: 1rem; color: #9ca3af;
  transition: transform .2s, color .2s;
}
.otm-account-card:hover .otm-account-card__arrow {
  transform: translateX(4px); color: #6366f1;
}

/* Empty state */
.otm-account-empty-state {
  padding: 2.5rem;
  text-align: center;
  color: #9ca3af;
  font-size: .88rem;
  font-family: 'DM Sans', sans-serif;
}
.otm-account-empty-state__icon {
  font-size: 2.5rem; margin-bottom: .75rem;
}
.otm-account-empty-state__title {
  font-weight: 700; color: #6b7080;
  margin-bottom: .25rem; font-size: .95rem;
}
.otm-account-empty-state__desc {
  color: #9ca3af; font-size: .83rem;
}

/* ── Responsive account ─────────────────────────────────────── */
@media (max-width: 1100px) {
  .otm-account-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .otm-account-layout {
    flex-direction: column;
  }
  .otm-account-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #e5e7eb;
  }
  .otm-account-nav {
    display: flex; flex-wrap: wrap; gap: .35rem;
    padding: .5rem;
  }
  .otm-account-nav-item {
    flex: none;
    padding: .45rem .85rem;
    border-radius: 8px;
    font-size: .83rem;
  }
  .otm-account-nav-divider {
    width: 100%; height: 1px;
  }
}
@media (max-width: 600px) {
  .otm-account-stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
  }
  .otm-account-stat-card__val { font-size: 1.2rem; }
  .otm-account-welcome { padding: 1.25rem; }
  .otm-account-welcome__title { font-size: 1rem; }
  .otm-account-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 380px) {
  .otm-account-stats-grid { grid-template-columns: 1fr; }
}

/* ── Responsive Hero dashboard preview ─────────────────────── */
@media (max-width: 768px) {
  .otm-hero__dash-preview { min-height: 260px; padding: .75rem; }
  .otm-dash-stats { gap: .4rem; }
  .otm-dash-stat__val { font-size: .75rem; }
}
