/* DEL REY BANK — shared styles (reproduced from the SVG mockups) */
:root{
	--blue:#1629D1;        /* wordmark / primary */
	--blue-deep:#1828BA;   /* underline / divider */
	--pink:#EF5DA8;        /* accent */
	--discord:#5965F2;
	--ink:#2D2D2D;         /* headings */
	--ink-soft:#424242;    /* body dark */
	--muted:#6F6F6F;
	--line:#DCDCDC;
	--field:#EAEAEA;
	--card:#fff;
}
*{box-sizing:border-box;}
html,body{margin:0;}
body{
	font-family:-apple-system,BlinkMacSystemFont,"Helvetica Neue",Arial,sans-serif;
	color:var(--ink-soft);
	background:#fff;
	-webkit-font-smoothing:antialiased;
}
a{color:inherit;text-decoration:none;}

/* Shared content shell — header, tabs and main all align to these margins */
.drb-shell{max-width:1380px;margin:0 auto;padding:0 40px;}
.drb-main{max-width:1380px;margin:0 auto;padding:0 40px;}

/* Top tabs (Personal / Corporation) — border spans full width, content aligned */
.drb-tabs{border-bottom:1px solid var(--line);font-size:15px;}
.drb-tabs__inner{display:flex;gap:26px;padding-top:14px;}
.drb-tabs a{padding-bottom:12px;color:var(--ink);font-weight:600;}
.drb-tabs a.is-active{color:var(--ink);border-bottom:3px solid var(--pink);}
.drb-tabs a:not(.is-active){font-weight:500;color:#222;}

/* Header — border spans full width, content aligned to the body margins.
   Use longhand top/bottom padding so the shell's left/right 40px survive. */
.drb-header{border-bottom:1px solid var(--line);}
.drb-header__inner{display:flex;align-items:center;justify-content:space-between;padding-top:14px;padding-bottom:14px;}
.drb-brand{display:flex;align-items:flex-end;gap:12px;}
.drb-brand img{width:42px;height:42px;display:block;}
.drb-wordmark{font-family:'Montserrat',-apple-system,"Helvetica Neue",Arial,sans-serif;font-weight:800;font-size:30px;line-height:1;letter-spacing:.04em;color:var(--blue);}
.drb-nav{display:flex;gap:54px;font-size:19px;font-weight:600;color:var(--ink);}
.drb-nav a:hover{color:var(--blue);}

/* Buttons */
.drb-discord{
	display:inline-flex;align-items:center;gap:10px;
	background:var(--discord);color:#fff;border:0;border-radius:28px;
	padding:14px 26px;font-size:16px;font-weight:600;cursor:pointer;
	box-shadow:0 8px 20px rgba(89,101,242,.28);font-family:inherit;
}
.drb-discord:hover{filter:brightness(1.05);}
.drb-discord svg{width:24px;height:24px;fill:#fff;}
.drb-fineprint{color:var(--muted);font-size:14px;margin:10px 0 0;text-align:center;}

/* Home hero */
.drb-hero{display:grid;grid-template-columns:1fr 1.25fr;gap:40px;padding:90px 0 120px;align-items:start;}
.drb-hero__cta{align-self:center;display:flex;flex-direction:column;align-items:center;margin-top:120px;}
.drb-hero__title{font-size:80px;line-height:1.02;font-weight:700;color:#000;letter-spacing:-.01em;margin:0 0 28px;}
.drb-hero__sub{font-size:30px;line-height:1.32;color:var(--ink-soft);max-width:680px;margin:0;font-weight:400;}

/* Signup */
.drb-signup{padding:54px 0 120px;}
.drb-h1{font-size:64px;font-weight:800;color:var(--ink);letter-spacing:-.01em;margin:0;}
.drb-rule{height:6px;width:455px;max-width:60%;background:var(--blue-deep);border-radius:3px;margin:18px 0 40px;}
.drb-q{font-size:34px;font-weight:600;color:var(--ink);margin:0 0 28px;}
.drb-cards{display:flex;gap:34px;flex-wrap:wrap;}
.drb-card{
	background:var(--card);border-radius:14px;padding:22px 26px;min-width:300px;
	box-shadow:0 10px 30px rgba(0,0,0,.10);cursor:pointer;border:1px solid #f0f0f0;
	transition:transform .15s, box-shadow .15s;
}
.drb-card:hover{transform:translateY(-2px);box-shadow:0 14px 36px rgba(0,0,0,.14);}
.drb-card__top{display:flex;align-items:center;justify-content:space-between;gap:18px;}
.drb-card__title{font-size:28px;font-weight:800;color:#000;}
.drb-card__top svg{width:34px;height:34px;flex-shrink:0;}
.drb-card__sub{color:var(--muted);font-size:13px;margin:8px 0 0;}

.drb-divider{height:6px;width:455px;max-width:60%;background:var(--blue-deep);border-radius:3px;margin:64px 0 30px;}
.drb-step{font-size:34px;font-weight:600;color:var(--ink);line-height:1.25;margin:0 0 26px;}

.drb-verify{background:var(--card);border-radius:14px;padding:24px 28px;box-shadow:0 10px 30px rgba(0,0,0,.10);max-width:520px;}
.drb-verify__title{font-size:26px;font-weight:800;color:#000;margin:0 0 8px;}
.drb-verify__text{color:var(--ink-soft);font-size:16px;font-weight:600;line-height:1.4;margin:0 0 18px;}
.drb-cmd{display:flex;align-items:center;justify-content:space-between;gap:14px;background:var(--field);border-radius:10px;padding:12px 16px;}
.drb-cmd code{font-family:ui-monospace,Menlo,Consolas,monospace;font-size:17px;color:#222;}
.drb-cmd button{background:#cfcfcf;border:0;border-radius:8px;padding:7px 16px;font-size:14px;font-weight:600;cursor:pointer;font-family:inherit;}
.drb-cmd button:hover{background:#bdbdbd;}

@media(max-width:900px){
	.drb-nav{display:none;}
	.drb-hero{grid-template-columns:1fr;padding:48px 0;}
	.drb-hero__cta{margin-top:0;order:2;align-items:flex-start;}
	.drb-hero__title{font-size:46px;}
	.drb-hero__sub{font-size:20px;}
	.drb-h1{font-size:40px;}
	.drb-q,.drb-step{font-size:24px;}
	.drb-rule,.drb-divider{max-width:80%;}
}

/* ============================================================
   HOMEPAGE (redesign)
   ============================================================ */
.drb-ink{color:#0e1330;}
.drb-mont{font-family:'Montserrat',-apple-system,"Helvetica Neue",Arial,sans-serif;}

/* Buttons */
.drb-btn{display:inline-flex;align-items:center;gap:10px;background:var(--blue);color:#fff;font-weight:700;font-size:17px;padding:15px 30px;border-radius:12px;border:0;cursor:pointer;text-decoration:none;box-shadow:0 12px 26px rgba(22,41,209,.26);transition:.15s;font-family:inherit;}
.drb-btn:hover{background:var(--blue-deep);transform:translateY(-1px);}
.drb-btn--pink{background:var(--pink);box-shadow:0 12px 26px rgba(239,93,168,.35);}
.drb-btn--pink:hover{background:#e7479a;}
.drb-textlink{color:var(--blue);font-weight:600;font-size:16px;display:inline-flex;align-items:center;gap:7px;text-decoration:none;}
.drb-textlink:hover{gap:11px;}
.drb-textlink svg{width:18px;height:18px;}

/* Hero */
.drb-hero2{display:grid;grid-template-columns:1.05fr .95fr;gap:60px;align-items:center;padding:78px 0 96px;}
.drb-eyebrow{display:inline-flex;align-items:center;gap:8px;background:#eef0ff;color:var(--blue);font-weight:700;font-size:12.5px;letter-spacing:.05em;text-transform:uppercase;padding:7px 14px;border-radius:30px;}
.drb-hero2 h1{font-size:62px;line-height:1.03;font-weight:800;letter-spacing:-.02em;margin:22px 0 20px;}
.drb-hero2 .drb-lede{font-size:20px;line-height:1.55;color:var(--ink-soft);max-width:580px;margin:0 0 32px;}
.drb-cta-row{display:flex;align-items:center;gap:26px;flex-wrap:wrap;}

/* Hero preview card */
.drb-preview{background:#fff;border:1px solid #e9ebf2;border-radius:22px;box-shadow:0 36px 70px rgba(14,19,48,.14);padding:26px;}
.drb-preview__head{display:flex;align-items:center;justify-content:space-between;margin-bottom:6px;}
.drb-preview__label{color:var(--muted);font-size:13px;font-weight:600;letter-spacing:.03em;text-transform:uppercase;}
.drb-preview__chip{background:#e6f7ec;color:#137a3e;font-size:12px;font-weight:700;padding:4px 10px;border-radius:20px;}
.drb-preview__bal{font-size:42px;font-weight:800;letter-spacing:-.02em;margin:2px 0 18px;}
.drb-preview__rows{display:flex;flex-direction:column;gap:2px;border-top:1px solid #eef0f3;padding-top:6px;}
.drb-prow{display:flex;align-items:center;justify-content:space-between;padding:11px 0;border-bottom:1px solid #f3f4f7;font-size:14.5px;}
.drb-prow:last-child{border-bottom:0;}
.drb-prow .t{color:#1d2342;font-weight:600;}
.drb-prow .s{color:var(--muted);font-size:12.5px;}
.drb-prow .pos{color:#137a3e;font-weight:700;font-variant-numeric:tabular-nums;}
.drb-prow .neg{color:#444;font-weight:700;font-variant-numeric:tabular-nums;}

/* Generic section */
.drb-section{padding:88px 0;}
.drb-section--alt{background:#f7f8fb;}
.drb-h2{font-size:42px;font-weight:800;letter-spacing:-.015em;margin:0 0 14px;text-align:center;}
.drb-section__sub{text-align:center;color:var(--muted);font-size:18px;line-height:1.5;max-width:640px;margin:0 auto 50px;}

/* Feature grid */
.drb-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;}
.drb-feature{background:#fff;border:1px solid #eceef3;border-radius:18px;padding:30px 28px;transition:.16s;}
.drb-feature:hover{box-shadow:0 16px 38px rgba(14,19,48,.10);transform:translateY(-3px);border-color:#e2e5f0;}
.drb-feature__icon{width:48px;height:48px;border-radius:13px;background:#eef0ff;color:var(--blue);display:flex;align-items:center;justify-content:center;margin-bottom:18px;}
.drb-feature__icon svg{width:24px;height:24px;}
.drb-feature h3{font-size:19px;font-weight:800;color:#13183a;margin:0 0 8px;}
.drb-feature p{margin:0;color:var(--muted);font-size:15px;line-height:1.55;}

/* Security band */
.drb-security{background:linear-gradient(155deg,#141c8f 0%,#1629D1 70%);color:#fff;padding:92px 0;}
.drb-security .drb-h2{color:#fff;text-align:left;}
.drb-security__lead{font-size:19px;line-height:1.6;color:rgba(255,255,255,.86);max-width:760px;margin:0 0 46px;}
.drb-sec-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:22px;}
.drb-sec-card{background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.16);border-radius:16px;padding:24px 26px;}
.drb-sec-card__top{display:flex;align-items:center;gap:12px;margin-bottom:10px;}
.drb-sec-card__top svg{width:24px;height:24px;color:#fff;flex-shrink:0;}
.drb-sec-card h4{font-size:18px;font-weight:800;margin:0;}
.drb-sec-card p{margin:0;color:rgba(255,255,255,.82);font-size:14.5px;line-height:1.6;}

/* Business band */
.drb-biz{display:grid;grid-template-columns:1fr 1fr;gap:56px;align-items:center;}
.drb-biz h2{font-size:38px;font-weight:800;letter-spacing:-.015em;margin:0 0 16px;}
.drb-biz p{color:var(--ink-soft);font-size:17px;line-height:1.6;margin:0 0 24px;}
.drb-biz ul{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:14px;}
.drb-biz li{display:flex;gap:12px;align-items:flex-start;font-size:16px;color:#1d2342;}
.drb-biz li svg{width:22px;height:22px;color:var(--blue);flex-shrink:0;margin-top:1px;}

/* Final CTA */
.drb-final{background:#0e1330;color:#fff;padding:84px 0;text-align:center;}
.drb-final h2{font-size:46px;font-weight:800;letter-spacing:-.015em;margin:0 0 14px;}
.drb-final p{color:rgba(255,255,255,.72);font-size:18px;margin:0 0 30px;}

/* Footer */
.drb-footer{padding:40px 0;border-top:1px solid var(--line);}
.drb-footer__row{display:flex;justify-content:space-between;align-items:center;gap:20px;flex-wrap:wrap;}
.drb-footer a{color:var(--blue);font-weight:600;font-size:14px;}
.drb-footer__brand{font-weight:800;color:var(--blue);font-family:'Montserrat',sans-serif;letter-spacing:.04em;}
.drb-disclaimer{margin:16px 0 0;font-size:12.5px;color:#9aa2b1;line-height:1.5;max-width:760px;}

@media(max-width:980px){
	.drb-hero2{grid-template-columns:1fr;gap:40px;padding:48px 0 56px;}
	.drb-hero2 h1{font-size:42px;}
	.drb-grid{grid-template-columns:1fr;}
	.drb-sec-grid{grid-template-columns:1fr;}
	.drb-security .drb-h2{text-align:left;}
	.drb-biz{grid-template-columns:1fr;gap:28px;}
	.drb-h2{font-size:32px;}
	.drb-final h2{font-size:32px;}
	.drb-section{padding:56px 0;}
}

/* ============================================================
   PLUGIN INTEGRATION — bank app surface (wizard + dashboard)
   ============================================================ */

/* Full-bleed helper so coloured bands span the viewport inside a themed page */
.drb-bleed{width:100vw;position:relative;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw;}

/* App-scoped content — same 1380/40 container as the header so the body content
   (e.g. "LET'S GET STARTED") shares the exact left margin as the DEL REY logo. */
.drb-app{max-width:1380px;margin:0 auto;padding:40px 40px 80px;}
.drb-app .drb-h1{font-family:'Montserrat',sans-serif;}

/* Fade-in (staggered) */
@keyframes drbFadeUp{from{opacity:0;transform:translateY(14px);}to{opacity:1;transform:translateY(0);}}
.drb-fade{opacity:0;animation:drbFadeUp .55s cubic-bezier(.2,.7,.2,1) forwards;}
.drb-fade-1{animation-delay:.04s;}
.drb-fade-2{animation-delay:.14s;}
.drb-fade-3{animation-delay:.24s;}
.drb-fade-4{animation-delay:.34s;}
@media (prefers-reduced-motion: reduce){.drb-fade{animation:none;opacity:1;transform:none;}}

/* Step show / hide (driven by bank.js toggling .active on [data-step]) */
[data-step]{display:none;}
[data-step].active{display:block;}

/* Choice cards carrying a radio (account type) */
label.drb-card{display:block;position:relative;}
label.drb-card input{position:absolute;opacity:0;pointer-events:none;}
label.drb-card:has(input:checked){outline:3px solid var(--blue);outline-offset:0;}
.drb-card__icon{width:34px;height:34px;flex-shrink:0;color:var(--blue);}

/* Verify tabs */
.drb-vtabs{display:flex;gap:10px;margin:0 0 22px;border-bottom:2px solid var(--line);}
.drb-vtabs button{flex:0 0 auto;background:none;border:0;padding:10px 4px;margin-right:18px;font-size:16px;font-weight:600;color:var(--muted);cursor:pointer;position:relative;font-family:inherit;}
.drb-vtabs button.active{color:var(--ink);}
.drb-vtabs button.active::after{content:"";position:absolute;left:0;right:0;bottom:-2px;height:3px;background:var(--blue);}

/* Form fields inside the app */
.drb-field{width:100%;padding:13px 15px;border:1px solid var(--line);border-radius:10px;font-size:15px;font-family:inherit;margin:0 0 14px;}
.drb-field:focus{outline:2px solid var(--blue);outline-offset:0;border-color:var(--blue);}
.drb-challenge{margin-top:14px;padding:14px 16px;background:#eef0ff;border:1px dashed var(--blue);border-radius:10px;font-size:14.5px;line-height:1.5;color:#1d2342;}
.drb-challenge__title{font-weight:800;color:var(--blue);margin-bottom:6px;}
.drb-challenge__body{margin:0 0 10px;color:#1d2342;font-size:14px;line-height:1.55;}
.drb-challenge__status{font-size:13px;color:#5a6080;display:flex;align-items:center;gap:7px;margin-bottom:12px;}
.drb-challenge__status::before{content:"";width:9px;height:9px;border-radius:50%;background:var(--pink);animation:drb-pulse 1.2s ease-in-out infinite;}
.drb-challenge__status.is-done{color:#137a3e;}
.drb-challenge__status.is-done::before{background:#137a3e;animation:none;}
@keyframes drb-pulse{0%,100%{opacity:.35;}50%{opacity:1;}}
.drb-btn--ghost{background:transparent;color:var(--blue);border:1px solid var(--blue);}
.drb-acard__hint{color:var(--muted);font-size:13.5px;line-height:1.5;margin:0 0 14px;}
.drb-hint{color:var(--muted);font-size:14px;line-height:1.5;margin:0 0 14px;}

/* Inline status message */
.trt-bank__msg{margin:0 0 20px;padding:12px 16px;border-radius:10px;font-size:14.5px;}
.trt-bank__msg.success{background:#e6f7ec;color:#137a3e;}
.trt-bank__msg.error{background:#fdecef;color:#b3093c;}

/* Dashboard */
.drb-dash{max-width:1380px;margin:0 auto;padding:16px 40px 80px;}
.drb-balance{background:linear-gradient(150deg,#1629D1,#1828BA);color:#fff;border-radius:20px;padding:26px 30px;margin-bottom:22px;}
.drb-balance__label{font-size:13px;font-weight:600;letter-spacing:.05em;text-transform:uppercase;opacity:.85;}
.drb-balance__amt{font-size:46px;font-weight:800;letter-spacing:-.02em;line-height:1.05;margin:4px 0 6px;}
.drb-balance__linked{font-size:14px;opacity:.9;}
.drb-dgrid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;margin-bottom:22px;}
.drb-acard{background:#fff;border:1px solid #eceef3;border-radius:16px;padding:22px 24px;}
.drb-acard h3{font-size:17px;font-weight:800;color:#13183a;margin:0 0 12px;}
.drb-acard p{color:var(--muted);font-size:14.5px;line-height:1.55;margin:0;}
.drb-acard form{display:flex;flex-direction:column;gap:10px;}
.drb-acard .drb-field{margin:0;}
.drb-firms{list-style:none;margin:0 0 14px;padding:0;}
.drb-firms li{padding:9px 0;border-bottom:1px solid var(--line);font-size:14.5px;}
.drb-badge{display:inline-block;margin-left:6px;font-size:11px;font-weight:700;color:#137a3e;background:#e6f7ec;padding:2px 8px;border-radius:20px;}
.drb-history{width:100%;border-collapse:collapse;font-size:14px;}
.drb-history th,.drb-history td{text-align:left;padding:10px 8px;border-bottom:1px solid var(--line);}
.drb-history th{font-size:12px;text-transform:uppercase;letter-spacing:.04em;color:var(--muted);}
.drb-num{text-align:right;font-variant-numeric:tabular-nums;white-space:nowrap;}
.drb-num.is-pos{color:#137a3e;}
.drb-num.is-neg{color:#b3093c;}
.drb-empty{text-align:center;color:var(--muted);padding:18px;}

@media(max-width:820px){
	.drb-app,.drb-dash{padding-left:20px;padding-right:20px;}
	.drb-dgrid{grid-template-columns:1fr;}
}

/* One-time welcome overlay (first dashboard view) */
.drb-welcome{position:fixed;inset:0;z-index:99999;background:#fff;display:flex;align-items:center;justify-content:center;animation:drbWelcomeOut 2.6s ease forwards;}
.drb-welcome__inner{display:flex;flex-direction:column;align-items:center;gap:18px;animation:drbWelcomeIn .7s cubic-bezier(.2,.7,.2,1) both;}
.drb-welcome__inner img{width:96px;height:96px;display:block;}
.drb-welcome__text{font-family:'Montserrat',sans-serif;font-weight:800;font-size:34px;letter-spacing:-.01em;color:var(--blue);}
@keyframes drbWelcomeIn{from{opacity:0;transform:scale(.92) translateY(8px);}to{opacity:1;transform:none;}}
@keyframes drbWelcomeOut{0%,62%{opacity:1;}100%{opacity:0;visibility:hidden;pointer-events:none;}}
@media (prefers-reduced-motion: reduce){.drb-welcome{animation:drbWelcomeOut 2.6s steps(1,end) forwards;}.drb-welcome__inner{animation:none;}}

/* ============================================================
   DASHBOARD v2 (mockup -3-1)
   ============================================================ */
.drb-dhead{background:var(--blue);}
.drb-dhead__inner{display:flex;align-items:center;justify-content:space-between;padding-top:16px;padding-bottom:16px;}
.drb-dhead .drb-wordmark{color:#fff;}
.drb-dhead .drb-brand img{filter:brightness(0) invert(1);}
.drb-dhead__links{display:flex;align-items:center;gap:14px;color:#fff;font-weight:700;font-size:16px;flex-wrap:wrap;}
.drb-dhead__links a{color:#fff;cursor:pointer;}
.drb-dhead__links a:hover{text-decoration:underline;}
.drb-dhead__sep{opacity:.5;font-weight:400;}
.drb-dhead__player{font-weight:500;letter-spacing:.02em;text-transform:uppercase;opacity:.95;}

.drb-pnav{background:#F8AFD4;}
.drb-pnav__inner{display:flex;flex-wrap:wrap;}
.drb-pnav a{padding:14px 26px;font-weight:700;font-size:16px;color:#2b1414;cursor:pointer;border-right:1px solid rgba(0,0,0,.05);}
/* Keep "Accounts" text under "Hi, user" (40px), but give its highlight box a
   symmetric 26px left padding by pulling the tab left with a matching margin. */
.drb-pnav a:first-child{padding-left:26px;margin-left:-26px;}
.drb-pnav a.is-active{background:#FDE7F1;}
.drb-pnav a:hover:not(.is-active){background:rgba(255,255,255,.28);}

.drb-dash2{max-width:1380px;margin:0 auto;padding:34px 40px 90px;}
.drb-greeting{font-family:'Montserrat',sans-serif;font-size:40px;font-weight:800;color:#111;margin:0 0 26px;}
.drb-panel{display:none;}
.drb-panel.is-active{display:block;}

.drb-accounts{max-width:760px;}
.drb-accounts__head{display:flex;align-items:center;justify-content:space-between;gap:16px;}
.drb-accounts__title{display:flex;align-items:center;gap:12px;font-size:24px;font-weight:800;color:#111;}
.drb-accounts__title img{width:34px;height:34px;}
.drb-alerts{display:inline-flex;align-items:center;gap:7px;color:#CE0909;font-weight:800;font-size:16px;cursor:pointer;position:relative;}
.drb-alerts svg{width:22px;height:22px;}
.drb-alerts__badge{position:absolute;left:11px;top:-7px;background:#111;color:#fff;font-size:10px;font-weight:700;min-width:16px;height:16px;border-radius:8px;display:flex;align-items:center;justify-content:center;padding:0 3px;}
.drb-accounts__rule{height:4px;background:var(--blue);border-radius:2px;margin:10px 0 6px;}
.drb-acct-row{display:flex;align-items:flex-start;justify-content:space-between;padding:16px 18px;background:#F9F9F9;border-bottom:1px solid #efefef;cursor:pointer;}
.drb-acct-row__name,.drb-acct-row__bal{line-height:1.15;}
.drb-acct-row:hover{background:#f2f2f2;}
.drb-acct-row__name{color:#2F94DB;font-weight:800;font-size:18px;}
.drb-acct-row__status{color:#777;font-size:14px;margin-top:3px;}
.drb-acct-row__bal{font-size:20px;font-weight:800;color:#111;}

.drb-shortcuts{background:#F2F2F2;border-radius:6px;padding:24px 26px;margin-top:38px;max-width:520px;}
.drb-shortcuts h3{font-size:20px;font-weight:800;color:#111;margin:0 0 18px;}
.drb-shortcuts__grid{display:grid;grid-template-columns:1fr 1fr;gap:20px;}
.drb-shortcut{background:#D9D9D9;border:0;border-radius:4px;height:78px;font-weight:700;color:#333;cursor:pointer;font-family:inherit;font-size:15px;}
.drb-shortcut:hover{background:#cfcfcf;}

@media(max-width:820px){
	.drb-dash2{padding-left:20px;padding-right:20px;}
	.drb-dhead__links{font-size:13px;gap:8px;}
	.drb-shortcuts__grid{grid-template-columns:1fr;}
}

/* ============================================================
   ACCOUNT ACTIVITY PAGE (restyled in Del Rey)
   ============================================================ */
.drb-acctpage{max-width:1380px;margin:0 auto;padding:22px 40px 60px;}
.drb-bc{font-size:13px;color:var(--muted);margin:6px 0 16px;}
.drb-bc a{color:var(--blue);font-weight:600;}
.drb-acctcard{background:#fff;border:1px solid var(--line);border-radius:12px;overflow:hidden;margin-bottom:20px;}
.drb-acctcard__top{padding:22px 26px;display:flex;flex-wrap:wrap;align-items:flex-end;justify-content:space-between;gap:16px;border-bottom:1px solid var(--line);}
.drb-acctcard__top h1{margin:0;font-family:'Montserrat',sans-serif;font-size:24px;font-weight:800;color:#0e1330;}
.drb-acctcard__sub{font-size:13px;color:var(--muted);margin-top:8px;}
.drb-acctcard__sub a{margin-right:16px;color:var(--blue);font-weight:600;}
.drb-acctcard__bal{text-align:right;}
.drb-acctcard__bal .n{font-size:32px;font-weight:800;color:#0e1330;letter-spacing:-.01em;}
.drb-acctcard__bal .l{font-size:12px;color:var(--muted);}
.drb-feat{display:flex;flex-wrap:wrap;background:#eef0ff;}
.drb-feat__item{flex:1 1 200px;padding:14px 26px;border-right:1px solid #dfe3fb;font-size:13px;}
.drb-feat__item:last-child{border-right:none;}
.drb-feat__lbl{color:var(--muted);font-size:11px;text-transform:uppercase;letter-spacing:.5px;}
.drb-feat__val{font-weight:700;margin-top:3px;color:#1d2342;}
.drb-feat__val a{color:var(--blue);}
.drb-atabs{display:flex;border-bottom:1px solid var(--line);background:#fff;border-radius:12px 12px 0 0;overflow:hidden;}
.drb-atabs button{background:none;border:0;padding:15px 24px;font-size:15px;font-weight:700;color:var(--muted);cursor:pointer;border-bottom:3px solid transparent;font-family:inherit;}
.drb-atabs button.is-active{color:var(--blue);border-bottom-color:var(--blue);}
.drb-apanel{background:#fff;border:1px solid var(--line);border-top:none;border-radius:0 0 12px 12px;}
.drb-atoolbar{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:12px;padding:16px 20px;border-bottom:1px solid var(--line);}
.drb-atoolbar h2{margin:0;font-size:17px;color:#0e1330;font-weight:800;}
.drb-atoolbar .t{display:flex;gap:10px;align-items:center;font-size:13px;}
.drb-atoolbar select,.drb-atoolbar input[type=search]{padding:8px 11px;border:1px solid var(--line);border-radius:7px;font-size:13px;font-family:inherit;}
.drb-atable{width:100%;border-collapse:collapse;}
.drb-atable thead th{background:#eef0ff;text-align:left;padding:12px 16px;font-size:12px;text-transform:uppercase;letter-spacing:.4px;color:#0e1330;border-bottom:2px solid var(--blue);white-space:nowrap;}
.drb-atable th.r,.drb-atable td.r{text-align:right;}
.drb-atable td{padding:13px 16px;border-bottom:1px solid #eef1f6;vertical-align:top;font-size:14px;}
.drb-atable tbody tr:hover{background:#f7f9ff;}
.drb-atable .d{white-space:nowrap;color:var(--muted);width:110px;}
.drb-atable .desc b{display:block;font-weight:700;color:#1d2342;}
.drb-atable .ty{white-space:nowrap;color:var(--muted);width:120px;}
.drb-atable .am,.drb-atable .ba{text-align:right;white-space:nowrap;font-variant-numeric:tabular-nums;font-weight:700;width:140px;}
.drb-atable .am.pos{color:#137a3e;}
.drb-atable .am.neg{color:#b3093c;}
.drb-atable .ba{color:#0e1330;}
.drb-afoot{padding:16px 20px;font-size:12px;color:var(--muted);display:flex;justify-content:space-between;flex-wrap:wrap;gap:8px;}
.drb-afooter{max-width:1380px;margin:8px auto 0;padding:22px 40px;font-size:12px;color:var(--muted);border-top:1px solid var(--line);line-height:1.6;}
@media(max-width:760px){.drb-atable .ty,.drb-atable th.ty{display:none;}.drb-acctpage,.drb-afooter{padding-left:20px;padding-right:20px;}}

/* ============================================================
   ACCOUNT PAGE v2 (mockup -3-2)
   ============================================================ */
.drb-actband{background:#e3e3e3;}
.drb-actband .drb-main{padding-top:20px;padding-bottom:20px;}
.drb-actband h1{margin:0;font-family:'Montserrat',sans-serif;font-size:30px;font-weight:800;color:#111;}
.drb-acthero{background:#f6f6f6;}
.drb-acthero__inner{display:flex;justify-content:space-between;gap:30px;flex-wrap:wrap;padding-top:28px;padding-bottom:34px;}
.drb-acthero__bal{font-family:'Montserrat',sans-serif;font-size:60px;font-weight:800;color:#111;letter-spacing:-.02em;line-height:1;}
.drb-services{min-width:230px;}
.drb-services h3{font-size:20px;font-weight:800;color:#111;margin:0 0 8px;}
.drb-services__rule{height:3px;background:var(--blue);border-radius:2px;margin-bottom:12px;}
.drb-services a{display:block;color:#111;font-size:17px;padding:4px 0;}
.drb-services a:hover{color:var(--blue);}

.drb-actwrap{max-width:1380px;margin:0 auto;padding:26px 40px 80px;}
.drb-atabs2{display:flex;gap:34px;border-bottom:1px solid var(--line);margin-bottom:30px;}
.drb-atabs2 button{background:none;border:0;padding:0 0 14px;font-size:18px;font-weight:600;color:var(--muted);cursor:pointer;border-bottom:3px solid transparent;margin-bottom:-1px;font-family:inherit;transition:color .15s;}
.drb-atabs2 button:hover{color:#333;}
.drb-atabs2 button.is-active{color:#111;border-bottom-color:#111;}

.drb-txh{font-family:'Montserrat',sans-serif;font-size:28px;font-weight:800;color:#111;margin:0 0 18px;}
.drb-search label{display:block;font-size:14px;font-weight:600;color:#333;margin-bottom:6px;}
.drb-searchrow{display:flex;align-items:center;gap:18px;}
.drb-searchrow input[type=search]{flex:0 1 420px;padding:12px 14px;border:1px solid #222;border-radius:8px;font-size:15px;font-family:inherit;}
.drb-filterlink{display:inline-flex;align-items:center;gap:7px;color:#111;font-weight:600;font-size:15px;cursor:pointer;background:none;border:0;font-family:inherit;}
.drb-filterlink svg{width:18px;height:18px;}

.drb-filter{background:#e9eefb;border-radius:10px;padding:20px 22px;margin:22px 0;max-width:700px;}
.drb-filter__head{display:flex;align-items:center;justify-content:space-between;margin-bottom:14px;}
.drb-filter__head h4{margin:0;font-size:18px;font-weight:700;color:#333;}
.drb-filter__close{width:34px;height:34px;border:1.5px solid var(--blue);border-radius:6px;background:#fff;color:var(--blue);cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:20px;line-height:1;}
.drb-filter__grid{display:flex;gap:22px;flex-wrap:wrap;align-items:flex-end;}
.drb-filter__field label{display:block;font-size:14px;font-weight:600;color:#333;margin-bottom:6px;}
.drb-filter__field .hint{color:var(--blue);font-size:12px;font-weight:600;margin-left:8px;}
.drb-filter__field select,.drb-filter__field input{padding:11px 13px;border:1px solid #222;border-radius:8px;font-size:14px;font-family:inherit;min-width:200px;}
.drb-filter__actions{display:flex;gap:14px;justify-content:flex-end;margin-top:18px;}
.drb-fbtn{padding:10px 28px;border-radius:24px;font-size:15px;font-weight:700;cursor:pointer;font-family:inherit;border:1.5px solid var(--pink);}
.drb-fbtn--cancel{background:#fff;color:#222;}
.drb-fbtn--apply{background:var(--pink);color:#fff;border-color:var(--pink);}
.drb-fbtn--apply:hover{background:#e7479a;}

.drb-txtable{width:100%;border-collapse:collapse;margin-top:8px;}
.drb-txtable th{text-align:left;padding:12px 14px;font-size:15px;font-weight:800;color:#111;border-bottom:1px solid var(--line);white-space:nowrap;}
.drb-txtable th.r,.drb-txtable td.r{text-align:right;}
.drb-txtable td{padding:16px 14px;font-size:15px;color:#222;vertical-align:top;}
.drb-txtable tbody tr.alt{background:#f2f2f2;}
.drb-txtable .d{white-space:nowrap;width:120px;}
.drb-txtable .desc{max-width:360px;}
.drb-txtable .ty{white-space:nowrap;color:#222;}
.drb-txtable .am{font-variant-numeric:tabular-nums;white-space:nowrap;font-weight:600;}
.drb-txtable .am.neg{color:#c5102b;}
.drb-txtable .am.pos{color:#137a3e;}
.drb-txtable .ba{font-variant-numeric:tabular-nums;white-space:nowrap;color:#111;font-weight:600;}
.drb-txempty{text-align:center;color:var(--muted);padding:40px 26px 26px;font-size:15px;}
@media(max-width:760px){.drb-acthero__bal{font-size:42px;}.drb-txtable .ty,.drb-txtable th.ty{display:none;}.drb-actwrap{padding-left:20px;padding-right:20px;}}

/* Sticky top header (overrides the .drb-bleed positioning; full width on canvas) */
.drb-header,.drb-dhead{position:sticky;top:0;z-index:50;left:auto;right:auto;width:auto;margin-left:0;margin-right:0;}

/* Account Statements + More Info panels */
.drb-nostmt{color:var(--muted);font-size:16px;padding:30px 0;}
.drb-stmts{list-style:none;margin:0;padding:0;max-width:560px;}
.drb-stmt{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:16px 0;border-bottom:1px solid var(--line);}
.drb-stmt__month{font-size:17px;font-weight:700;color:#111;}
.drb-stmt__dl{padding:9px 22px;font-size:14px;}
.drb-infolist{list-style:none;margin:0;padding:0;max-width:520px;}
.drb-infolist li{display:flex;justify-content:space-between;gap:16px;padding:14px 0;border-bottom:1px solid var(--line);font-size:15px;}
.drb-infolist span{color:var(--muted);}
.drb-infolist strong{color:#111;}

/* ---- 2FA: prompt, modal, gate, toggles ---- */
.drb-app--narrow{max-width:560px;}
.drb-2fa-prompt{display:flex;align-items:center;justify-content:space-between;gap:18px;flex-wrap:wrap;
	background:linear-gradient(150deg,#eef0ff,#f7f5ff);border:1px solid #d9ddff;border-radius:14px;padding:16px 20px;margin-bottom:20px;}
.drb-2fa-prompt__text{font-size:14.5px;color:#1d2342;line-height:1.5;}
.drb-2fa-prompt__btns{display:flex;gap:10px;flex-shrink:0;}
.drb-2fa-gate{display:flex;gap:12px;align-items:center;margin:6px 0 4px;max-width:420px;}
.drb-2fa-code{letter-spacing:.35em;text-align:center;font-size:20px;font-weight:700;}
.drb-2fa-gate__alt{margin-top:16px;font-size:14px;}
.drb-2fa-gate__alt a{color:var(--blue);}
.drb-2fa__opts{display:flex;flex-direction:column;gap:12px;margin:14px 0 18px;}
.drb-toggle{display:flex;align-items:center;gap:10px;font-size:14.5px;color:#1d2342;cursor:pointer;}
.drb-toggle input{width:18px;height:18px;accent-color:var(--blue);cursor:pointer;}
.drb-2fa p .drb-badge{margin-left:0;margin-right:6px;}
/* modal */
.drb-modal{position:fixed;inset:0;z-index:9999;display:flex;align-items:center;justify-content:center;padding:20px;}
.drb-modal[hidden]{display:none;}
.drb-modal__backdrop{position:absolute;inset:0;background:rgba(10,14,40,.55);backdrop-filter:blur(2px);}
.drb-modal__card{position:relative;z-index:1;background:#fff;border-radius:20px;padding:30px 30px 26px;max-width:420px;width:100%;
	box-shadow:0 24px 70px rgba(10,14,40,.35);text-align:center;}
.drb-modal__x{position:absolute;top:14px;right:16px;border:none;background:none;font-size:26px;line-height:1;color:#9aa0bf;cursor:pointer;}
.drb-modal__title{font-size:20px;font-weight:800;color:#13183a;margin:0 0 14px;}
.drb-2fa-steps{text-align:left;margin:0 0 16px;padding-left:20px;color:var(--muted);font-size:14px;line-height:1.6;}
.drb-2fa-qr{display:flex;justify-content:center;margin:6px auto 14px;min-height:184px;}
.drb-2fa-qr img,.drb-2fa-qr canvas{border:6px solid #fff;border-radius:8px;}
.drb-2fa-manual{font-size:13px;color:var(--muted);margin:0 0 16px;line-height:1.5;}
.drb-2fa-manual code{display:inline-block;margin-top:4px;background:#f2f3f9;border-radius:6px;padding:6px 9px;font-size:12.5px;letter-spacing:.08em;color:#1d2342;word-break:break-all;}
.drb-modal__card form{display:flex;flex-direction:column;gap:12px;}

/* ---- Account Suggestions sidebar ---- */
.drb-acctgrid{display:grid;grid-template-columns:1fr 320px;gap:24px;align-items:start;}
.drb-acctgrid__main{min-width:0;}
.drb-suggest{background:#fff;border:1px solid #eceef3;border-radius:16px;padding:20px 22px;position:sticky;top:90px;}
.drb-suggest>h3{font-size:15px;font-weight:800;color:#13183a;margin:0 0 14px;}
.drb-suggest__item{display:flex;gap:12px;padding:14px 0;border-top:1px solid #f0f1f6;}
.drb-suggest__item:first-of-type{border-top:0;padding-top:0;}
.drb-suggest__icon{flex-shrink:0;width:38px;height:38px;border-radius:10px;background:#eef0ff;color:var(--blue);display:flex;align-items:center;justify-content:center;}
.drb-suggest__icon svg{width:20px;height:20px;}
.drb-suggest__body strong{display:block;font-size:14.5px;color:#13183a;margin-bottom:3px;}
.drb-suggest__body p{font-size:13px;color:var(--muted);line-height:1.5;margin:0 0 10px;}
.drb-suggest__empty{font-size:13.5px;color:#137a3e;line-height:1.5;margin:0;}
.drb-btn--sm{font-size:14px;padding:9px 16px;border-radius:10px;box-shadow:0 8px 18px rgba(22,41,209,.20);}
@media(max-width:980px){.drb-acctgrid{grid-template-columns:1fr;}.drb-suggest{position:static;}}

/* ---- new-IP security notice ---- */
.drb-secnotice{display:flex;gap:12px;align-items:flex-start;background:#fff7ed;border:1px solid #fed7aa;border-radius:14px;padding:14px 18px;margin-bottom:20px;color:#7c2d12;font-size:14.5px;line-height:1.5;}
.drb-secnotice svg{width:22px;height:22px;flex-shrink:0;color:#ea580c;margin-top:1px;}
.drb-secnotice strong{color:#7c2d12;}

/* ---- Multi-account: money bar, segmented transfer, open-account ---- */
.drb-moneybar{display:flex;align-items:center;gap:12px;flex-wrap:wrap;margin-bottom:22px;}
.drb-moneybar label{font-weight:700;color:#1629D1;font-size:14px;}
.drb-moneybar select{min-width:260px;padding:10px 12px;border:1px solid #d7dcf5;border-radius:10px;background:#fff;font-size:15px;color:#0d1330;}
.drb-moneybar__bal{margin-left:auto;font-weight:800;font-size:20px;color:#0d1330;}
.drb-acct-add{display:block;width:100%;margin-top:10px;padding:12px;border:1px dashed #b9c2ef;border-radius:12px;background:#f6f8ff;color:#1629D1;font-weight:700;cursor:pointer;font-size:14px;}
.drb-acct-add:hover{background:#eef2ff;}
.drb-segmented{display:inline-flex;background:#eef1fb;border-radius:10px;padding:3px;margin-bottom:12px;}
.drb-segmented button{border:0;background:transparent;padding:7px 14px;border-radius:8px;font-weight:700;font-size:13.5px;color:#5b6480;cursor:pointer;}
.drb-segmented button.is-active{background:#fff;color:#1629D1;box-shadow:0 1px 3px rgba(13,19,48,.12);}
.drb-modal__lead{color:#5b6480;font-size:14.5px;line-height:1.5;margin:0 0 16px;}
.drb-acard [data-trt-dep-amount]{margin-bottom:12px;}
.drb-soon{display:flex;flex-direction:column;gap:6px;background:#f6f8ff;border:1px dashed #b9c2ef;border-radius:12px;padding:14px 16px;margin-bottom:4px;}
.drb-soon strong{color:#1629D1;font-size:14.5px;}
.drb-soon span{color:#5b6480;font-size:13.5px;line-height:1.5;}
