:root {
  --bg: #08080f;
  --bg2: #0d0d1a;
  --bg3: #12121f;
  --sf: #16162a;
  --bd: rgba(255, 255, 255, 0.07);
  --bd2: rgba(255, 255, 255, 0.13);
  --tx: #f0f0ff;
  --tx2: #a8a8c8;
  --tx3: #6b6b8a;
  --pur: #8b5cf6;
  --blu: #3b82f6;
  --grad: linear-gradient(135deg, #8b5cf6, #3b82f6);
  --nav: 68px;
  --dsb: 240px;
  --pixel-grid-cell-size: 12px;
  --pixel-grid-gap: 4px;
  --pixel-grid-radius: 132px;
  --pixel-grid-delay: 96ms;
  --pixel-grid-linger: 360ms;
  --pixel-grid-fade-in: 220ms;
  --pixel-grid-fade-out: 420ms;
  --pixel-grid-opacity: 0.9;
  --pixel-grid-color-a: 79, 70, 229;
  --pixel-grid-color-b: 139, 92, 246;
  --pixel-grid-glow: 12px;
}
.lm {
  --bg: #fafafe;
  --bg2: #f0f0ff;
  --bg3: #e8e8ff;
  --sf: #fff;
  --bd: rgba(99, 71, 246, 0.1);
  --bd2: rgba(99, 71, 246, 0.2);
  --tx: #0f0f1a;
  --tx2: #3d3d5c;
  --tx3: #7878a0;
  --pixel-grid-opacity: 0.72;
  --pixel-grid-color-a: 67, 56, 202;
  --pixel-grid-color-b: 99, 102, 241;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Space Grotesk", sans-serif;
  background: var(--bg);
  color: var(--tx);
  position: relative;
  isolation: isolate;
  overflow-x: hidden;
  transition: background 0.3s, color 0.3s;
}

/* Three.js Background */

#three-background,
#bg-canvas,
canvas.webgl,
canvas#webgl,
.pixel-canvas {

    position: fixed;
    inset: 0;

    width: 100vw;
    height: 100vh;

    display: block;

    z-index: -1;

    pointer-events: none;

    user-select: none;

    touch-action: none;

    opacity: 1;
}

/* Website Above Canvas */

body{
    position:relative;
    overflow-x:hidden;
}

header,
main,
footer,
section,
.container,
.navbar{

    position:relative;
    z-index:1;
}

/* Optional */

canvas{

    image-rendering:auto;
    transform:translateZ(0);
    backface-visibility:hidden;
}

@media(max-width:768px){

    #three-background,
    #bg-canvas,
    canvas.webgl{

        width:100%;
        height:100%;
    }

}

.arowet-site-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
}

/* ==========================================================================
   1. GLOBAL TYPOGRAPHY FIX
   ========================================================================== */

/* ==========================================================================
   PIXEL GRID CONFIGURATION & STYLING
   ========================================================================== */
:root {
  /* Core Animation Settings */
  --pixel-color: 79, 70, 229;     /* #4F46E5 in RGB for alpha transparency */
  --pixel-size: 14px;             /* Size of the individual squares */
  --pixel-spacing: 2px;           /* Gap between squares */
  --interaction-radius: 180px;    /* How far the glow extends from the cursor */
  
  /* Timing & Organic Feel */
  --fade-in-speed: 0.12;          /* Base speed for squares appearing */
  --fade-out-speed: 0.015;        /* Base speed for the smooth decay */
}

#interactive-pixel-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  pointer-events: none; /* CRITICAL: Allows clicks to pass through to the website */
  background-color: transparent;
}


/* ==========================================================================
   2. PIXEL GRID ANIMATION SETUP
   ========================================================================== */
#interactive-pixel-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1; /* Ensures it stays behind all website content */
  pointer-events: none; /* Crucial: Prevents the canvas from blocking user clicks/scrolls */
  background: transparent;
}


.arowet-pixel-grid {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 0;
  opacity: var(--pixel-grid-opacity);
}
a {
  text-decoration: none;
  color: inherit;
}
.gt {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.slbl {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.73rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--pur);
  margin-bottom: 14px;
}
.slbl::before {
  content: "";
  width: 20px;
  height: 1.5px;
  background: var(--grad);
}
.stitle {
  font-size: clamp(1.85rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.ssub {
  font-size: 1rem;
  color: var(--tx2);
  max-width: 560px;
}
.aur {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.aur-a {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.22),
    transparent 70%
  );
}
.aur-b {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.18),
    transparent 70%
  );
}
.gc {
  background: var(--sf);
  border: 1px solid var(--bd);
  border-radius: 18px;
  transition: 0.3s;
}
.gc:hover {
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
}
.bgrd {
  background: var(--grad);
  border: none;
  color: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  border-radius: 12px;
  transition: 0.25s;
  cursor: pointer;
}
.bgrd:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.4);
  color: #fff;
}
.boc {
  background: transparent;
  border: 1px solid var(--bd2);
  color: var(--tx);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 500;
  border-radius: 12px;
  transition: 0.25s;
  cursor: pointer;
}
.boc:hover {
  border-color: var(--pur);
  background: rgba(139, 92, 246, 0.08);
  color: var(--tx);
}
.rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s, transform 0.65s;
}
.rv.in {
  opacity: 1;
  transform: none;
}
.sp {
  padding: 90px 0;
}
/* NAVBAR */
#nbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  height: var(--nav);
  background: rgba(8, 8, 15, 0.78);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bd);
  display: flex;
  align-items: center;
  transition: background 0.3s, box-shadow 0.3s;
}
.lm #nbar {
  background: rgba(250, 250, 254, 0.88);
}
#nbar.scr {
  background: rgba(8, 8, 15, 0.96);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.4);
}
.lm #nbar.scr {
  background: rgba(250, 250, 254, 0.97);
}
.logo-i {
  width: 34px;
  height: 34px;
  background: var(--grad);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.nav-link {
  color: var(--tx2) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 6px 14px !important;
  border-radius: 8px;
  transition: 0.2s !important;
}
.nav-link:hover {
  color: var(--tx) !important;
  background: rgba(255, 255, 255, 0.06) !important;
}
.lm .nav-link:hover {
  background: rgba(0, 0, 0, 0.05) !important;
}
#mbmenu {
  position: fixed;
  top: var(--nav);
  left: 0;
  right: 0;
  z-index: 1049;
  background: rgba(8, 8, 15, 0.98);
  backdrop-filter: blur(20px);
  padding: 14px 20px 20px;
  border-bottom: 1px solid var(--bd);
  display: none;
}
.lm #mbmenu {
  background: rgba(250, 250, 254, 0.98);
}
#mbmenu.open {
  display: block;
}
/* HERO */
#hero {
  min-height: 100vh;
  /* padding-top: var(--nav); */
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hbadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px 5px 8px;
  border-radius: 100px;
  background: rgba(139, 92, 246, 0.12);
  border: 1px solid rgba(139, 92, 246, 0.3);
  font-size: 0.78rem;
  font-weight: 600;
  color: #a78bfa;
  margin-bottom: 22px;
}
.bdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pur);
  animation: bpls 2s infinite;
  flex-shrink: 0;
}
.h1 {
  font-size: clamp(2.4rem, 6.5vw, 5rem);
  font-weight: 700;
  line-height: 1.09;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.tlog {
  opacity: 0.4;
  filter: grayscale(1);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--tx2);
  transition: 0.3s;
}
.tlog:hover {
  opacity: 0.75;
  filter: none;
}
.dwrap {
  border-radius: 26px;
  overflow: hidden;
  background: var(--sf);
  border: 1px solid var(--bd2);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.65), 0 0 40px rgba(139, 92, 246, 0.2);
}
.dtbar {
  background: var(--bg3);
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--bd);
}
.dd {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.dgrid {
  display: grid;
  grid-template-columns: 185px 1fr;
}
.dside {
  background: var(--bg2);
  border-right: 1px solid var(--bd);
  padding: 14px 10px;
}
.dsi {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 0.81rem;
  color: var(--tx3);
  margin-bottom: 3px;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  font-family: "Space Grotesk", sans-serif;
  text-align: left;
  transition: 0.2s;
}
.dsi i {
  width: 16px;
  text-align: center;
}
.dsi.on,
.dsi:hover {
  background: rgba(139, 92, 246, 0.14);
  color: #a78bfa;
}
.stpill {
  background: var(--bg3);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 12px;
  position: relative;
  overflow: hidden;
}
.stpill::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad);
  opacity: 0.7;
}
.bbar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, #8b5cf6, #3b82f6);
  transform-origin: bottom;
  animation: bgrow 0.8s ease forwards;
}
.cbbl {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.72rem;
  line-height: 1.45;
  max-width: 88%;
}
.cbai {
  background: rgba(139, 92, 246, 0.14);
  border: 1px solid rgba(139, 92, 246, 0.2);
  color: var(--tx2);
  align-self: flex-start;
}
.cbus {
  background: var(--grad);
  color: #fff;
  align-self: flex-end;
}
.tdot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pur);
  animation: tbounce 0.9s infinite;
  display: inline-block;
}
@media (max-width: 991px) {
  .dgrid {
    grid-template-columns: 1fr;
  }
  .dside {
    display: none;
  }
}
/* PROOF */
#proof {
  background: var(--bg2);
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
  padding: 44px 0;
}
.pnum {
  font-size: 1.9rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.plbl {
  font-size: 0.77rem;
  color: var(--tx3);
  margin-top: 3px;
}
.lscroll {
  overflow: hidden;
  margin-top: 28px;
}
.ltrack {
  display: flex;
  gap: 36px;
  width: max-content;
  animation: lscr 18s linear infinite;
}
.lbr {
  font-size: 0.87rem;
  font-weight: 700;
  color: var(--tx3);
  opacity: 0.5;
  white-space: nowrap;
}
/* FEATURES */
.ftico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  margin-bottom: 16px;
}
.ftag {
  display: inline-block;
  margin-top: 10px;
  padding: 2px 10px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(139, 92, 246, 0.12);
  color: #a78bfa;
  border: 1px solid rgba(139, 92, 246, 0.2);
}
/* BENTO */
.bgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.bs2 {
  grid-column: span 2;
}
.bt2 {
  grid-row: span 2;
}
.bvis {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: var(--bg3);
}
.bvis::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.14),
    rgba(59, 130, 246, 0.08)
  );
}
@media (max-width: 767px) {
  .bgrid {
    grid-template-columns: 1fr;
  }
  .bs2,
  .bt2 {
    grid-column: span 1;
    grid-row: span 1;
  }
}
/* PRODUCT PREVIEW */
.dprev {
  background: var(--sf);
  border: 1px solid var(--bd2);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.5);
}
.dpbody {
  display: grid;
  grid-template-columns: 205px 1fr;
  min-height: 430px;
}
.dpside {
  background: var(--bg2);
  border-right: 1px solid var(--bd);
  padding: 16px 12px;
}
.dpnl {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 0.82rem;
  color: var(--tx3);
  margin-bottom: 4px;
  cursor: pointer;
  background: transparent;
  border: none;
  width: 100%;
  font-family: "Space Grotesk", sans-serif;
  text-align: left;
  transition: 0.2s;
}
.dpnl i {
  width: 16px;
  text-align: center;
}
.dpnl.on,
.dpnl:hover {
  background: rgba(139, 92, 246, 0.14);
  color: #a78bfa;
}
.dpc {
  padding: 22px;
}
.dpane {
  display: none;
}
.dpane.on {
  display: block;
}
.dpst {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}
.dps {
  background: var(--bg3);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 14px;
  position: relative;
  overflow: hidden;
}
.dps::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad);
  opacity: 0.6;
}
.dpsv {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.dpsl {
  font-size: 0.67rem;
  color: var(--tx3);
}
.dpsd {
  font-size: 0.67rem;
  color: #34d399;
  font-weight: 600;
}
.dpbars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 88px;
}
.dpbar {
  flex: 1;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(to top, #8b5cf6, #3b82f6);
  opacity: 0.75;
  animation: bgrow 0.7s ease forwards;
  transform-origin: bottom;
}
.arow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: var(--bg3);
  border: 1px solid var(--bd);
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 0.82rem;
}
.adot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.gon {
  background: #34d399;
  box-shadow: 0 0 6px #34d399;
}
.gpu {
  background: #8b5cf6;
  box-shadow: 0 0 6px #8b5cf6;
}
.gor {
  background: #f59e0b;
}
.bst {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 100px;
}
.son {
  background: rgba(52, 211, 153, 0.12);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.2);
}
.sbz {
  background: rgba(139, 92, 246, 0.12);
  color: #a78bfa;
  border: 1px solid rgba(139, 92, 246, 0.2);
}
.sid {
  background: rgba(245, 158, 11, 0.1);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.2);
}
.cit {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 12px;
  background: var(--bg3);
  border: 1px solid var(--bd);
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 0.81rem;
}
.cav {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}
.arl {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: var(--bg3);
  border: 1px solid var(--bd);
  border-radius: 10px;
  margin-bottom: 8px;
  font-size: 0.82rem;
}
.ari {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .dpbody {
    grid-template-columns: 1fr;
  }
  .dpside {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding: 10px;
    border-right: none;
    border-bottom: 1px solid var(--bd);
  }
  .dpnl {
    white-space: nowrap;
    flex-shrink: 0;
    width: auto;
  }
  .dpst {
    grid-template-columns: 1fr 1fr;
  }
}
/* HOW */
.hnum {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 18px;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.35);
}
/* ANALYTICS */
.anst {
  background: var(--sf);
  border: 1px solid var(--bd);
  border-radius: 16px;
  padding: 20px;
}
.atrnd {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 100px;
}
.tup {
  color: #34d399;
  background: rgba(52, 211, 153, 0.1);
}
.rtbar {
  height: 4px;
  background: var(--bg3);
  border-radius: 100px;
  overflow: hidden;
}
.rtfill {
  height: 100%;
  border-radius: 100px;
  background: var(--grad);
}
/* PRICING */
.pcard {
  background: var(--sf);
  border: 1px solid var(--bd);
  border-radius: 18px;
  padding: 30px;
  transition: 0.3s;
  position: relative;
}
.pcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}
.pcard.pop {
  border: 1px solid rgba(139, 92, 246, 0.4);
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.06),
    rgba(59, 130, 246, 0.03)
  );
  box-shadow: 0 0 40px rgba(139, 92, 246, 0.12);
}
.pbadge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-size: 0.73rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pamt {
  font-size: 2.9rem;
  font-weight: 700;
  line-height: 1;
}
.pamt sup {
  font-size: 1.2rem;
  vertical-align: top;
  margin-top: 9px;
  display: inline-block;
}
.pfl {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 10px;
  font-size: 0.875rem;
}
.pchk {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.65rem;
  color: #34d399;
  margin-top: 1px;
}
.tav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bd2);
}
/* FAQ */
.acco .accordion-item {
  background: var(--sf);
  border: 1px solid var(--bd);
  border-radius: 18px !important;
  margin-bottom: 10px;
  overflow: hidden;
}
.acco .accordion-button {
  background: var(--sf);
  color: var(--tx);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 0.94rem;
  box-shadow: none;
  border-radius: 18px !important;
  padding: 18px 22px;
}
.acco .accordion-button:not(.collapsed) {
  background: rgba(139, 92, 246, 0.06);
  color: #a78bfa;
}
.acco .accordion-button::after {
  filter: invert(1) hue-rotate(220deg);
}
.lm .acco .accordion-button::after {
  filter: none;
}
.acco .accordion-body {
  color: var(--tx2);
  font-size: 0.875rem;
  line-height: 1.7;
  padding: 0 22px 18px;
}
/* CTA */
#cta {
  padding: 110px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg3);
  text-align: center;
}
/* FOOTER */
#foot {
  background: var(--bg);
  border-top: 1px solid var(--bd);
  padding: 60px 0 28px;
}
.fcol h5 {
  font-size: 0.77rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--tx3);
  margin-bottom: 14px;
}
.fcol a {
  display: block;
  font-size: 0.875rem;
  color: var(--tx2);
  padding: 3px 0;
  transition: 0.2s;
}
.fcol a:hover {
  color: var(--pur);
}
.nli {
  padding: 9px 14px;
  border-radius: 12px;
  border: 1px solid var(--bd2);
  background: var(--sf);
  color: var(--tx);
  font-size: 0.83rem;
  font-family: "Space Grotesk", sans-serif;
  outline: none;
  flex: 1;
}
.nli:focus {
  border-color: var(--pur);
}
.sico {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 1px solid var(--bd);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tx3);
  transition: 0.2s;
  font-size: 0.88rem;
}
.sico:hover {
  border-color: var(--pur);
  color: var(--pur);
}
/* OFFCANVAS LOGIN */
#lofc {
  width: 420px;
  background: var(--bg2);
  border-left: 1px solid var(--bd2);
}
.lm #lofc {
  background: #f5f5ff;
}
.offcanvas-header {
  border-bottom: 1px solid var(--bd);
  padding: 20px 24px;
}
.offcanvas-title {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  color: var(--tx);
}
.olbl {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--tx2);
  margin-bottom: 6px;
  display: block;
}
.oinp {
  width: 100%;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid var(--bd2);
  background: var(--sf);
  color: var(--tx);
  font-size: 0.9rem;
  font-family: "Space Grotesk", sans-serif;
  outline: none;
  transition: 0.2s;
  margin-bottom: 14px;
}
.oinp:focus {
  border-color: var(--pur);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}
.odiv {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--tx3);
  font-size: 0.8rem;
  margin: 16px 0;
}
.odiv::before,
.odiv::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--bd);
}
.oauth {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--bd2);
  background: var(--sf);
  color: var(--tx2);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  transition: 0.2s;
  cursor: pointer;
  margin-bottom: 8px;
}
.oauth:hover {
  border-color: var(--pur);
  color: var(--tx);
}
.tab-switch {
  display: flex;
  background: var(--sf);
  border: 1px solid var(--bd);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 22px;
}
.tab-sw-btn {
  flex: 1;
  padding: 8px;
  border: none;
  border-radius: 9px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: "Space Grotesk", sans-serif;
  cursor: pointer;
  transition: 0.2s;
  background: transparent;
  color: var(--tx3);
}
.tab-sw-btn.on {
  background: var(--grad);
  color: #fff;
}
.err-msg {
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.25);
  color: #f87171;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.82rem;
  margin-bottom: 12px;
  display: none;
}
/* MAGNIFIC */
.mfp-bg {
  background: #000;
  opacity: 0.9;
}
.mfp-iframe-holder .mfp-content {
  max-width: 900px;
}
/* ======================== DASHBOARD ======================== */
#dashboard {
  display: none;
  min-height: 100vh;
  background: var(--bg);
}
/* DB TOPBAR */
.db-top {
  position: fixed;
  top: 0;
  left: var(--dsb);
  right: 0;
  height: var(--nav);
  background: rgba(8, 8, 15, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bd);
  z-index: 900;
  display: flex;
  align-items: center;
  padding: 0 28px;
  gap: 16px;
  transition: left 0.3s;
}
.lm .db-top {
  background: rgba(250, 250, 254, 0.9);
}
.db-top-search {
  flex: 1;
  max-width: 380px;
  position: relative;
}
.db-top-search input {
  width: 100%;
  padding: 8px 14px 8px 36px;
  border-radius: 10px;
  border: 1px solid var(--bd2);
  background: var(--sf);
  color: var(--tx);
  font-size: 0.85rem;
  font-family: "Space Grotesk", sans-serif;
  outline: none;
}
.db-top-search input:focus {
  border-color: var(--pur);
}
.db-top-search i {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--tx3);
  font-size: 0.85rem;
}
.db-user-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border-radius: 12px;
  border: 1px solid var(--bd);
  cursor: pointer;
  transition: 0.2s;
}
.db-user-pill:hover {
  border-color: var(--pur);
  background: rgba(139, 92, 246, 0.06);
}
.db-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}
/* DB SIDEBAR */
.db-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--dsb);
  height: 100vh;
  background: var(--bg2);
  border-right: 1px solid var(--bd);
  z-index: 950;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: 0.3s;
}
.db-logo {
  padding: 18px 20px;
  border-bottom: 1px solid var(--bd);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--tx);
}
.db-nav {
  flex: 1;
  padding: 16px 12px;
  overflow-y: auto;
}
.db-nav-section {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--tx3);
  padding: 0 10px;
  margin: 16px 0 8px;
}
.db-nl {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.875rem;
  color: var(--tx2);
  margin-bottom: 3px;
  cursor: pointer;
  border: none;
  width: 100%;
  background: transparent;
  font-family: "Space Grotesk", sans-serif;
  text-align: left;
  transition: 0.2s;
  position: relative;
}
.db-nl i {
  width: 18px;
  text-align: center;
  font-size: 0.9rem;
}
.db-nl:hover {
  background: rgba(139, 92, 246, 0.1);
  color: var(--tx);
}
.db-nl.active {
  background: rgba(139, 92, 246, 0.15);
  color: #a78bfa;
  font-weight: 600;
}
.db-nl.active::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%;
  bottom: 20%;
  width: 3px;
  background: var(--grad);
  border-radius: 0 3px 3px 0;
}
.db-badge {
  margin-left: auto;
  background: var(--pur);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 100px;
}
.db-bottom {
  padding: 16px 12px;
  border-top: 1px solid var(--bd);
}
/* DB MAIN */
.db-main {
  margin-left: var(--dsb);
  padding-top: var(--nav);
  min-height: 100vh;
}
.db-content {
  padding: 28px;
}
/* DB SECTIONS */
.db-section {
  display: none;
}
.db-section.active {
  display: block;
}
/* STAT CARDS */
.db-stat-card {
  background: var(--sf);
  border: 1px solid var(--bd);
  border-radius: 16px;
  padding: 22px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}
.db-stat-card:hover {
  border-color: rgba(139, 92, 246, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.db-stat-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad);
  opacity: 0.6;
}
.db-stat-val {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 4px;
}
.db-stat-lbl {
  font-size: 0.78rem;
  color: var(--tx3);
  margin-bottom: 6px;
}
.db-stat-delta {
  font-size: 0.75rem;
  font-weight: 600;
}
.delta-up {
  color: #34d399;
}
.delta-dn {
  color: #f87171;
}
/* AI CHAT */
.chat-wrap {
  background: var(--sf);
  border: 1px solid var(--bd);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  height: 520px;
  overflow: hidden;
}
.chat-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--bd);
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-ai-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.chat-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #34d399;
  font-weight: 600;
}
.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}
.chat-body::-webkit-scrollbar {
  width: 4px;
}
.chat-body::-webkit-scrollbar-track {
  background: transparent;
}
.chat-body::-webkit-scrollbar-thumb {
  background: var(--bd2);
  border-radius: 4px;
}
.msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.875rem;
  line-height: 1.55;
  word-break: break-word;
}
.msg-ai {
  background: var(--bg3);
  border: 1px solid var(--bd);
  color: var(--tx);
  align-self: flex-start;
  border-radius: 4px 14px 14px 14px;
}
.msg-user {
  background: var(--grad);
  color: #fff;
  align-self: flex-end;
  border-radius: 14px 14px 4px 14px;
}
.msg-time {
  font-size: 0.68rem;
  color: var(--tx3);
  margin-top: 4px;
}
.typing-ind {
  display: flex;
  gap: 4px;
  padding: 10px 14px;
  background: var(--bg3);
  border: 1px solid var(--bd);
  border-radius: 4px 14px 14px 14px;
  align-self: flex-start;
  align-items: center;
}
.typing-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--pur);
  animation: tbounce 0.9s infinite;
}
.typing-dot:nth-child(2) {
  animation-delay: 0.15s;
}
.typing-dot:nth-child(3) {
  animation-delay: 0.3s;
}
.chat-input-wrap {
  padding: 14px 16px;
  border-top: 1px solid var(--bd);
  display: flex;
  gap: 10px;
  align-items: flex-end;
}
.chat-inp {
  flex: 1;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--bd2);
  background: var(--bg3);
  color: var(--tx);
  font-size: 0.875rem;
  font-family: "Space Grotesk", sans-serif;
  outline: none;
  resize: none;
  max-height: 100px;
  line-height: 1.5;
  transition: 0.2s;
}
.chat-inp:focus {
  border-color: var(--pur);
}
.chat-send {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--grad);
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
  flex-shrink: 0;
}
.chat-send:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(139, 92, 246, 0.4);
}
.chat-send:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
/* AGENT CARD */
.agent-card {
  background: var(--sf);
  border: 1px solid var(--bd);
  border-radius: 16px;
  padding: 20px;
  transition: 0.3s;
}
.agent-card:hover {
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.agent-status {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ag-online {
  background: #34d399;
  box-shadow: 0 0 8px #34d399;
}
.ag-busy {
  background: #8b5cf6;
  box-shadow: 0 0 8px #8b5cf6;
}
.ag-offline {
  background: #6b6b8a;
}
/* TABLE */
.db-table {
  width: 100%;
  border-collapse: collapse;
}
.db-table th {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--tx3);
  padding: 10px 16px;
  border-bottom: 1px solid var(--bd);
  text-align: left;
}
.db-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--bd);
  font-size: 0.875rem;
  color: var(--tx2);
}
.db-table tr:last-child td {
  border-bottom: none;
}
.db-table tr:hover td {
  background: rgba(139, 92, 246, 0.04);
}
/* SETTINGS */
.setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid var(--bd);
}
.setting-row:last-child {
  border-bottom: none;
}
.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
}
.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.toggle-thumb {
  position: absolute;
  inset: 0;
  background: var(--bd2);
  border-radius: 100px;
  cursor: pointer;
  transition: 0.3s;
}
.toggle-thumb::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.3s;
}
.toggle-switch input:checked + .toggle-thumb {
  background: var(--grad);
}
.toggle-switch input:checked + .toggle-thumb::before {
  transform: translateX(20px);
}
/* NOTIFICATION */
.notif-item {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  background: var(--sf);
  border: 1px solid var(--bd);
  margin-bottom: 10px;
  transition: 0.2s;
}
.notif-item:hover {
  border-color: rgba(139, 92, 246, 0.2);
}
.notif-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
/* DROPDOWN PANELS */
.db-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 2000;
  background: var(--bg2);
  border: 1px solid var(--bd2);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  min-width: 340px;
  overflow: hidden;
  animation: fadeIn 0.2s ease;
  display: none;
}
.db-dropdown.open {
  display: block;
}
.dd-header {
  padding: 16px 18px;
  border-bottom: 1px solid var(--bd);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dd-header-title {
  font-weight: 700;
  font-size: 0.95rem;
}
.dd-close {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1px solid var(--bd2);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--tx3);
  cursor: pointer;
  font-size: 0.8rem;
  transition: 0.2s;
}
.dd-close:hover {
  border-color: var(--pur);
  color: var(--pur);
}
.dd-body {
  padding: 14px;
  max-height: 380px;
  overflow-y: auto;
}
.dd-body::-webkit-scrollbar {
  width: 4px;
}
.dd-body::-webkit-scrollbar-thumb {
  background: var(--bd2);
  border-radius: 4px;
}
.notif-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8b5cf6;
  flex-shrink: 0;
  margin-top: 5px;
}
.notif-dot.read {
  background: var(--bd2);
}
.notif-unread {
  background: rgba(139, 92, 246, 0.06);
  border-color: rgba(139, 92, 246, 0.2);
}
/* PROFILE DROPDOWN */
.profile-dd {
  min-width: 260px;
}
.profile-dd-top {
  padding: 18px;
  border-bottom: 1px solid var(--bd);
  display: flex;
  align-items: center;
  gap: 12px;
}
.profile-menu-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-size: 0.875rem;
  color: var(--tx2);
  cursor: pointer;
  transition: 0.2s;
  border-radius: 10px;
  margin: 2px 8px;
  border: none;
  background: transparent;
  width: calc(100% - 16px);
  font-family: "Space Grotesk", sans-serif;
  text-align: left;
}
.profile-menu-item i {
  width: 18px;
  text-align: center;
  font-size: 0.9rem;
}
.profile-menu-item:hover {
  background: rgba(139, 92, 246, 0.1);
  color: var(--tx);
}
.profile-menu-item.danger:hover {
  background: rgba(248, 113, 113, 0.1);
  color: #f87171;
}
.profile-dd-footer {
  padding: 10px 8px;
  border-top: 1px solid var(--bd);
}
/* MOBILE DB */
@media (max-width: 991px) {
  .db-sidebar {
    transform: translateX(-100%);
    transition: 0.3s;
  }
  .db-sidebar.mob-open {
    transform: translateX(0);
  }
  .db-main {
    margin-left: 0;
  }
  .db-top {
    left: 0;
  }
}
/* KEYFRAMES */
@keyframes bpls {
  0%,
  100% {
    box-shadow: 0 0 6px var(--pur);
  }
  50% {
    box-shadow: 0 0 14px var(--pur);
  }
}
@keyframes bgrow {
  from {
    transform: scaleY(0);
    opacity: 0;
  }
  to {
    transform: scaleY(1);
    opacity: 0.75;
  }
}
@keyframes tbounce {
  0%,
  60%,
  100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-5px);
  }
}
@keyframes lscr {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes fadU {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes dinI {
  from {
    opacity: 0;
    transform: perspective(1200px) rotateX(5deg) translateY(28px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.afu {
  animation: fadU 0.8s ease both;
}
.adi {
  animation: dinI 1.1s ease 0.35s both;
}
.rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s, transform 0.65s;
}
.rv.in {
  opacity: 1;
  transform: none;
}
@media (max-width: 575px) {
  .h1 {
    font-size: 2.2rem;
  }
  .stitle {
    font-size: 1.8rem;
  }
  #lofc {
    width: 100%;
  }
  .db-top-search {
    display: none;
  }
  .db-content {
    padding: 16px;
  }
}
.toast-stack {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}
.toast-msg {
  pointer-events: auto;
  min-width: 280px;
  max-width: 380px;
  background: var(--sf);
  border: 1px solid var(--bd);
  border-left: 4px solid var(--pur);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.25s ease;
}
.toast-msg.show {
  opacity: 1;
  transform: none;
}
.toast-msg.success {
  border-left-color: #34d399;
}
.toast-msg.error {
  border-left-color: #f87171;
}
.toast-msg i {
  margin-top: 3px;
}
.min-w-0 {
  min-width: 0 !important;
}

/* ======================== PUBLIC PAGE LAYOUTS ======================== */
.page-shell {
  padding-top: calc(var(--nav) + 1.75rem);
  padding-bottom: 3.5rem;
}
.public-panel {
  position: relative;
  background: var(--sf);
  border: 1px solid var(--bd);
  border-radius: 24px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
  overflow: hidden;
  min-width: 0;
}
.public-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.06), transparent 34%);
}
.public-panel > * {
  position: relative;
  z-index: 1;
}
.public-panel-accent {
  background:
    radial-gradient(circle at top left, rgba(139, 92, 246, 0.15), transparent 34%),
    radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.12), transparent 32%),
    var(--sf);
}
.public-panel-note {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--bd);
  color: var(--tx2);
  font-size: 0.92rem;
  line-height: 1.65;
}
.transition-hover,
.summary-card-hover {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.transition-hover:hover,
.summary-card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.08);
}
.public-panel-subtle {
  color: var(--tx2);
  line-height: 1.7;
  font-size: 0.95rem;
}
.public-feature-list {
  display: grid;
  gap: 12px;
}
.public-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 15px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--bd);
  min-width: 0;
}
.public-feature h3,
.public-feature .h6 {
  color: var(--tx);
}
.public-feature p {
  line-height: 1.65;
}
.public-form .form-label {
  color: var(--tx);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
}
.public-form .form-control,
.public-form .form-select,
.public-form textarea {
  background: var(--bg2);
  border: 1px solid var(--bd2);
  color: var(--tx);
  border-radius: 16px;
  font-size: 0.95rem;
  min-height: 52px;
  padding: 0.85rem 1rem;
  box-shadow: none;
}
.public-form textarea {
  min-height: 150px;
}
.public-form .form-control::placeholder,
.public-form textarea::placeholder {
  color: var(--tx3);
}
.public-form .form-control:focus,
.public-form .form-select:focus,
.public-form textarea:focus {
  background: var(--bg2);
  color: var(--tx);
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 0 0 0.18rem rgba(139, 92, 246, 0.16);
}
.public-form .btn {
  border-radius: 14px;
}
.legal-copy {
  color: var(--tx2);
  line-height: 1.82;
  font-size: 0.95rem;
  min-width: 0;
}
.legal-copy h2,
.legal-copy h3,
.legal-copy h4 {
  color: var(--tx);
  margin-top: 1.45rem;
  margin-bottom: 0.65rem;
  letter-spacing: -0.02em;
}
.legal-copy h2 {
  font-size: clamp(1rem, 1.8vw, 1.34rem);
}
.legal-copy p {
  margin-bottom: 0.8rem;
}
.legal-copy ul {
  margin-bottom: 0.8rem;
  padding-left: 1.2rem;
}
.legal-copy li {
  margin-bottom: 0.35rem;
}
.legal-copy a {
  color: #a78bfa;
}
.legal-copy strong {
  color: var(--tx);
}
.legal-copy table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.88rem;
}
.legal-copy th,
.legal-copy td {
  border: 1px solid var(--bd);
  padding: 0.75rem 0.9rem;
  vertical-align: top;
}
.legal-copy th {
  color: var(--tx);
}
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-actions .btn {
  border-radius: 16px;
}

.arowet-summary-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.arowet-summary-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
}

.arowet-summary-label {
  display: block;
  margin-bottom: 0.28rem;
  color: var(--tx3);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.arowet-summary-note {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.has-cookie-banner {
  padding-bottom: var(--arowet-cookie-banner-space, 140px);
  transition: padding-bottom 0.2s ease;
}

.arowet-cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 16px;
  z-index: 1085;
  width: min(1120px, calc(100vw - 32px));
  transform: translateX(-50%);
  box-shadow: 0 26px 72px rgba(17, 17, 17, 0.18);
}

.arowet-cookie-banner[hidden] {
  display: none !important;
}

.arowet-cookie-banner__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.arowet-cookie-banner__title {
  margin: 0 0 0.35rem;
  color: var(--tx);
  font-size: 1rem;
  font-weight: 800;
}

.arowet-cookie-banner__text {
  margin: 0;
  color: var(--tx2);
  line-height: 1.7;
  font-size: 0.92rem;
}

.arowet-cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.arowet-cookie-banner__actions .btn {
  border-radius: 14px;
}
.public-nav-actions {
  flex-wrap: nowrap;
  min-width: 0;
}
.public-nav-actions .btn {
  white-space: nowrap;
  flex-shrink: 0;
}
#nbar .navbar-brand {
  font-size: 1.2rem;
}
.bio-page {
  overflow-x: hidden;
}
.bio-shell {
  min-height: 100vh;
  padding: 1.5rem 1rem 2rem;
  background-color: var(--bio-shell-color, #f4f4f2);
  background-image:
    radial-gradient(circle at top left, rgba(17, 17, 17, 0.08), transparent 34%),
    radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.08), transparent 32%),
    var(--bio-shell-image, none);
  background-repeat: no-repeat;
  background-size: auto, auto, cover;
  background-position: top left, bottom right, center center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bio-shell__inner {
  width: min(100%, 1040px);
}
.bio-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 30px;
  box-shadow: 0 34px 100px rgba(17, 17, 17, 0.12);
  overflow: hidden;
  backdrop-filter: blur(18px);
}
.bio-card--glass {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px);
}
.bio-card--solid {
  background: rgba(255, 255, 255, 0.96);
}
.bio-card--soft {
  background: rgba(246, 244, 240, 0.92);
}
.bio-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}
.bio-profile,
.bio-links {
  padding: 1.5rem;
  min-width: 0;
}
.bio-profile {
  border-right: 1px solid var(--bd);
  background: rgba(255, 255, 255, 0.42);
}
.bio-avatar {
  width: 108px;
  height: 108px;
  border-radius: 28px;
  object-fit: cover;
  border: 2px solid rgba(17, 17, 17, 0.12);
  flex-shrink: 0;
}
.bio-handle {
  color: var(--tx3);
  font-size: 0.92rem;
}
.bio-text {
  color: var(--tx2);
  line-height: 1.8;
  max-width: 58ch;
  margin: 0;
}
.bio-shell .bgrd {
  background: var(--bio-button-color, #111111);
  color: var(--bio-button-text, #ffffff);
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.14);
}
.bio-shell .bgrd:hover {
  background: var(--bio-button-color, #111111);
  color: var(--bio-button-text, #ffffff);
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.18);
}
.bio-shell .boc {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--bd2);
  color: var(--tx);
}
.bio-shell .boc:hover {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(17, 17, 17, 0.18);
  color: var(--tx);
}
.bio-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.bio-stat {
  padding: 14px 14px 13px;
  border-radius: 18px;
  background: rgba(17, 17, 17, 0.03);
  border: 1px solid var(--bd);
}
.bio-stat-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--tx);
  line-height: 1.15;
}
.bio-stat-label {
  font-size: 0.74rem;
  color: var(--tx3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}
.bio-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.bio-social-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--bd);
  background: rgba(17, 17, 17, 0.03);
  color: var(--tx);
  font-size: 0.88rem;
  white-space: nowrap;
  transition: 0.2s;
}
.bio-social-chip:hover {
  color: var(--tx);
  border-color: rgba(17, 17, 17, 0.18);
  background: rgba(17, 17, 17, 0.06);
}
.bio-links {
  background:
    radial-gradient(circle at top right, rgba(17, 17, 17, 0.04), transparent 34%),
    rgba(255, 255, 255, 0.26);
}
.bio-link-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 1rem 1.05rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--bd);
  transition: 0.22s;
  min-width: 0;
}
.bio-link-card:hover {
  color: inherit;
  border-color: rgba(17, 17, 17, 0.18);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.12);
}
.bio-link-thumb,
.bio-link-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  flex-shrink: 0;
}
.bio-link-thumb {
  object-fit: cover;
  background: rgba(17, 17, 17, 0.04);
}
.bio-link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bio-button-color, #111111);
  color: var(--bio-button-text, #ffffff);
}
.bio-link-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}
.bio-link-title {
  color: var(--tx);
  font-weight: 600;
  line-height: 1.4;
}
.bio-link-desc {
  color: var(--tx2);
  font-size: 0.85rem;
  line-height: 1.5;
}
.bio-empty {
  padding: 1.75rem 1.25rem;
  border-radius: 20px;
  border: 1px dashed var(--bd2);
  background: rgba(255, 255, 255, 0.34);
  text-align: center;
}
.bio-empty-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 1rem;
  border-radius: 18px;
  background: var(--bio-button-color, #111111);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bio-button-text, #ffffff);
  font-size: 1rem;
}
.bio-empty .public-panel-subtle {
  max-width: 34ch;
  margin: 0 auto;
}
.bio-media-section {
  min-width: 0;
}
.bio-media-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.bio-media-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--bd);
  background: rgba(255, 255, 255, 0.74);
  min-height: 190px;
  box-shadow: 0 14px 28px rgba(17, 17, 17, 0.10);
}
.bio-media-card img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  display: block;
}
.bio-media-badge {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(17, 17, 17, 0.82);
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}
.bio-media-badge.is-public {
  background: rgba(34, 197, 94, 0.16);
  border-color: rgba(34, 197, 94, 0.34);
  color: #0f6b47;
}
.bio-media-badge.is-blurred {
  background: rgba(17, 17, 17, 0.08);
  border-color: rgba(17, 17, 17, 0.12);
  color: #111111;
}
@media (max-width: 991px) {
  .bio-grid {
    grid-template-columns: 1fr;
  }
  .bio-profile {
    border-right: none;
    border-bottom: 1px solid var(--bd);
  }
}
@media (max-width: 575px) {
  .page-shell {
    padding-top: 8rem;
    padding-bottom: 2.75rem;
  }
  #nbar .navbar-brand {
    font-size: 1rem;
  }
  .bio-shell {
    padding: 0.85rem 0.75rem 1.5rem;
  }
  .bio-card {
    border-radius: 24px;
  }
  .bio-profile,
  .bio-links {
    padding: 1.1rem;
  }
  .bio-avatar {
    width: 92px;
    height: 92px;
    border-radius: 24px;
  }
  .bio-stats {
    grid-template-columns: 1fr;
  }
  .bio-media-grid {
    grid-template-columns: 1fr;
  }
  .bio-link-card {
    padding: 0.95rem 0.95rem;
  }
  .bio-link-thumb,
  .bio-link-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
  .public-nav-actions .btn {
    padding: 0.42rem 0.64rem !important;
    font-size: 0.78rem;
  }
  .public-nav-actions #thbtn {
    width: 34px !important;
    height: 34px !important;
  }
}

/* ======================== AROWET LIGHT SHELL ======================== */
body.arowet-static-shell,
body.arowet-home-shell {
  --bg: #f4f4f2;
  --bg2: #e8e7e3;
  --bg3: #ffffff;
  --sf: #ffffff;
  --bd: rgba(17, 17, 17, 0.08);
  --bd2: rgba(17, 17, 17, 0.12);
  --tx: #121212;
  --tx2: #4f4f4f;
  --tx3: #6a6a6a;
  --pur: #8b5cf6;
  --blu: #3b82f6;
  --grad: linear-gradient(135deg, #8b5cf6, #3b82f6);
  --nav: 60px;
  background: #f4f4f2;
  color: #121212;
  color-scheme: light;
  font-family: "Inter", "Inter Placeholder", sans-serif;
  overflow-x: hidden;
}

body.arowet-home-shell {
  background:
    radial-gradient(circle at top left, rgba(139, 92, 246, 0.12), transparent 34%),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.1), transparent 30%),
    linear-gradient(180deg, #f4f4f2 0%, #ecebe7 100%);
}

body.arowet-static-shell .bio-shell {
  background:
    radial-gradient(circle at top left, rgba(242, 66, 2, 0.08), transparent 36%),
    radial-gradient(circle at bottom right, rgba(18, 18, 18, 0.05), transparent 30%),
    linear-gradient(180deg, #f0f0f0 0%, #e7e7e7 100%);
}

body.arowet-static-shell .bio-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px dashed rgba(0, 0, 0, 0.14);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
}

body.arowet-static-shell .bio-profile {
  background: rgba(255, 255, 255, 0.62);
}

body.arowet-static-shell .bio-links {
  background:
    radial-gradient(circle at top right, rgba(242, 66, 2, 0.06), transparent 34%),
    rgba(255, 255, 255, 0.3);
}

body.arowet-static-shell .bio-link-card {
  background: rgba(255, 255, 255, 0.76);
  border-color: rgba(0, 0, 0, 0.1);
}

body.arowet-static-shell .bio-link-card:hover {
  border-color: rgba(242, 66, 2, 0.24);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.08);
}

body.arowet-static-shell .bio-empty {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(0, 0, 0, 0.1);
}

body.arowet-static-shell.auth-page .card.bg-dark,
body.arowet-static-shell.error-page .card.bg-dark,
body.arowet-static-shell.auth-page .card.text-light,
body.arowet-static-shell.error-page .card.text-light {
  background: rgba(255, 255, 255, 0.82) !important;
  color: #121212 !important;
  border: 1px dashed rgba(0, 0, 0, 0.14) !important;
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.08) !important;
}

body.arowet-static-shell.auth-page .text-light,
body.arowet-static-shell.error-page .text-light,
body.arowet-static-shell.auth-page .text-secondary,
body.arowet-static-shell.error-page .text-secondary {
  color: #4f4f4f !important;
}

body.arowet-static-shell.auth-page .logo-i,
body.arowet-static-shell.error-page .logo-i {
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
}

body.arowet-static-shell.auth-page .btn-primary,
body.arowet-static-shell.error-page .btn-primary {
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  border-color: transparent;
}

body.arowet-static-shell.auth-page .btn-primary:hover,
body.arowet-static-shell.error-page .btn-primary:hover {
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  border-color: transparent;
}

body.arowet-static-shell.auth-page .form-control,
body.arowet-static-shell.auth-page .form-select,
body.arowet-static-shell.error-page .form-control,
body.arowet-static-shell.error-page .form-select {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(0, 0, 0, 0.12);
  color: #121212;
}

body.arowet-static-shell.auth-page .form-control:focus,
body.arowet-static-shell.auth-page .form-select:focus,
body.arowet-static-shell.error-page .form-control:focus,
body.arowet-static-shell.error-page .form-select:focus {
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: 0 0 0 0.18rem rgba(139, 92, 246, 0.14);
}

body.arowet-static-shell.auth-page .public-panel a:not(.bgrd):not(.boc),
body.arowet-static-shell.error-page .public-panel a:not(.bgrd):not(.boc) {
  color: #8b5cf6;
}

.arowet-home {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.arowet-home::before,
.arowet-home::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.arowet-home::before {
  width: 520px;
  height: 520px;
  top: -140px;
  right: -120px;
  background: rgba(242, 66, 2, 0.1);
}

.arowet-home::after {
  width: 640px;
  height: 640px;
  left: -180px;
  top: 28%;
  background: rgba(18, 18, 18, 0.05);
}

.arowet-home > * {
  position: relative;
  z-index: 1;
}

.arowet-home__main {
  padding-bottom: 32px;
}

.arowet-page-nav {
  position: sticky;
  top: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.arowet-page-nav__inner {
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
  min-height: var(--nav);
  display: flex;
  align-items: center;
  gap: 18px;
}

.arowet-page-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #121212;
  text-decoration: none;
  font-size: 1.04rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.arowet-page-nav__mark {
  width: auto;
  height: 28px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.arowet-page-nav__mark img {
  display: block;
  width: auto;
  height: 100%;
  max-width: none;
}

.arowet-page-nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px dashed rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
  flex-direction: column;
  flex-shrink: 0;
}

.arowet-page-nav__toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #121212;
}

.arowet-page-nav__menu {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.arowet-page-nav__link,
.arowet-page-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.arowet-page-nav__link {
  color: #4f4f4f;
  border: 1px solid transparent;
}

.arowet-page-nav__link--mobile-only {
  display: none;
}

.arowet-page-nav__link:hover {
  color: #8b5cf6;
  background: rgba(139, 92, 246, 0.08);
}

.arowet-page-nav__cta {
  color: #f0f0f0;
  background-color: #0050ff;
  border: 1px solid transparent;
}

.arowet-page-nav__cta:hover {
  color: #f0f0f0;
  background: linear-gradient(135deg, #5f2dd3, #0062ff);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(59, 130, 246, 0.18);
}

.arowet-site-footer {
  margin-top: 72px;
  padding: 0;
  border-top: 1px dashed rgba(0, 0, 0, 0.14);
 background: #000;
}

.arowet-site-footer__container {
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
}

.arowet-site-footer__top {
  display: grid;
  gap: 22px;
}

.arowet-site-footer__brand {
  max-width: 460px;
}

.arowet-site-footer__wordmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #121212;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.arowet-site-footer__mark {
  width: auto;
  height: 34px;
  flex-shrink: 0;
}

.arowet-site-footer__mark img {
  display: block;
  width: auto;
  height: 100%;
  max-width: none;
}

.arowet-site-footer__lead {
  margin: 16px 0 0;
  max-width: 48ch;
  color: #4f4f4f;
  font-size: 0.96rem;
  line-height: 1.75;
}

.arowet-site-footer__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.arowet-site-footer__chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #4f4f4f;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.arowet-site-footer__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.arowet-site-footer__panel {
  padding: 20px;
  border: 1px dashed rgba(0, 0, 0, 0.14);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.56);
  min-width: 0;
}

.arowet-site-footer__heading {
  margin: 0 0 14px;
  color: #6a6a6a;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.arowet-site-footer__nav,
.arowet-site-footer__contact {
  display: grid;
  gap: 10px;
}

.arowet-site-footer__nav a,
.arowet-site-footer__contact a {
  color: #4f4f4f;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.45;
  transition: color 0.2s ease, transform 0.2s ease;
}

.arowet-site-footer__nav a:hover,
.arowet-site-footer__contact a:hover {
  color: #8b5cf6;
  transform: translateX(2px);
}

.arowet-site-footer__bottom {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.arowet-site-footer__copyright {
  margin: 0;
  color: #6a6a6a;
  font-size: 0.84rem;
  font-weight: 600;
}

.arowet-site-footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.arowet-site-footer__bottom-links a {
  color: #6a6a6a;
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 700;
}

.arowet-site-footer__bottom-links a:hover {
  color: #121212;
}

.arowet-home__hero {
  padding: 44px 0 56px;
}

.arowet-home__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 32px;
  align-items: center;
}

.arowet-home__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px dashed rgba(0, 0, 0, 0.14);
  background: rgba(255, 255, 255, 0.64);
  color: #8b5cf6;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.arowet-home__kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #8b5cf6;
  box-shadow: 0 0 0 6px rgba(139, 92, 246, 0.12);
  flex-shrink: 0;
}

.arowet-home__title {
  margin: 18px 0 16px;
  max-width: 11ch;
  color: #121212;
  font-size: clamp(3rem, 7.3vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.92;
}

.arowet-home__title span {
  color: #4f4f4f;
}

.arowet-home__lead {
  margin: 0;
  max-width: 62ch;
  color: #4f4f4f;
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.85;
}

.arowet-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.arowet-home__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  border-radius: 16px;
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.arowet-home__button:hover {
  transform: translateY(-2px);
}

.arowet-home__button--primary {
  color: #f0f0f0;
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  border: 1px solid transparent;
  box-shadow: 0 14px 32px rgba(59, 130, 246, 0.18);
}

.arowet-home__button--primary:hover {
  color: #f0f0f0;
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
}

.arowet-home__button--secondary {
  color: #121212;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(0, 0, 0, 0.14);
}

.arowet-home__button--secondary:hover {
  color: #121212;
  background: rgba(255, 255, 255, 0.92);
}

.arowet-home__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.arowet-home__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #4f4f4f;
  font-size: 0.76rem;
  font-weight: 700;
}

.arowet-home__meta-item i {
  color: #8b5cf6;
}

.arowet-home__marquee {
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.38);
}

.arowet-home__marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  padding: 16px 0;
  animation: arowet-marquee 28s linear infinite;
}

.arowet-home__marquee-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: #4f4f4f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.arowet-home__section {
  padding: 88px 0;
}

.arowet-home__section--soft {
  background: rgba(255, 255, 255, 0.28);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.arowet-home__section-header {
  max-width: 820px;
  margin: 0 auto 34px;
  text-align: center;
}

.arowet-home__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(139, 92, 246, 0.22);
  background: rgba(139, 92, 246, 0.08);
  color: #8b5cf6;
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.arowet-home__heading {
  margin: 14px 0 0;
  color: #121212;
  font-size: clamp(2.05rem, 4vw, 3.55rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.08;
}

.arowet-home__copy {
  margin: 14px auto 0;
  max-width: 760px;
  color: #4f4f4f;
  font-size: 1rem;
  line-height: 1.8;
}

.arowet-home__card-grid,
.arowet-home__step-grid,
.arowet-home__trust-grid {
  display: grid;
  gap: 18px;
}

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

.arowet-home__step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.arowet-home__trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.arowet-home__card,
.arowet-home__step,
.arowet-home__trust-card,
.arowet-home__panel,
.arowet-home__cta {
  position: relative;
  overflow: hidden;
  border: 1px dashed rgba(0, 0, 0, 0.14);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
  min-width: 0;
}

.arowet-home__card,
.arowet-home__step,
.arowet-home__trust-card {
  padding: 24px;
  height: 100%;
}

.arowet-home__card::after,
.arowet-home__step::after,
.arowet-home__trust-card::after,
.arowet-home__panel::after,
.arowet-home__cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.05), transparent 36%);
}

.arowet-home__card > *,
.arowet-home__step > *,
.arowet-home__trust-card > *,
.arowet-home__panel > *,
.arowet-home__cta > * {
  position: relative;
  z-index: 1;
}

.arowet-home__icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  color: #f0f0f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  margin-bottom: 16px;
}

.arowet-home__card-title,
.arowet-home__step-title,
.arowet-home__trust-title {
  margin: 0 0 12px;
  color: #121212;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.25;
}

.arowet-home__card-copy,
.arowet-home__step-copy,
.arowet-home__trust-copy {
  margin: 0;
  color: #4f4f4f;
  font-size: 0.95rem;
  line-height: 1.75;
}

.arowet-home__chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-top: 14px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.18);
  color: #8b5cf6;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.arowet-home__step-number {
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  color: #f0f0f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
}

.arowet-home__split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 20px;
  align-items: start;
}

.arowet-home__panel {
  padding: 24px;
}

.arowet-home__list {
  display: grid;
  gap: 12px;
}

.arowet-home__list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.arowet-home__list-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: rgba(139, 92, 246, 0.12);
  color: #8b5cf6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.arowet-home__list-title {
  margin: 0 0 4px;
  color: #121212;
  font-size: 0.98rem;
  font-weight: 800;
}

.arowet-home__list-copy {
  margin: 0;
  color: #4f4f4f;
  font-size: 0.9rem;
  line-height: 1.7;
}

.arowet-home__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.arowet-home__stat {
  padding: 16px;
  border-radius: 18px;
  border: 1px dashed rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.arowet-home__stat-value {
  color: #121212;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1.1;
}

.arowet-home__stat-label {
  margin-top: 6px;
  color: #6a6a6a;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.arowet-home__preview {
  border-radius: 32px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: linear-gradient(180deg, #ffffff 0%, rgba(247, 247, 243, 0.98) 100%);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.arowet-home__preview-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: rgba(229, 229, 229, 0.68);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.arowet-home__preview-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.arowet-home__preview-body {
  display: grid;
  grid-template-columns: 188px minmax(0, 1fr);
}

.arowet-home__preview-sidebar {
  padding: 16px 12px;
  background: rgba(245, 245, 241, 0.86);
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 8px;
}

.arowet-home__preview-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  color: #6a6a6a;
  background: transparent;
  border: 1px solid transparent;
  font-size: 0.8rem;
  font-weight: 800;
}

.arowet-home__preview-nav.is-active {
  color: #121212;
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.18);
}

.arowet-home__preview-content {
  padding: 22px;
  min-width: 0;
}

.arowet-home__profile {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.arowet-home__avatar {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: linear-gradient(135deg, #121212, #2c2c2c);
  color: #f0f0f0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
  flex-shrink: 0;
}

.arowet-home__profile-name {
  margin: 0;
  color: #121212;
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.arowet-home__profile-handle {
  color: #6a6a6a;
  font-size: 0.82rem;
}

.arowet-home__profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.arowet-home__profile-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.08);
  border: 1px solid rgba(139, 92, 246, 0.16);
  color: #8b5cf6;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.arowet-home__preview-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.arowet-home__preview-stat {
  padding: 14px 14px 12px;
  border-radius: 18px;
  border: 1px dashed rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.72);
}

.arowet-home__preview-stat-value {
  color: #121212;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.arowet-home__preview-stat-label {
  margin-top: 4px;
  color: #6a6a6a;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.arowet-home__preview-stack {
  display: grid;
  gap: 10px;
}

.arowet-home__preview-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 20px;
  background: #f7f7f4;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.arowet-home__preview-link:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 92, 246, 0.28);
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.08);
}

.arowet-home__preview-link-title {
  color: #121212;
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.arowet-home__preview-link-sub {
  margin-top: 2px;
  color: #6a6a6a;
  font-size: 0.78rem;
}

.arowet-home__preview-link-icon {
  color: #8b5cf6;
  flex-shrink: 0;
}

.arowet-home__accordion .accordion-item {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.05);
}

.arowet-home__accordion .accordion-button {
  padding: 18px 20px;
  background: transparent;
  color: #121212;
  font-weight: 800;
  box-shadow: none;
}

.arowet-home__accordion .accordion-button:not(.collapsed) {
  background: rgba(139, 92, 246, 0.08);
  color: #121212;
}

.arowet-home__accordion .accordion-button::after {
  filter: none;
}

.arowet-home__accordion .accordion-body {
  padding: 0 20px 18px;
  color: #4f4f4f;
  line-height: 1.8;
}

.arowet-home__cta {
  max-width: 980px;
  margin: 0 auto;
  padding: 34px;
  background: linear-gradient(135deg, rgba(18, 18, 18, 0.98), rgba(32, 32, 32, 0.95));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.16);
  color: #f0f0f0;
  text-align: center;
}

.arowet-home__cta .arowet-home__eyebrow {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: #f0f0f0;
}

.arowet-home__cta .arowet-home__heading,
.arowet-home__cta .arowet-home__copy {
  color: inherit;
}

.arowet-home__cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.arowet-home__button--ghost {
  color: #f0f0f0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.arowet-home__button--ghost:hover {
  color: #f0f0f0;
  background: rgba(255, 255, 255, 0.08);
}

.arowet-reveal {
  opacity: 1;
  transform: none;
  transition: none;
  transition-delay: 0s;
}

.arowet-reveal.is-visible,
.arowet-reveal.in {
  opacity: 1;
  transform: none;
}

@keyframes arowet-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1199.98px) {
  .arowet-home__hero-grid,
  .arowet-home__split {
    grid-template-columns: 1fr;
  }

  .arowet-home__title {
    max-width: 12ch;
  }

  .arowet-home__preview-body {
    grid-template-columns: 1fr;
  }

  .arowet-home__preview-sidebar {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  .arowet-home__preview-nav {
    justify-content: center;
  }

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

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

  .arowet-home__stats,
  .arowet-home__preview-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .arowet-site-footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .arowet-page-nav__inner {
    flex-wrap: wrap;
  }

  .arowet-page-nav__toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .arowet-page-nav__menu {
    display: none;
    width: 100%;
    margin-left: 0;
    padding: 0 0 18px;
    align-items: stretch;
  }

  .arowet-page-nav.is-open .arowet-page-nav__menu,
  .arowet-page-nav__menu[data-open="true"] {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .arowet-page-nav__link,
  .arowet-page-nav__cta {
    width: 100%;
    justify-content: center;
  }

  .arowet-page-nav__link--mobile-only {
    display: inline-flex;
  }

  .arowet-home__section {
    padding: 76px 0;
  }

  .arowet-home__card-grid,
  .arowet-home__trust-grid,
  .arowet-home__step-grid,
  .arowet-home__stats,
  .arowet-home__preview-stats {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 767.98px) {
  body.has-cookie-banner {
    padding-bottom: var(--arowet-cookie-banner-space, 220px);
  }

  .arowet-cookie-banner {
    left: 50%;
    bottom: 12px;
    width: calc(100vw - 24px);
    transform: translateX(-50%);
  }

  .arowet-cookie-banner__inner {
    grid-template-columns: 1fr;
  }

  .arowet-cookie-banner__actions {
    justify-content: flex-start;
  }

  .arowet-cookie-banner__actions .btn {
    width: 100%;
  }

  .arowet-home__hero {
    padding-top: 28px;
  }

  .arowet-home__actions,
  .arowet-home__cta-actions,
  .arowet-site-footer__bottom,
  .arowet-site-footer__bottom-links {
    justify-content: flex-start;
  }

  .arowet-home__preview-content {
    padding: 18px;
  }

  .arowet-home__preview-sidebar {
    grid-template-columns: 1fr;
  }

  .arowet-site-footer {
    margin-top: 72px;
    padding-top: 28px;
  }

  .arowet-site-footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .arowet-page-nav__inner,
  .arowet-site-footer .container {
    width: min(100% - 24px, 100%);
  }

  .arowet-home__title {
    max-width: none;
  }

  .arowet-home__card,
  .arowet-home__step,
  .arowet-home__trust-card,
  .arowet-home__panel,
  .arowet-home__cta,
  .arowet-site-footer__panel {
    border-radius: 22px;
  }

  .arowet-home__hero-grid {
    gap: 24px;
  }

  .arowet-home__button,
  .arowet-page-nav__link,
  .arowet-page-nav__cta {
    width: 100%;
  }

  .page-actions .btn {
    width: 100%;
  }
}

/* ======================== AROWET REFERENCE-INSPIRED HOME ======================== */
body.arowet-home-shell .arowet-page-nav {
  background: rgba(244, 244, 242, 0.92);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

body.arowet-home-shell .arowet-site-footer__nav a:hover,
body.arowet-home-shell .arowet-site-footer__contact a:hover,
body.arowet-home-shell .arowet-site-footer__bottom-links a:hover {
  color: #111111;
}

body.arowet-home-shell .arowet-home {
  overflow: clip;
}

body.arowet-home-shell .arowet-home__hero {
  padding: 42px 0 14px;
}

body.arowet-home-shell .arowet-home__hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 42px;
  align-items: start;
  min-height: clamp(720px, 88vh, 960px);
  position: relative;
  z-index: 2;
}

body.arowet-home-shell .arowet-home__hero-copy {
  max-width: 680px;
}

body.arowet-home-shell .arowet-home__kicker,
body.arowet-home-shell .arowet-home__section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.76);
  color: #5a5a5a;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.arowet-home-shell .arowet-home__kicker-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c6ccb8;
  box-shadow: 0 0 0 5px rgba(198, 204, 184, 0.34);
  flex: none;
}

body.arowet-home-shell .arowet-home__title {
  margin: 20px 0 0;
  max-width: 10.5ch;
  color: #111111;
  font-size: clamp(3.35rem, 6.8vw, 6.6rem);
  line-height: 0.92;
  letter-spacing: -0.07em;
  font-weight: 900;
}

body.arowet-home-shell .arowet-home__title span {
  display: block;
  color: #5a5a5a;
}

body.arowet-home-shell .arowet-home__lead {
  margin: 20px 0 0;
  max-width: 60ch;
  color: #5b5b5b;
  font-size: 1.07rem;
  line-height: 1.78;
}

body.arowet-home-shell .arowet-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

body.arowet-home-shell .arowet-home__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

body.arowet-home-shell .arowet-home__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.76);
  color: #4f4f4f;
  font-size: 0.86rem;
  font-weight: 600;
}

body.arowet-home-shell .arowet-home__meta-item i {
  color: #111111;
}

body.arowet-home-shell .arowet-home__hero-visual {
  min-width: 0;
}

body.arowet-home-shell .arowet-home__visual-stack {
  display: grid;
  gap: 14px;
}

body.arowet-home-shell .arowet-home__visual-card {
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
}

body.arowet-home-shell .arowet-home__visual-card--tall {
  min-height: 330px;
}

body.arowet-home-shell .arowet-home__visual-card--short {
  min-height: 260px;
}

body.arowet-home-shell .arowet-home__visual-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.arowet-home-shell .arowet-home__logos {
  padding: 2px 0 10px;
}

body.arowet-home-shell .arowet-home__logo-row {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  padding: 16px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(10px);
}

body.arowet-home-shell .arowet-home__logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 56px;
  padding: 0 10px;
  border-radius: 16px;
  border: 1px solid rgba(17, 17, 17, 0.06);
  background: rgba(255, 255, 255, 0.66);
  color: #5a5a5a;
  font-size: 0.8rem;
  font-weight: 700;
  text-align: center;
}

body.arowet-home-shell .arowet-home__logo-pill i {
  color: #111111;
}

body.arowet-home-shell .arowet-home__statement {
  padding: 90px 0;
  text-align: center;
}

body.arowet-home-shell .arowet-home__statement-title {
  margin: 14px auto 0;
  max-width: 16ch;
  color: #111111;
  font-size: clamp(2.25rem, 4.5vw, 4.4rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 900;
}

body.arowet-home-shell .arowet-home__statement-copy {
  margin: 18px auto 0;
  max-width: 56ch;
  color: #5a5a5a;
  font-size: 1rem;
  line-height: 1.85;
}

body.arowet-home-shell .arowet-home__section {
  padding: 96px 0;
}

body.arowet-home-shell .arowet-home__section--soft {
  background: rgba(255, 255, 255, 0.28);
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}

body.arowet-home-shell .arowet-home__section-header {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

body.arowet-home-shell .arowet-home__section-header--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
  gap: 30px;
  align-items: end;
  max-width: none;
  text-align: left;
}

body.arowet-home-shell .arowet-home__heading {
  margin: 14px 0 0;
  color: #111111;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  font-weight: 900;
}

body.arowet-home-shell .arowet-home__copy {
  margin: 16px auto 0;
  max-width: 52ch;
  color: #5a5a5a;
  font-size: 1rem;
  line-height: 1.85;
}

body.arowet-home-shell .arowet-home__note {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.04);
  color: #5a5a5a;
  font-size: 0.92rem;
  line-height: 1.75;
}

body.arowet-home-shell .arowet-home__note a {
  color: #8b5cf6;
}

body.arowet-home-shell .arowet-home__service-grid {
  display: grid;
  gap: 22px;
}

body.arowet-home-shell .arowet-home__service-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: stretch;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.05);
}

body.arowet-home-shell .arowet-home__service-card--reverse .arowet-home__service-copy {
  order: 2;
}

body.arowet-home-shell .arowet-home__service-card--reverse .arowet-home__service-media {
  order: 1;
}

body.arowet-home-shell .arowet-home__service-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 12px;
}

body.arowet-home-shell .arowet-home__service-index {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.78);
  color: #6a6a6a;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

body.arowet-home-shell .arowet-home__service-title {
  margin: 0;
  max-width: 16ch;
  color: #111111;
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 900;
}

body.arowet-home-shell .arowet-home__service-text {
  margin: 0;
  max-width: 46ch;
  color: #5b5b5b;
  font-size: 0.98rem;
  line-height: 1.8;
}

body.arowet-home-shell .arowet-home__service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

body.arowet-home-shell .arowet-home__service-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.7);
  color: #5a5a5a;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.arowet-home-shell .arowet-home__service-media {
  min-height: 340px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: #ffffff;
}

body.arowet-home-shell .arowet-home__service-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.arowet-home-shell .arowet-home__process {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: start;
}

body.arowet-home-shell .arowet-home__process-rail {
  display: grid;
  gap: 14px;
}

body.arowet-home-shell .arowet-home__process-card {
  padding: 20px;
  border-radius: 24px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.05);
}

body.arowet-home-shell .arowet-home__process-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #111111;
  color: #f4f4f2;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

body.arowet-home-shell .arowet-home__process-title {
  margin: 14px 0 0;
  color: #111111;
  font-size: 1.35rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 900;
}

body.arowet-home-shell .arowet-home__process-text {
  margin: 10px 0 0;
  color: #5b5b5b;
  line-height: 1.8;
}

body.arowet-home-shell .arowet-home__metrics {
  padding: 0 0 12px;
}

body.arowet-home-shell .arowet-home__metrics-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

body.arowet-home-shell .arowet-home__metric {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

body.arowet-home-shell .arowet-home__metric-value {
  color: #111111;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

body.arowet-home-shell .arowet-home__metric-label {
  margin-top: 4px;
  color: #6a6a6a;
  font-size: 0.8rem;
  font-weight: 700;
}

body.arowet-home-shell .arowet-home__work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

body.arowet-home-shell .arowet-home__work-card {
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 40px rgba(17, 17, 17, 0.06);
}

body.arowet-home-shell .arowet-home__work-media {
  aspect-ratio: 1.18 / 0.92;
  overflow: hidden;
  background: #ffffff;
}

body.arowet-home-shell .arowet-home__work-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.arowet-home-shell .arowet-home__work-bar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 14px 16px;
}

body.arowet-home-shell .arowet-home__work-title {
  margin: 0;
  color: #111111;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

body.arowet-home-shell .arowet-home__work-meta {
  margin: 3px 0 0;
  color: #6a6a6a;
  font-size: 0.8rem;
}

body.arowet-home-shell .arowet-home__work-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: #111111;
  color: #f4f4f2;
  text-decoration: none;
  flex: none;
}

body.arowet-home-shell .arowet-home__benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body.arowet-home-shell .arowet-home__benefit-card {
  min-height: 180px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 14px 32px rgba(17, 17, 17, 0.05);
}

body.arowet-home-shell .arowet-home__benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #111111;
  color: #f4f4f2;
}

body.arowet-home-shell .arowet-home__benefit-card h3 {
  margin: 16px 0 0;
  color: #111111;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

body.arowet-home-shell .arowet-home__benefit-card p {
  margin: 10px 0 0;
  color: #5b5b5b;
  line-height: 1.75;
}

body.arowet-home-shell .arowet-home__cta {
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.68));
  box-shadow: 0 20px 48px rgba(17, 17, 17, 0.06);
  text-align: center;
}

body.arowet-home-shell .arowet-home__cta .arowet-home__heading {
  max-width: 18ch;
  margin-inline: auto;
}

body.arowet-home-shell .arowet-home__cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

body.arowet-home-shell .arowet-home__accordion .accordion-item {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.04);
}

body.arowet-home-shell .arowet-home__accordion .accordion-button {
  background: rgba(255, 255, 255, 0.8);
  color: #111111;
  font-weight: 800;
}

body.arowet-home-shell .arowet-home__accordion .accordion-button:not(.collapsed) {
  background: #ffffff;
  color: #111111;
  box-shadow: none;
}

body.arowet-home-shell .arowet-home__accordion .accordion-body {
  background: rgba(255, 255, 255, 0.76);
  color: #5b5b5b;
  line-height: 1.8;
}

body.arowet-home-shell.has-site-motion.is-preload {
  opacity: 0;
}

body.arowet-home-shell #hero.arowet-home__hero {
  min-height: auto;
  display: block;
  justify-content: flex-start;
  overflow: clip;
  position: relative;
  isolation: isolate;
}

body.arowet-home-shell .arowet-home__hero-scene {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 20%, rgba(139, 92, 246, 0.16), transparent 30%),
    radial-gradient(circle at 78% 18%, rgba(59, 130, 246, 0.16), transparent 26%),
    radial-gradient(circle at 58% 78%, rgba(34, 197, 94, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 60%);
  opacity: 0.96;
  transform: translateZ(0);
}

body.arowet-home-shell .arowet-home__hero-scene::before,
body.arowet-home-shell .arowet-home__hero-scene::after {
  content: "";
  position: absolute;
  inset: auto;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.9;
}

body.arowet-home-shell .arowet-home__hero-scene::before {
  top: 10%;
  right: -2%;
  width: min(42vw, 620px);
  height: min(42vw, 620px);
  background: radial-gradient(circle, rgba(139, 92, 246, 0.24) 0%, rgba(139, 92, 246, 0.09) 42%, transparent 72%);
}

body.arowet-home-shell .arowet-home__hero-scene::after {
  left: -6%;
  bottom: -14%;
  width: min(38vw, 560px);
  height: min(38vw, 560px);
  background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, rgba(59, 130, 246, 0.08) 40%, transparent 72%);
}

body.arowet-home-shell .arowet-home__hero-scene.is-ready {
  opacity: 1;
}

body.arowet-home-shell .arowet-home__hero-scene.is-fallback .arowet-home__three-canvas,
body.arowet-home-shell .arowet-home__hero-scene.is-disabled .arowet-home__three-canvas {
  opacity: 0;
}

body.arowet-home-shell .arowet-home__hero-scene.is-fallback::before,
body.arowet-home-shell .arowet-home__hero-scene.is-fallback::after,
body.arowet-home-shell .arowet-home__hero-scene.is-disabled::before,
body.arowet-home-shell .arowet-home__hero-scene.is-disabled::after {
  opacity: 1;
}

body.arowet-home-shell .arowet-home__three-canvas {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.45s ease;
}

body.arowet-home-shell .arowet-home__hero-scene.is-ready .arowet-home__three-canvas {
  opacity: 1;
}

body.arowet-home-shell .arowet-home__title .arowet-home__title-line {
  display: block;
  overflow: hidden;
  will-change: transform, opacity;
  transition:
    opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--arowet-motion-delay, 0s);
}

body.arowet-home-shell .arowet-home__title .arowet-home__title-line:first-child {
  color: #111111;
}

body.arowet-home-shell .arowet-home__title .arowet-home__title-line:last-child {
  color: #5a5a5a;
}

body.arowet-home-shell .arowet-home__title .split-word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding-bottom: 0.08em;
}

body.arowet-home-shell .arowet-home__title .split-word {
  display: inline-block;
  will-change: transform, opacity;
}

body.arowet-home-shell .reveal-up,
body.arowet-home-shell .reveal-left,
body.arowet-home-shell .reveal-right,
body.arowet-home-shell .reveal-scale,
body.arowet-home-shell .stagger-child,
body.arowet-home-shell .arowet-reveal {
  opacity: 1;
  transform: none;
  will-change: transform, opacity;
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--arowet-motion-delay, 0s);
}

body.has-site-motion.arowet-home-shell .arowet-home__title .arowet-home__title-line {
  opacity: 0;
  transform: translate3d(0, 68px, 0);
}

body.has-site-motion.arowet-home-shell .reveal-up,
body.has-site-motion.arowet-home-shell .stagger-child,
body.has-site-motion.arowet-home-shell .arowet-reveal {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
}

body.has-site-motion.arowet-home-shell .reveal-left {
  opacity: 0;
  transform: translate3d(-40px, 0, 0);
}

body.has-site-motion.arowet-home-shell .reveal-right {
  opacity: 0;
  transform: translate3d(40px, 0, 0);
}

body.has-site-motion.arowet-home-shell .reveal-scale {
  opacity: 0;
  transform: scale(0.94);
}

body.has-site-motion.arowet-home-shell .motion-in,
body.has-site-motion.arowet-home-shell .is-visible,
body.has-site-motion.arowet-home-shell .in {
  opacity: 1;
  transform: none;
}

body.has-site-motion.arowet-home-shell .arowet-home__title .arowet-home__title-line.motion-in,
body.has-site-motion.arowet-home-shell .arowet-home__title .arowet-home__title-line.is-visible {
  opacity: 1;
  transform: none;
}

body.arowet-home-shell .arowet-home__logo-marquee {
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

body.arowet-home-shell .arowet-home__logo-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: none;
}

body.arowet-home-shell .arowet-home__logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: none;
  padding: 16px 10px 16px 16px;
  width: auto;
  min-width: max-content;
}

body.arowet-home-shell .arowet-home__logo-pill {
  flex: none;
  white-space: nowrap;
}

body.arowet-home-shell .arowet-home__button,
body.arowet-home-shell .arowet-home__work-arrow,
body.arowet-home-shell .arowet-home__service-card,
body.arowet-home-shell .arowet-home__benefit-card,
body.arowet-home-shell .arowet-home__process-card,
body.arowet-home-shell .arowet-home__metric,
body.arowet-home-shell .arowet-home__work-card,
body.arowet-home-shell .arowet-home__visual-card,
body.arowet-home-shell .arowet-home__accordion .accordion-item {
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.45s ease,
    border-color 0.3s ease,
    background-color 0.3s ease;
}

body.arowet-home-shell .arowet-home__button i,
body.arowet-home-shell .arowet-home__work-arrow i,
body.arowet-home-shell .arowet-home__service-media img,
body.arowet-home-shell .arowet-home__visual-card img {
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

body.arowet-home-shell .arowet-home__service-media img,
body.arowet-home-shell .arowet-home__visual-card img,
body.arowet-home-shell .arowet-home__work-media img {
  will-change: transform;
}

body.arowet-home-shell .arowet-home__button:hover,
body.arowet-home-shell .arowet-home__work-arrow:hover,
body.arowet-home-shell .arowet-home__service-card:hover,
body.arowet-home-shell .arowet-home__benefit-card:hover,
body.arowet-home-shell .arowet-home__process-card:hover,
body.arowet-home-shell .arowet-home__metric:hover,
body.arowet-home-shell .arowet-home__work-card:hover,
body.arowet-home-shell .arowet-home__visual-card:hover {
  transform: translateY(-6px);
}

body.arowet-home-shell .arowet-home__button:hover {
  box-shadow: 0 18px 36px rgba(17, 17, 17, 0.12);
}

body.arowet-home-shell .arowet-home__button:hover i,
body.arowet-home-shell .arowet-home__work-arrow:hover i {
  transform: translateX(4px);
}

body.arowet-home-shell .arowet-home__service-card:hover,
body.arowet-home-shell .arowet-home__benefit-card:hover,
body.arowet-home-shell .arowet-home__process-card:hover,
body.arowet-home-shell .arowet-home__metric:hover,
body.arowet-home-shell .arowet-home__work-card:hover,
body.arowet-home-shell .arowet-home__visual-card:hover {
  border-color: rgba(17, 17, 17, 0.14);
  box-shadow: 0 22px 46px rgba(17, 17, 17, 0.1);
}

body.arowet-home-shell .arowet-home__service-card:hover .arowet-home__service-media img,
body.arowet-home-shell .arowet-home__visual-card:hover img,
body.arowet-home-shell .arowet-home__work-card:hover .arowet-home__work-media img {
  transform: scale(1.04);
}

body.arowet-home-shell .arowet-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 998;
}

body.arowet-home-shell .arowet-nav-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

@keyframes arowet-logo-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1199.98px) {
  body.arowet-home-shell .arowet-home__hero-grid,
  body.arowet-home-shell .arowet-home__process,
  body.arowet-home-shell .arowet-home__section-header--split,
  body.arowet-home-shell .arowet-home__service-card {
    grid-template-columns: 1fr;
  }

  body.arowet-home-shell .arowet-home__title {
    max-width: 12ch;
  }

  body.arowet-home-shell .arowet-home__logo-track {
    animation-duration: 30s;
  }
}

@media (max-width: 991.98px) {
  body.arowet-home-shell .arowet-home__section {
    padding: 76px 0;
  }

  body.arowet-home-shell .arowet-home__hero {
    padding-top: 28px;
  }

  body.arowet-home-shell .arowet-home__hero-grid {
    min-height: auto;
  }

  body.arowet-home-shell .arowet-home__metrics-row,
  body.arowet-home-shell .arowet-home__work-grid,
  body.arowet-home-shell .arowet-home__benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.arowet-home-shell .arowet-home__service-card--reverse .arowet-home__service-copy,
  body.arowet-home-shell .arowet-home__service-card--reverse .arowet-home__service-media {
    order: initial;
  }

  body.arowet-home-shell .arowet-home__logo-track {
    animation-duration: 34s;
  }

  /* body.arowet-home-shell .arowet-page-nav__menu {
    display: flex;
    width: 100%;
    margin-left: 0;
    padding: 0 0 18px;
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    transform: translateY(-12px);
    transform-origin: top center;
    transition:
      max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1),
      opacity 0.3s ease,
      transform 0.3s ease,
      visibility 0.3s ease;
  } */

  body.arowet-home-shell .arowet-page-nav.is-open .arowet-page-nav__menu,
  body.arowet-home-shell .arowet-page-nav__menu[data-open="true"] {
    max-height: 420px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }
}

@media (max-width: 767.98px) {
  body.arowet-home-shell .arowet-home__hero-grid {
    gap: 24px;
  }

  body.arowet-home-shell .arowet-home__hero-scene {
    opacity: 0.82;
  }

  body.arowet-home-shell .arowet-home__hero-scene::before {
    top: 6%;
    width: min(60vw, 520px);
    height: min(60vw, 520px);
  }

  body.arowet-home-shell .arowet-home__hero-scene::after {
    bottom: -20%;
    width: min(54vw, 420px);
    height: min(54vw, 420px);
  }

  body.arowet-home-shell .arowet-home__title {
    max-width: none;
    font-size: clamp(2.9rem, 14vw, 4.25rem);
  }

  body.arowet-home-shell .arowet-home__actions,
  body.arowet-home-shell .arowet-home__cta-actions {
    justify-content: flex-start;
  }

  body.arowet-home-shell .arowet-home__logo-row,
  body.arowet-home-shell .arowet-home__metrics-row,
  body.arowet-home-shell .arowet-home__work-grid,
  body.arowet-home-shell .arowet-home__benefit-grid {
    grid-template-columns: 1fr;
  }

  body.arowet-home-shell .arowet-home__logo-track {
    animation-duration: 38s;
  }

  body.arowet-home-shell .arowet-home__visual-card--tall,
  body.arowet-home-shell .arowet-home__visual-card--short,
  body.arowet-home-shell .arowet-home__service-media {
    min-height: 240px;
  }

  body.arowet-home-shell .arowet-home__statement {
    padding: 72px 0;
  }

  body.arowet-home-shell .arowet-home__logo-row {
    padding-right: 8px;
  }
}

@media (max-width: 575.98px) {
  body.arowet-home-shell .arowet-home__service-card,
  body.arowet-home-shell .arowet-home__cta,
  body.arowet-home-shell .arowet-home__benefit-card,
  body.arowet-home-shell .arowet-home__work-card {
    border-radius: 22px;
  }

  body.arowet-home-shell .arowet-home__button,
  body.arowet-home-shell .arowet-page-nav__link,
  body.arowet-home-shell .arowet-page-nav__cta {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.arowet-home-shell .arowet-home__hero-scene .arowet-home__three-canvas {
    opacity: 0 !important;
  }

  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  body.arowet-home-shell.has-site-motion.is-reduced-motion .arowet-home__logo-track {
    animation: none !important;
  }

  body.arowet-home-shell.has-site-motion.is-reduced-motion .arowet-home__title .arowet-home__title-line,
  body.arowet-home-shell.has-site-motion.is-reduced-motion .reveal-up,
  body.arowet-home-shell.has-site-motion.is-reduced-motion .reveal-left,
  body.arowet-home-shell.has-site-motion.is-reduced-motion .reveal-right,
  body.arowet-home-shell.has-site-motion.is-reduced-motion .reveal-scale,
  body.arowet-home-shell.has-site-motion.is-reduced-motion .stagger-child,
  body.arowet-home-shell.has-site-motion.is-reduced-motion .arowet-reveal {
    animation: none !important;
    opacity: 0;
    transform: none !important;
    transition-duration: 0.35s !important;
    transition-timing-function: ease !important;
  }

  body.arowet-home-shell.has-site-motion.is-reduced-motion .motion-in,
  body.arowet-home-shell.has-site-motion.is-reduced-motion .is-visible,
  body.arowet-home-shell.has-site-motion.is-reduced-motion .in {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ======================== AROWET DASHBOARD LIGHT SHELL ======================== */
body.arowet-dashboard-shell {
  background:
    radial-gradient(circle at top left, rgba(17, 17, 17, 0.06), transparent 32%),
    radial-gradient(circle at bottom right, rgba(17, 17, 17, 0.04), transparent 28%),
    linear-gradient(180deg, #f4f4f2 0%, #ecebe7 100%);
}

body.arowet-dashboard-shell .dashboard-main {
  width: 100%;
}

body.arowet-dashboard-shell .dash-shell {
  width: min(100%, 1600px);
  min-height: 100vh;
  margin: 0 auto;
  gap: 24px;
  padding: 24px;
  align-items: stretch;
}

body.arowet-dashboard-shell .dash-side {
  width: 100%;
  max-width: 320px;
  flex: 0 0 320px;
  position: sticky;
  top: 24px;
  align-self: flex-start;
  border-right: 0;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.06);
  backdrop-filter: blur(16px);
}

body.arowet-dashboard-shell .dashboard-profile-card {
  background: rgba(255, 255, 255, 0.78) !important;
  border-color: rgba(17, 17, 17, 0.08) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

body.arowet-dashboard-shell .dashboard-avatar {
  width: 54px;
  height: 54px;
  object-fit: cover;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.08);
}

body.arowet-dashboard-shell .logo-i {
  background: #111111;
  color: #f4f4f2;
  box-shadow: 0 10px 24px rgba(17, 17, 17, 0.16);
}

body.arowet-dashboard-shell .dash-nav {
  gap: 8px;
  grid-template-columns: 1fr;
}

body.arowet-dashboard-shell .dash-nav a {
  border-radius: 14px;
  color: #4f4f4f;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 0.95rem;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(17, 17, 17, 0.06);
}

body.arowet-dashboard-shell .dash-nav a i {
  width: 18px;
  text-align: center;
  color: #6a6a6a;
}



body.arowet-dashboard-shell .dash-nav a.active,
body.arowet-dashboard-shell .dash-nav a:hover {
  background: rgba(17, 17, 17, 0.06);
  color: #111111;
  transform: translateX(2px);
}

body.arowet-dashboard-shell .dash-nav a.active i,
body.arowet-dashboard-shell .dash-nav a:hover i {
  color: #111111;
}

body.arowet-dashboard-shell .dashboard-content {
  min-width: 0;
  padding-bottom: 12px;
}

body.arowet-dashboard-shell .dashboard-section-head {
  padding: 4px 2px 0;
}

body.arowet-dashboard-shell .dashboard-actions {
  align-items: flex-start;
}

body.arowet-dashboard-shell .dashboard-search {
  min-width: 260px;
}

body.arowet-dashboard-shell .slbl {
  color: #111111;
}

body.arowet-dashboard-shell .slbl::before {
  background: linear-gradient(90deg, #111111, #5a5a5a);
}

body.arowet-dashboard-shell .metric-card,
body.arowet-dashboard-shell .panel-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(17, 17, 17, 0.08);
  color: #111111;
  border-radius: 24px;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.05);
  backdrop-filter: blur(14px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

body.arowet-dashboard-shell .metric-card:hover,
body.arowet-dashboard-shell .panel-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(17, 17, 17, 0.08);
  border-color: rgba(17, 17, 17, 0.12);
}

body.arowet-dashboard-shell .panel-card .form-control,
body.arowet-dashboard-shell .panel-card .form-select,
body.arowet-dashboard-shell .panel-card textarea {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(17, 17, 17, 0.12);
  color: #111111;
  box-shadow: none;
}

body.arowet-dashboard-shell .panel-card .form-control::placeholder,
body.arowet-dashboard-shell .panel-card textarea::placeholder {
  color: #6a6a6a;
}

body.arowet-dashboard-shell .panel-card .form-control:focus,
body.arowet-dashboard-shell .panel-card .form-select:focus,
body.arowet-dashboard-shell .panel-card textarea:focus {
  border-color: rgba(17, 17, 17, 0.22);
  box-shadow: 0 0 0 0.2rem rgba(17, 17, 17, 0.08);
}

body.arowet-dashboard-shell .panel-card .form-label,
body.arowet-dashboard-shell .metric-card .small,
body.arowet-dashboard-shell .panel-card .small {
  color: #5a5a5a;
}

body.arowet-dashboard-shell .form-check-input:checked {
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  border-color: #8b5cf6;
}

body.arowet-dashboard-shell .form-check-input:focus {
  border-color: rgba(139, 92, 246, 0.34);
  box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.12);
}

body.arowet-dashboard-shell .btn-primary {
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  border-color: transparent;
  color: #f4f4f2;
  box-shadow: 0 14px 32px rgba(59, 130, 246, 0.18);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

body.arowet-dashboard-shell .btn-primary:hover,
body.arowet-dashboard-shell .btn-primary:focus {
  background: linear-gradient(135deg, #8b5cf6, #3b82f6);
  border-color: transparent;
  color: #f4f4f2;
  transform: translateY(-1px);
}

body.arowet-dashboard-shell .btn-outline-light {
  background: rgba(255, 255, 255, 0.76);
  color: #111111;
  border-color: rgba(17, 17, 17, 0.14);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

body.arowet-dashboard-shell .btn-outline-light:hover,
body.arowet-dashboard-shell .btn-outline-light:focus {
  background: rgba(255, 255, 255, 0.94);
  color: #111111;
  border-color: rgba(17, 17, 17, 0.22);
  transform: translateY(-1px);
}

body.arowet-dashboard-shell .btn-outline-danger {
  background: rgba(255, 255, 255, 0.72);
  color: #b42318;
  border-color: rgba(180, 35, 24, 0.18);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

body.arowet-dashboard-shell .btn-outline-danger:hover,
body.arowet-dashboard-shell .btn-outline-danger:focus {
  background: rgba(180, 35, 24, 0.08);
  color: #9f1d15;
  border-color: rgba(180, 35, 24, 0.28);
  transform: translateY(-1px);
}

body.arowet-dashboard-shell .text-light {
  color: #111111 !important;
}

body.arowet-dashboard-shell .text-secondary {
  color: #5a5a5a !important;
}

body.arowet-dashboard-shell .badge.text-bg-secondary {
  background: rgba(17, 17, 17, 0.08) !important;
  color: #111111 !important;
}

body.arowet-dashboard-shell .table-darkish {
  color: #111111;
}

body.arowet-dashboard-shell .table-darkish thead th,
body.arowet-dashboard-shell .table-darkish td {
  border-color: rgba(17, 17, 17, 0.08) !important;
}

body.arowet-dashboard-shell .table-darkish thead th {
  color: #6a6a6a;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

body.arowet-dashboard-shell .table-darkish tbody tr:hover {
  background: rgba(17, 17, 17, 0.03);
}

body.arowet-dashboard-shell .link-draggable {
  cursor: grab;
}

body.arowet-dashboard-shell .link-draggable.dragging {
  opacity: 0.72;
  transform: scale(0.99);
}

body.arowet-dashboard-shell .dashboard-chart-shell {
  height: 320px;
  position: relative;
}

body.arowet-dashboard-shell .dashboard-chart-shell canvas {
  width: 100% !important;
  height: 100% !important;
}

body.arowet-dashboard-shell .dashboard-activity-list {
  max-height: 320px;
  overflow: auto;
  padding-right: 4px;
}

body.arowet-dashboard-shell .dashboard-feed-item,
body.arowet-dashboard-shell .dashboard-login-item {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

body.arowet-dashboard-shell .dashboard-feed-kind {
  white-space: nowrap;
}

body.arowet-dashboard-shell .dashboard-qr-preview {
  background: #ffffff;
  padding: 0.75rem;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

body.arowet-dashboard-shell .dashboard-image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}

body.arowet-dashboard-shell .dashboard-image-card {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 16px 38px rgba(17, 17, 17, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

body.arowet-dashboard-shell .dashboard-image-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(17, 17, 17, 0.08);
  border-color: rgba(17, 17, 17, 0.12);
}

body.arowet-dashboard-shell .dashboard-image-preview {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.04), rgba(17, 17, 17, 0.08));
}

body.arowet-dashboard-shell .dashboard-image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.arowet-dashboard-shell .dashboard-image-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 17, 17, 0.12);
  color: #111111;
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(12px);
}

body.arowet-dashboard-shell .dashboard-image-badge.is-public {
  background: rgba(16, 185, 129, 0.16);
  border-color: rgba(16, 185, 129, 0.24);
  color: #0f6b47;
}

body.arowet-dashboard-shell .dashboard-image-badge.is-private {
  background: rgba(17, 17, 17, 0.08);
  border-color: rgba(17, 17, 17, 0.1);
  color: #111111;
}

body.arowet-dashboard-shell .dashboard-image-meta {
  padding: 1rem;
}

body.arowet-dashboard-shell .dashboard-edit-card {
  padding: 1.25rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

body.arowet-dashboard-shell .dashboard-media-preview {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  background: linear-gradient(135deg, rgba(17, 17, 17, 0.04), rgba(17, 17, 17, 0.08));
}

body.arowet-dashboard-shell .dashboard-media-preview--portrait {
  aspect-ratio: 1 / 1;
}

body.arowet-dashboard-shell .dashboard-media-preview--banner {
  aspect-ratio: 16 / 9;
}

body.arowet-dashboard-shell .dashboard-media-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

body.arowet-dashboard-shell .dashboard-swatch-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

body.arowet-dashboard-shell .dashboard-swatch {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  box-shadow: 0 6px 14px rgba(17, 17, 17, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, outline-color 0.2s ease;
}

body.arowet-dashboard-shell .dashboard-swatch:hover {
  transform: translateY(-1px);
}

body.arowet-dashboard-shell .dashboard-swatch.is-active {
  outline: 2px solid #111111;
  outline-offset: 2px;
}

body.arowet-dashboard-shell .is-swatch-light {
  background: #f4f4f2;
}

body.arowet-dashboard-shell .is-swatch-stone {
  background: #f8fafc;
}

body.arowet-dashboard-shell .is-swatch-blue {
  background: #eef2ff;
}

body.arowet-dashboard-shell .is-swatch-gold {
  background: #fef3c7;
}

body.arowet-dashboard-shell .is-swatch-mint {
  background: #ecfdf5;
}

body.arowet-dashboard-shell .is-swatch-dark {
  background: #111111;
}

body.arowet-dashboard-shell .is-swatch-navy {
  background: #1d4ed8;
}

body.arowet-dashboard-shell .is-swatch-teal {
  background: #0f766e;
}

body.arowet-dashboard-shell .is-swatch-amber {
  background: #b45309;
}

body.arowet-dashboard-shell .is-swatch-rose {
  background: #be185d;
}

body.arowet-dashboard-shell .dashboard-link-media {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}

body.arowet-dashboard-shell .dashboard-link-favicon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(17, 17, 17, 0.04);
  border: 1px solid rgba(17, 17, 17, 0.08);
}

body.arowet-dashboard-shell .dashboard-link-favicon--icon {
  color: #111111;
  font-size: 1.02rem;
}

body.arowet-dashboard-shell .dashboard-verification-banner {
  background: linear-gradient(135deg, rgba(255, 249, 196, 0.92), rgba(255, 255, 255, 0.84));
  border-color: rgba(17, 17, 17, 0.08);
}

body.arowet-dashboard-shell .dashboard-details-summary {
  cursor: pointer;
  color: #111111;
  font-weight: 600;
  list-style: none;
}

body.arowet-dashboard-shell .dashboard-details-summary::-webkit-details-marker {
  display: none;
}

@media (max-width: 1199.98px) {
  body.arowet-dashboard-shell .dash-shell {
    padding: 18px;
  }
}

@media (max-width: 991.98px) {
  body.arowet-dashboard-shell .dash-shell {
    flex-direction: column;
  }

  body.arowet-dashboard-shell .dash-side {
    max-width: none;
    flex-basis: auto;
    position: static;
  }

  body.arowet-dashboard-shell .dash-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  body.arowet-dashboard-shell .dash-shell {
    padding: 14px;
    gap: 16px;
  }

  body.arowet-dashboard-shell .dashboard-actions {
    width: 100%;
  }

  body.arowet-dashboard-shell .dashboard-actions .btn {
    width: 100%;
  }

  body.arowet-dashboard-shell .metric-card,
  body.arowet-dashboard-shell .panel-card,
  body.arowet-dashboard-shell .dashboard-feed-item,
  body.arowet-dashboard-shell .dashboard-login-item {
    border-radius: 22px;
  }

  body.arowet-dashboard-shell .dashboard-chart-shell,
  body.arowet-dashboard-shell .dashboard-activity-list {
    max-height: none;
  }

  body.arowet-dashboard-shell .dashboard-image-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  body.arowet-dashboard-shell .dash-nav {
    grid-template-columns: 1fr;
  }

  body.arowet-dashboard-shell .dashboard-profile-card,
  body.arowet-dashboard-shell .dashboard-feed-item,
  body.arowet-dashboard-shell .dashboard-login-item {
    border-radius: 18px;
  }

  body.arowet-dashboard-shell .dashboard-section-head .slbl,
  body.arowet-dashboard-shell .dashboard-section-head h1,
  body.arowet-dashboard-shell .dashboard-section-head p {
    width: 100%;
  }
}

body.arowet-static-shell.auth-page--split,
body.arowet-static-shell.auth-page--setup {
  background:
    radial-gradient(circle at top left, rgba(255, 150, 75, 0.22), transparent 26%),
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.18), transparent 28%),
    linear-gradient(180deg, #fffaf4 0%, #f7f2ea 100%);
  color: #181411;
}

body.arowet-static-shell.auth-page--split .page-shell,
body.arowet-static-shell.auth-page--setup .page-shell {
  max-width: none;
}

.arowet-auth-main {
  min-height: 100vh;
  padding: 24px;
}

.arowet-auth-shell {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 1fr);
  min-height: calc(100vh - 48px);
  border: 1px solid rgba(24, 20, 17, 0.08);
  border-radius: 36px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 28px 80px rgba(85, 58, 34, 0.16);
  backdrop-filter: blur(18px);
}

.arowet-auth-panel {
  padding: 40px 38px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 247, 239, 0.92) 100%);
}

.arowet-auth-brand,
.arowet-setup-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.arowet-auth-brand__logo {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #111111;
  text-decoration: none;
}

.arowet-auth-brand__link,
.arowet-auth-inline-link {
  color: #7c3aed;
  font-weight: 600;
  text-decoration: none;
}

.arowet-auth-brand__link:hover,
.arowet-auth-inline-link:hover {
  color: #5b21b6;
}

.arowet-auth-copy h1,
.arowet-setup-step__header h1 {
  margin: 14px 0 12px;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: #111111;
}

.arowet-auth-copy p,
.arowet-setup-step__header p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
  color: #5f564f;
}

.arowet-auth-form,
.arowet-setup-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.arowet-auth-progress__meta,
.arowet-setup-progress__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  font-size: 0.88rem;
  color: #6f665f;
}

.arowet-auth-progress__track,
.arowet-setup-progress__track {
  position: relative;
  width: 100%;
  height: 7px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.1);
  overflow: hidden;
}

.arowet-auth-progress__bar,
.arowet-setup-progress__bar {
  display: block;
  width: 50%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff8a00 0%, #7c3aed 100%);
  transition: width 0.25s ease;
}

.arowet-auth-step-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.arowet-auth-chip {
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.7);
  color: #6a5f58;
  font-weight: 600;
}

.arowet-auth-chip.is-active {
  border-color: rgba(124, 58, 237, 0.2);
  background: rgba(124, 58, 237, 0.08);
  color: #6d28d9;
}

.arowet-auth-step,
.arowet-setup-step {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.arowet-auth-step[hidden],
.arowet-setup-step[hidden] {
  display: none !important;
}

.arowet-auth-fields {
  display: grid;
  gap: 18px;
}

.arowet-auth-fields--split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.arowet-auth-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.arowet-auth-prefix-field {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  overflow: hidden;
}

.arowet-auth-prefix-field span {
  padding: 0 16px;
  font-weight: 600;
  color: #756a62;
  white-space: nowrap;
}

.arowet-auth-prefix-field .form-control {
  border: 0;
  box-shadow: none !important;
  border-radius: 0;
}

.arowet-auth-helper {
  margin: 8px 0 0;
  font-size: 0.85rem;
  color: #7b7069;
}

.arowet-auth-toggles {
  display: grid;
  gap: 14px;
}

.arowet-auth-toggle {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.arowet-auth-toggle input {
  margin-top: 4px;
}

.arowet-auth-toggle span {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.arowet-auth-toggle strong {
  color: #17120f;
}

.arowet-auth-toggle small {
  color: #6f665f;
  line-height: 1.6;
}

.arowet-auth-toggle a,
.arowet-auth-footnote a {
  color: #6d28d9;
}

.arowet-auth-inline-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 15px 18px;
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  color: #5f564f;
  line-height: 1.6;
}

.arowet-auth-inline-note i {
  color: #f97316;
  margin-top: 3px;
}

.arowet-auth-form-actions,
.arowet-setup-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.arowet-auth-form-actions--single {
  justify-content: stretch;
}

.arowet-auth-form-actions .btn,
.arowet-setup-actions .btn,
.arowet-auth-form-actions--single .btn {
  min-height: 56px;
  border-radius: 18px;
  padding: 0 24px;
  font-weight: 700;
}

.arowet-auth-form-actions .btn:last-child,
.arowet-setup-actions .btn:last-child,
.arowet-auth-form-actions--single .btn {
  margin-left: auto;
}

.arowet-auth-footnote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #665d56;
}

.arowet-auth-visual {
  position: relative;
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.38), transparent 22%),
    linear-gradient(135deg, #f0a23b 0%, #ea580c 24%, #8b5cf6 58%, #2563eb 100%);
  color: #ffffff;
}

.arowet-auth-visual::before,
.arowet-auth-visual::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(6px);
  opacity: 0.35;
}

.arowet-auth-visual::before {
  width: 240px;
  height: 240px;
  top: -40px;
  right: -30px;
  background: rgba(255, 255, 255, 0.32);
}

.arowet-auth-visual::after {
  width: 180px;
  height: 180px;
  left: -40px;
  bottom: 20px;
  background: rgba(255, 237, 213, 0.3);
}

.arowet-auth-visual__badge {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(16px);
  font-weight: 600;
}

.arowet-auth-visual__stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.arowet-auth-card,
.arowet-auth-preview {
  border-radius: 30px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(20px);
}

.arowet-auth-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.arowet-auth-card__avatar {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.9);
  color: #111111;
  font-weight: 800;
  flex-shrink: 0;
}

.arowet-auth-card h2 {
  margin: 0 0 8px;
  font-size: 1.55rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.arowet-auth-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
}

.arowet-auth-card--secondary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.arowet-auth-mini-stat {
  padding: 18px;
  border-radius: 22px;
  background: rgba(18, 18, 18, 0.2);
}

.arowet-auth-mini-stat strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
}

.arowet-auth-mini-stat span {
  display: block;
  margin-top: 8px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
}

.arowet-auth-preview {
  display: grid;
  gap: 18px;
}

.arowet-auth-preview__top {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.arowet-auth-preview__pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.85rem;
  font-weight: 700;
}

.arowet-auth-preview__pill--soft {
  background: rgba(255, 255, 255, 0.18);
}

.arowet-auth-preview__profile {
  display: flex;
  gap: 14px;
  align-items: center;
}

.arowet-auth-preview__portrait {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: linear-gradient(135deg, #fde68a 0%, #f97316 50%, #7c3aed 100%);
}

.arowet-auth-preview__profile strong,
.arowet-auth-activity strong {
  display: block;
}

.arowet-auth-preview__profile small,
.arowet-auth-activity small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.arowet-auth-preview__links {
  display: grid;
  gap: 10px;
}

.arowet-auth-preview__links span {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.84);
  color: #111111;
  font-weight: 600;
}

.arowet-auth-activity {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  border-radius: 22px;
  background: rgba(17, 17, 17, 0.22);
}

.arowet-auth-activity__dot {
  width: 12px;
  height: 12px;
  margin-top: 6px;
  border-radius: 50%;
  background: #fb923c;
  box-shadow: 0 0 0 6px rgba(251, 146, 60, 0.16);
  flex-shrink: 0;
}

.arowet-auth-activity__dot--blue {
  background: #60a5fa;
  box-shadow: 0 0 0 6px rgba(96, 165, 250, 0.16);
}

.arowet-auth-preview--dark {
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.6) 0%, rgba(47, 23, 77, 0.46) 100%);
}

.arowet-auth-preview__bars {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 12px;
  min-height: 160px;
}

.arowet-auth-preview__bars span {
  display: block;
  border-radius: 999px;
  background: linear-gradient(180deg, #fb923c 0%, #7c3aed 100%);
}

.arowet-setup-main {
  max-width: 1220px;
  margin: 0 auto;
}

.arowet-setup-shell {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.arowet-setup-topbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.arowet-setup-banner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(34, 197, 94, 0.18);
  color: #166534;
}

.arowet-setup-alert {
  border-radius: 22px;
  border: 1px solid rgba(220, 38, 38, 0.14);
}

.arowet-setup-form {
  padding: 28px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 22px 60px rgba(75, 50, 28, 0.12);
}

.arowet-setup-step__header {
  max-width: 760px;
}

.arowet-setup-choice-grid,
.arowet-theme-grid,
.arowet-platform-grid {
  display: grid;
  gap: 18px;
}

.arowet-setup-choice-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.arowet-setup-choice-card,
.arowet-theme-card {
  padding: 24px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  text-align: left;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.arowet-setup-choice-card:hover,
.arowet-theme-card:hover,
.arowet-platform-card:hover {
  transform: translateY(-2px);
}

.arowet-setup-choice-card.is-active,
.arowet-theme-card.is-active,
.arowet-platform-card.is-active {
  border-color: rgba(124, 58, 237, 0.24);
  box-shadow: 0 16px 34px rgba(124, 58, 237, 0.12);
}

.arowet-setup-choice-card__icon {
  width: 68px;
  height: 68px;
  margin-bottom: 18px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  background: var(--card-accent);
  color: #ffffff;
  font-size: 1.35rem;
}

.arowet-setup-choice-card strong,
.arowet-theme-card strong,
.arowet-platform-card strong {
  display: block;
  color: #111111;
  font-size: 1.08rem;
}

.arowet-setup-choice-card small,
.arowet-theme-card small {
  display: block;
  margin-top: 10px;
  color: #6b625b;
  line-height: 1.7;
}

.arowet-theme-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.arowet-theme-card__preview {
  display: block;
  position: relative;
  min-height: 250px;
  margin-bottom: 16px;
  border-radius: 24px;
  overflow: hidden;
}

.arowet-theme-card__avatar,
.arowet-theme-card__line,
.arowet-theme-card__button {
  position: absolute;
  left: 22px;
  right: 22px;
  display: block;
}

.arowet-theme-card__avatar {
  width: 62px;
  height: 62px;
  left: 22px;
  top: 28px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
}

.arowet-theme-card__line {
  top: 110px;
  height: 12px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.18);
}

.arowet-theme-card__line--small {
  top: 132px;
  right: 74px;
  height: 10px;
  background: rgba(17, 17, 17, 0.12);
}

.arowet-theme-card__button {
  height: 38px;
  bottom: 68px;
  border-radius: 14px;
}

.arowet-theme-card__button:last-child {
  bottom: 20px;
}

.arowet-setup-platforms__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #6f665f;
}

.arowet-platform-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.arowet-platform-card {
  position: relative;
  padding: 20px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
}

.arowet-platform-card.is-disabled {
  opacity: 0.48;
}

.arowet-platform-card input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.arowet-platform-card__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: var(--platform-accent);
  color: #ffffff;
  font-size: 1.25rem;
}

.arowet-setup-link-fields {
  display: grid;
  gap: 16px;
}

.arowet-setup-link-field,
.arowet-setup-extra-links__row,
.arowet-upload-meta {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.arowet-setup-link-field {
  display: none;
  padding: 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.74);
}

.arowet-setup-link-field.is-visible {
  display: flex;
}

.arowet-setup-link-field__icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 1.22rem;
  flex-shrink: 0;
}

.arowet-setup-link-field__body {
  flex: 1;
}

.arowet-setup-empty {
  padding: 18px 20px;
  border: 1px dashed rgba(17, 17, 17, 0.16);
  border-radius: 24px;
  color: #72675f;
  background: rgba(255, 255, 255, 0.52);
}

.arowet-setup-empty.is-hidden {
  display: none;
}

.arowet-setup-extra-links {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.68);
}

.arowet-setup-extra-links__header h2,
.arowet-upload-card__header h2 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  color: #111111;
}

.arowet-setup-extra-links__header p,
.arowet-upload-card__header p {
  margin: 0;
  color: #6c625b;
}

.arowet-setup-extra-links__row span {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(17, 17, 17, 0.06);
  color: #111111;
  flex-shrink: 0;
}

.arowet-setup-profile-grid {
  display: grid;
  grid-template-columns: minmax(0, 360px) minmax(0, 1fr);
  gap: 24px;
}

.arowet-upload-card,
.arowet-setup-profile-fields {
  display: grid;
  gap: 18px;
  padding: 22px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
}

.arowet-upload-dropzone {
  position: relative;
  display: grid;
  gap: 18px;
  justify-items: center;
  padding: 24px;
  border: 1px dashed rgba(17, 17, 17, 0.16);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(248, 241, 232, 0.78) 100%);
  text-align: center;
  cursor: pointer;
}

.arowet-upload-dropzone.is-dragover {
  border-color: rgba(124, 58, 237, 0.36);
  background: rgba(124, 58, 237, 0.06);
}

.arowet-upload-dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.arowet-upload-dropzone__preview {
  position: relative;
  width: 124px;
  height: 124px;
  border-radius: 34px;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #f7d8b8 0%, #e5d4ff 100%);
}

.arowet-upload-dropzone__preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.arowet-upload-dropzone__initials {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 800;
  color: rgba(17, 17, 17, 0.66);
}

.arowet-upload-dropzone__copy strong,
.arowet-upload-meta strong {
  display: block;
  color: #111111;
}

.arowet-upload-dropzone__copy small,
.arowet-upload-meta small {
  display: block;
  margin-top: 6px;
  color: #70665f;
}

.arowet-upload-meta {
  align-items: center;
  justify-content: space-between;
}

.arowet-upload-meta > div {
  min-width: 0;
}

.arowet-setup-actions {
  margin-top: 8px;
}

.arowet-setup-actions .btn:last-child {
  min-width: 220px;
}

@media (max-width: 1199.98px) {
  .arowet-theme-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 991.98px) {
  .arowet-auth-shell {
    grid-template-columns: 1fr;
  }

  .arowet-auth-visual {
    min-height: 420px;
  }

  .arowet-setup-choice-grid,
  .arowet-setup-profile-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px) {
  .arowet-auth-main {
    padding: 16px;
  }

  .arowet-auth-panel,
  .arowet-auth-visual,
  .arowet-setup-form {
    padding: 24px 20px;
  }

  .arowet-auth-fields--split,
  .arowet-auth-card--secondary,
  .arowet-theme-grid,
  .arowet-platform-grid {
    grid-template-columns: 1fr;
  }

  .arowet-auth-form-actions,
  .arowet-setup-actions,
  .arowet-auth-row,
  .arowet-upload-meta,
  .arowet-setup-topbar {
    flex-direction: column;
    align-items: stretch;
  }

  .arowet-auth-form-actions .btn:last-child,
  .arowet-setup-actions .btn:last-child {
    margin-left: 0;
    width: 100%;
  }

  .arowet-setup-link-field,
  .arowet-setup-extra-links__row {
    flex-direction: column;
  }

  .arowet-setup-link-field__icon,
  .arowet-setup-extra-links__row span {
    width: 54px;
    height: 54px;
  }
}

body.superadmin-login-page {
  background:
    radial-gradient(circle at top left, rgba(66, 153, 225, 0.18), transparent 36%),
    radial-gradient(circle at bottom right, rgba(17, 24, 39, 0.14), transparent 32%),
    linear-gradient(180deg, #f7fafc 0%, #edf2f7 100%);
}

.superadmin-auth-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
}

.superadmin-auth-card {
  width: min(100%, 560px);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(20px);
  padding: 32px;
}

.superadmin-auth-card__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.06);
  color: #111827;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.superadmin-auth-card__title {
  margin-top: 1rem;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #111827;
}

.superadmin-auth-card__lead {
  margin-top: 0.75rem;
  color: #4b5563;
  line-height: 1.7;
}

.superadmin-auth-card .form-control,
.superadmin-auth-card .form-select {
  border-radius: 16px;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.superadmin-auth-card .btn {
  border-radius: 16px;
}

.superadmin-chart-list {
  display: grid;
  gap: 0.85rem;
}

.superadmin-chart-row {
  display: grid;
  gap: 0.45rem;
}

.superadmin-chart-row__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.92rem;
}

.superadmin-chart-row__meta span {
  color: #4b5563;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.superadmin-chart-row__meta strong {
  color: #111827;
  font-variant-numeric: tabular-nums;
}

.superadmin-chart-row__track {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(17, 24, 39, 0.08);
}

.superadmin-chart-row__fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #111827 0%, #3b82f6 100%);
}

.superadmin-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.superadmin-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  background: rgba(17, 24, 39, 0.06);
  color: #111827;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.superadmin-kpi {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.superadmin-kpi__value {
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #111827;
  font-weight: 800;
}

.superadmin-kpi__label {
  color: #6b7280;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 767.98px) {
  .superadmin-auth-card {
    padding: 24px;
    border-radius: 22px;
  }

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