/* Netability Singapore — Master Stylesheet */
/* HERO RECOLOURED: midnight navy (was purple). Buttons unchanged (#5527DE). */


*{margin:0;padding:0;box-sizing:border-box}
:root{
  /* ── Netability brand colours ── */
  --brand:#5527DE;          /* deep indigo — logo outline / primary action */
  --brand2:#451FB6;         /* darker indigo — hover */
  --brand3:#7752E4;         /* mid indigo — links, accents */
  --brand-dim:rgba(85, 39, 222,0.08);
  --brand-dim2:rgba(85, 39, 222,0.15);

  /* sky-to-violet gradient — from SFONDO_06 */
  --grad-start:#A8D8F0;     /* sky blue */
  --grad-mid:#C5B8F2;       /* lavender */
  --grad-end:#7B6FE8;       /* violet */

  /* neutrals */
  --bg:#F5F5F7;           /* Apple-style off-white */
  --bg2:#EDEDF2;            /* light grey surface */
  --bg3:#E6E7EF;            /* slightly deeper grey tint */
  --text:#0A0A14;           /* near-black */
  --text2:#3D4055;          /* dark slate */
  --slate:#6B7190;
  --border:#E2E4EE;
  --border2:#C8CCDE;

  /* solution accent colours — all built around the brand palette */
  --c1:#5527DE; --c1d:rgba(85, 39, 222,0.09);   /* Microsoft — brand indigo */
  --c2:#5527DE; --c2d:rgba(85, 39, 222,0.09);   /* MAS — deep blue */
  --c3:#5527DE; --c3d:rgba(85, 39, 222,0.09);  /* Voice — purple */
  --c4:#5527DE; --c4d:rgba(85, 39, 222,0.09);  /* Nagios — sky blue */
  --c5:#5527DE; --c5d:rgba(85, 39, 222,0.09);   /* Cyber — red */
}
html{scroll-behavior:smooth}
body{font-family:'DM Sans',sans-serif;background:var(--bg);color:var(--text);overflow-x:hidden;line-height:1.6}

/* ── NAV ── */
nav{position:fixed;top:0;left:0;right:0;z-index:200;background:rgba(255,255,255,0.97);border-bottom:1px solid var(--border);backdrop-filter:blur(10px)}
.nav-inner{max-width:1200px;margin:0 auto;padding:0 2rem;display:flex;align-items:center;justify-content:space-between;height:68px;gap:1rem}
.nav-logo{cursor:pointer;display:flex;align-items:center;flex-shrink:0}
.nav-logo img{height:34px;width:auto}
.nav-links{display:flex;align-items:center;gap:0.3rem;flex-wrap:nowrap;margin-left:auto}
.nav-link{font-size:0.92rem;font-weight:700;text-decoration:none;padding:0.42rem 0.7rem;border-radius:6px;cursor:pointer;color:var(--text2);transition:all 0.15s;white-space:nowrap}
.nav-link:hover{background:var(--bg2);color:var(--brand)}
.nav-link.active{color:var(--brand);background:var(--brand-dim);font-weight:600}
.nav-cta{background:var(--brand);color:#fff;font-size:0.8rem;font-weight:600;padding:0.5rem 1.1rem;border-radius:7px;cursor:pointer;transition:background 0.2s;white-space:nowrap;border:none;font-family:'DM Sans',sans-serif;flex-shrink:0;margin-left:1rem}
.nav-cta:hover{background:var(--brand2)}
.hamburger{display:none;flex-direction:column;gap:4px;cursor:pointer;padding:4px}
.hamburger span{display:block;width:20px;height:2px;background:var(--text);border-radius:2px}

/* ── PAGES ── */
.page{display:none;min-height:100vh;padding-top:68px}
.page.active{display:block}


/* ══════════════════════════════════════════
   HERO — MIDNIGHT NAVY GRADIENT
══════════════════════════════════════════ */
.hero{
  position:relative;overflow:hidden;
  padding:5.5rem 2rem 5rem;
  background:#0A1733;  /* midnight navy base */
  /* layered radial gradient giving depth */
  background:
    radial-gradient(ellipse 80% 60% at 72% 28%, rgba(41,88,190,0.42) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 18% 82%, rgba(30,60,150,0.35) 0%, transparent 55%),
    radial-gradient(ellipse 100% 100% at 50% 50%, #0A1733 30%, #050B1E 100%);
}
.hero-blob{position:absolute;border-radius:50%;filter:blur(72px);pointer-events:none;animation:blob-float 8s ease-in-out infinite}
.hero-blob1{width:600px;height:500px;top:-100px;right:-80px;background:radial-gradient(circle,rgba(41,88,190,0.5),rgba(30,60,150,0.25) 50%,transparent 70%);animation-delay:0s}
.hero-blob2{width:450px;height:400px;bottom:-80px;left:-60px;background:radial-gradient(circle,rgba(37,80,180,0.4),rgba(60,110,210,0.2) 50%,transparent 70%);animation-delay:-3s}
.hero-blob3{width:350px;height:300px;top:40%;left:35%;background:radial-gradient(circle,rgba(120,160,230,0.15),transparent 65%);animation-delay:-5s}
@keyframes blob-float{
  0%,100%{transform:translate(0,0) scale(1)}
  33%{transform:translate(18px,-22px) scale(1.04)}
  66%{transform:translate(-12px,14px) scale(0.97)}
}
/* subtle noise texture overlay */
.hero-noise{position:absolute;inset:0;opacity:0.03;background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");pointer-events:none}

.hero-inner{max-width:1200px;margin:0 auto;padding:0 2rem;display:grid;grid-template-columns:1fr 400px;gap:4rem;align-items:center;position:relative;z-index:1}
.hero-eyebrow{display:inline-flex;align-items:center;gap:8px;background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.18);border-radius:100px;padding:0.3rem 0.9rem;font-size:0.73rem;font-weight:600;color:rgba(255,255,255,0.8);text-transform:uppercase;letter-spacing:0.08em;margin-bottom:1.4rem;backdrop-filter:blur(4px)}
.hero-eyebrow-dot{width:6px;height:6px;border-radius:50%;background:#5AA0F0;animation:blink 2s infinite}
@keyframes blink{0%,100%{opacity:1}50%{opacity:0.2}}
.hero h1{font-family:'DM Serif Display',serif;font-size:3.1rem;line-height:1.1;letter-spacing:-0.02em;margin-bottom:1.4rem;color:#fff;font-weight:400}
.hero h1 em{font-style:italic;background:linear-gradient(90deg,#7FB3F0,#A8D8F0);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.hero-sub{font-size:0.97rem;color:rgba(255,255,255,0.6);line-height:1.75;max-width:500px;margin-bottom:2.5rem}
.hero-btns{display:flex;gap:1rem;flex-wrap:wrap}
.btn-primary{background:linear-gradient(135deg,#7752E4,#5527DE);color:#fff;font-weight:600;font-size:0.88rem;padding:0.8rem 1.8rem;border-radius:8px;cursor:pointer;border:none;font-family:'DM Sans',sans-serif;transition:all 0.2s;letter-spacing:0.01em;box-shadow:0 4px 18px rgba(91,79,207,0.45)}
.btn-primary:hover{background:linear-gradient(135deg,#6B5FDF,#4540CE);transform:translateY(-1px);box-shadow:0 6px 24px rgba(91,79,207,0.55)}
.btn-ghost{background:rgba(255,255,255,0.08);color:rgba(255,255,255,0.85);font-weight:500;font-size:0.88rem;padding:0.8rem 1.8rem;border-radius:8px;cursor:pointer;border:1.5px solid rgba(255,255,255,0.2);font-family:'DM Sans',sans-serif;transition:all 0.2s;backdrop-filter:blur(4px)}
.btn-ghost:hover{border-color:rgba(255,255,255,0.45);background:rgba(255,255,255,0.12)}
.hero-stats{display:flex;gap:2.5rem;margin-top:3rem;padding-top:2.5rem;border-top:1px solid rgba(255,255,255,0.1)}
.h-stat strong{display:block;font-family:'DM Serif Display',serif;font-size:1.7rem;font-weight:400;color:#fff}
.h-stat span{font-size:0.72rem;color:rgba(255,255,255,0.42);text-transform:uppercase;letter-spacing:0.06em}

/* ══════════════════════════════════════════
   SOLUTIONS — BENTO GRID
══════════════════════════════════════════ */
.solutions-overview{max-width:1200px;margin:0 auto;padding:5rem 2rem}
.sols-header .section-sub{max-width:460px;margin-bottom:0}
.bento-grid{display:grid;grid-template-columns:repeat(12,1fr);grid-template-rows:auto auto;gap:1.2rem}
.bento-card:nth-child(1){grid-column:1 / 8;grid-row:1}
.bento-card:nth-child(2){grid-column:8 / 13;grid-row:1 / 3}
.bento-bottom-row{grid-column:1/8;grid-row:2;display:grid;grid-template-columns:repeat(3,1fr);gap:1.2rem}
.bento-card{background:#FAFAFA;border:1.5px solid var(--border);border-radius:16px;overflow:hidden;cursor:pointer;position:relative;transition:transform 0.25s,box-shadow 0.25s,border-color 0.25s;display:flex;flex-direction:column}
.bento-card:hover{transform:translateY(-3px);box-shadow:0 16px 48px rgba(0,0,0,0.1);border-color:var(--border2)}
.bento-inner{padding:1.8rem;flex:1;display:flex;flex-direction:column;gap:0;position:relative;z-index:1}
.bento-glow{position:absolute;inset:0;opacity:0;transition:opacity 0.3s;pointer-events:none;border-radius:16px}
.bento-card:hover .bento-glow{opacity:1}
.bento-label{font-size:0.68rem;font-weight:700;color:rgba(0,0,0,0.18);letter-spacing:0.12em;text-transform:uppercase;margin-bottom:0.6rem;font-family:'DM Sans',sans-serif}
.bento-seg{font-size:0.7rem;font-weight:700;text-transform:uppercase;letter-spacing:0.07em;padding:0.2rem 0.65rem;border-radius:100px;display:inline-block;margin-bottom:1.1rem;align-self:flex-start}
.bento-seg-urgent{animation:pulse-badge 2.5s ease-in-out infinite}
.bento-seg-urgent2{animation:pulse-badge2 2.5s ease-in-out infinite}
@keyframes pulse-badge{0%,100%{box-shadow:0 0 0 0 rgba(85, 39, 222,0.3)}50%{box-shadow:0 0 0 6px rgba(85, 39, 222,0)}}
@keyframes pulse-badge2{0%,100%{box-shadow:0 0 0 0 rgba(85, 39, 222,0.3)}50%{box-shadow:0 0 0 6px rgba(85, 39, 222,0)}}
.bento-icon-wrap{width:48px;height:48px;border-radius:12px;display:flex;align-items:center;justify-content:center;margin-bottom:1.1rem;flex-shrink:0}
.bento-icon{width:24px;height:24px;stroke-width:1.6}
.bento-title{font-family:'DM Serif Display',serif;font-size:1.2rem;font-weight:400;letter-spacing:-0.01em;line-height:1.25;margin-bottom:0.7rem;color:var(--text)}
.bento-desc{font-size:0.82rem;color:var(--slate);line-height:1.6;flex:1;margin-bottom:1.1rem}
.bento-tags{display:flex;flex-wrap:wrap;gap:0.35rem;margin-bottom:1.2rem}
.bento-tags span{font-size:0.68rem;font-weight:600;padding:0.18rem 0.55rem;border-radius:100px;letter-spacing:0.02em}
.bento-cta{display:inline-flex;align-items:center;gap:6px;font-size:0.8rem;font-weight:600;transition:gap 0.2s;margin-top:auto}
.bento-card:hover .bento-cta{gap:10px}
@media(max-width:1060px){
  .bento-grid{grid-template-columns:1fr 1fr}
  .bento-card:nth-child(1){grid-column:1/2;grid-row:auto}
  .bento-card:nth-child(2){grid-column:2/3;grid-row:auto}
  .bento-bottom-row{grid-column:1/3;grid-row:auto;grid-template-columns:repeat(3,1fr)}
}
@media(max-width:680px){
  .bento-grid{grid-template-columns:1fr}
  .bento-card:nth-child(1),.bento-card:nth-child(2){grid-column:1/2}
  .bento-bottom-row{grid-column:1/2;grid-template-columns:1fr}
  .hero-inner{grid-template-columns:1fr}
}

/* ── LEAD CARD ── */
.lead-card{background:#FAFAFA;border-radius:14px;padding:2rem;box-shadow:0 20px 60px rgba(0,0,0,0.28);overflow:hidden}
.lead-card-top{height:4px;margin:-2rem -2rem 1.4rem;background:linear-gradient(90deg,var(--brand),var(--grad-end),var(--grad-mid))}
.lead-card h3{font-family:'DM Serif Display',serif;font-size:1.15rem;color:var(--text);margin-bottom:0.3rem;font-weight:400}
.lead-card .sub{font-size:0.81rem;color:var(--slate);margin-bottom:1.3rem}
.form-group{margin-bottom:0.85rem}
.form-group label{display:block;font-size:0.7rem;font-weight:600;text-transform:uppercase;letter-spacing:0.07em;color:var(--slate);margin-bottom:0.32rem}
.form-group input,.form-group select{width:100%;background:var(--bg2);border:1.5px solid var(--border);border-radius:7px;padding:0.62rem 0.85rem;font-size:0.86rem;font-family:'DM Sans',sans-serif;color:var(--text);outline:none;transition:border-color 0.2s}
.form-group input:focus,.form-group select:focus{border-color:var(--brand)}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:0.65rem}
.submit-btn{width:100%;background:var(--brand);color:#fff;font-weight:700;padding:0.82rem;border-radius:8px;border:none;font-size:0.88rem;cursor:pointer;font-family:'DM Sans',sans-serif;margin-top:0.4rem;transition:background 0.2s}
.submit-btn:hover{background:var(--brand2)}
.form-note{text-align:center;font-size:0.7rem;color:var(--slate);margin-top:0.65rem}

/* ── SOLUTIONS GRID ── */
.solutions-overview{max-width:1200px;margin:0 auto;padding:5rem 2rem}
.section-eye{font-size:0.7rem;font-weight:700;text-transform:uppercase;letter-spacing:0.1em;color:var(--brand);margin-bottom:0.6rem}
.section-title{font-family:'DM Serif Display',serif;font-size:2.1rem;font-weight:400;letter-spacing:-0.01em;margin-bottom:0.8rem;color:var(--text)}
.section-sub{font-size:0.93rem;color:var(--slate);max-width:560px;line-height:1.7;margin-bottom:3rem}
.sol-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem}
.sol-thumb{background:#FAFAFA;border:1.5px solid var(--border);border-radius:12px;padding:1.5rem;cursor:pointer;transition:all 0.2s;position:relative;overflow:hidden;box-shadow:0 1px 4px rgba(0,0,0,0.04)}
.sol-thumb:hover{border-color:var(--border2);transform:translateY(-3px);box-shadow:0 12px 32px rgba(85, 39, 222,0.12)}
.sol-accent{position:absolute;top:0;left:0;right:0;height:3px;border-radius:12px 12px 0 0}
.sol-thumb-icon{width:42px;height:42px;border-radius:9px;display:flex;align-items:center;justify-content:center;font-size:1.25rem;margin-bottom:0.9rem}
.sol-seg{font-size:0.68rem;font-weight:700;text-transform:uppercase;letter-spacing:0.06em;padding:0.2rem 0.55rem;border-radius:100px;margin-bottom:0.65rem;display:inline-block}
.sol-thumb h4{font-size:0.93rem;font-weight:600;color:var(--text);margin-bottom:0.45rem;line-height:1.35}
.sol-thumb p{font-size:0.8rem;color:var(--slate);line-height:1.55}
.sol-learn{display:inline-flex;align-items:center;gap:4px;font-size:0.77rem;font-weight:600;margin-top:0.9rem;transition:gap 0.15s}
.sol-thumb:hover .sol-learn{gap:8px}


/* ══════════════════════════════════════════
   PRACTICES — CUBIC BLOCK DESIGN
══════════════════════════════════════════ */
.practices{max-width:1200px;margin:0 auto;padding:5.5rem 2rem 4rem}
.practices-header{display:grid;grid-template-columns:1fr 1fr;gap:2rem;align-items:end;margin-bottom:3.5rem}
.practices-header .section-sub{max-width:440px;line-height:1.7;margin-bottom:0}
.cubic-grid{display:grid;grid-template-columns:repeat(5,1fr);gap:0;border:2px solid var(--border2);border-radius:18px;overflow:hidden}
.cubic-card{position:relative;padding:2rem 1.6rem 1.8rem;display:flex;flex-direction:column;gap:0;cursor:pointer;background:#FAFAFA;border-right:1.5px solid var(--border);transition:background 0.22s, transform 0.22s;overflow:hidden;min-height:400px}
.cubic-card:last-child{border-right:none}
.cubic-card::before{content:'';position:absolute;inset:0;opacity:0;transition:opacity 0.25s;pointer-events:none}
.cubic-card:hover::before{opacity:1}
.cubic-card:hover .cc-number{opacity:1}
.cubic-card:hover .cc-arrow{opacity:1;transform:translate(0,0)}
.cubic-card:hover .cc-title{color:#fff}
.cubic-card:hover .cc-desc{color:rgba(255,255,255,0.7)}
.cubic-card:hover .cc-icon-box{background:rgba(255,255,255,0.15)}
.cubic-card:hover .cc-icon{stroke:#fff}
.cubic-card:hover .cc-seg{background:rgba(255,255,255,0.15);color:rgba(255,255,255,0.9)}
.cubic-card:hover .cc-pills li{background:rgba(255,255,255,0.12);color:rgba(255,255,255,0.85);border-color:rgba(255,255,255,0.2)}
.cc-1::before{background:linear-gradient(160deg,#5527DE,#7752E4)}
.cc-2::before{background:linear-gradient(160deg,#5527DE,#2474CC)}
.cc-3::before{background:linear-gradient(160deg,#5527DE,#8A50D8)}
.cc-4::before{background:linear-gradient(160deg,#5527DE,#22B0E0)}
.cc-5::before{background:linear-gradient(160deg,#5527DE,#E04540)}
.cc-edge{position:absolute;top:0;left:0;right:0;height:4px;transition:height 0.25s}
.cc-1 .cc-edge{background:var(--c1)}
.cc-2 .cc-edge{background:var(--c2)}
.cc-3 .cc-edge{background:var(--c3)}
.cc-4 .cc-edge{background:var(--c4)}
.cc-5 .cc-edge{background:var(--c5)}
.cc-number{position:absolute;top:3.9rem;right:1.5rem;font-family:'DM Serif Display',serif;font-size:3rem;font-weight:400;color:rgba(0,0,0,0.045);line-height:1;transition:color 0.25s,opacity 0.25s;pointer-events:none;user-select:none;z-index:0}
.cubic-card:hover .cc-number{color:rgba(255,255,255,0.08)}
.cc-icon-box{position:relative;z-index:3;width:46px;height:46px;border-radius:12px;display:flex;align-items:center;justify-content:center;flex-shrink:0;align-self:flex-start;margin-bottom:1rem;transition:background 0.25s}
.cc-1 .cc-icon-box{background:var(--c1d)}
.cc-2 .cc-icon-box{background:var(--c2d)}
.cc-3 .cc-icon-box{background:var(--c3d)}
.cc-4 .cc-icon-box{background:var(--c4d)}
.cc-5 .cc-icon-box{background:var(--c5d)}
.cc-icon{width:22px;height:22px;stroke-width:1.6;transition:stroke 0.25s}
.cc-1 .cc-icon{stroke:var(--c1)}
.cc-2 .cc-icon{stroke:var(--c2)}
.cc-3 .cc-icon{stroke:var(--c3)}
.cc-4 .cc-icon{stroke:var(--c4)}
.cc-5 .cc-icon{stroke:var(--c5)}
.cc-notice{display:inline-flex;align-items:center;gap:0.3rem;font-size:0.62rem;font-weight:700;text-transform:uppercase;letter-spacing:0.05em;padding:0.3rem 0.65rem;border-radius:100px;align-self:flex-start;margin-bottom:0.8rem;min-height:1.55rem;transition:all 0.25s}
.cc-notice-warn{background:rgba(85, 39, 222,0.12);color:#5527DE;border:1px solid rgba(85, 39, 222,0.25)}
.cc-notice-hot{background:rgba(85, 39, 222,0.1);color:#5527DE;border:1px solid rgba(85, 39, 222,0.28)}
.cc-notice-empty{visibility:hidden;min-height:1.55rem;margin-bottom:0.8rem;padding:0.3rem 0}
.cc-seg{display:inline-block;font-size:0.65rem;font-weight:700;text-transform:uppercase;letter-spacing:0.07em;padding:0.18rem 0.6rem;border-radius:100px;margin-bottom:0.8rem;align-self:flex-start;transition:all 0.25s}
.cc-1 .cc-seg{background:var(--c1d);color:var(--c1)}
.cc-2 .cc-seg{background:var(--c2d);color:var(--c2)}
.cc-3 .cc-seg{background:var(--c3d);color:var(--c3)}
.cc-4 .cc-seg{background:var(--c4d);color:var(--c4)}
.cc-5 .cc-seg{background:var(--c5d);color:var(--c5)}
.cc-body{display:flex;flex-direction:column;flex:1;position:relative;z-index:1}
.cc-title{font-family:'DM Serif Display',serif;font-size:1.05rem;font-weight:400;letter-spacing:-0.01em;line-height:1.3;margin-bottom:0.7rem;color:var(--text);transition:color 0.25s}
.cc-desc{font-size:0.78rem;color:var(--slate);line-height:1.6;flex:1;margin-bottom:0.9rem;transition:color 0.25s}
.cc-pills{list-style:none;display:flex;flex-direction:column;gap:0.35rem;margin-top:auto}
.cc-pills li{font-size:0.7rem;font-weight:500;padding:0.22rem 0.6rem;border-radius:6px;border:1px solid var(--border);color:var(--slate);background:var(--bg2);display:inline-block;align-self:flex-start;transition:all 0.25s}
.cc-arrow{position:absolute;bottom:1.4rem;right:1.4rem;opacity:0;transform:translate(-4px,4px);transition:all 0.25s;z-index:2}
.cc-arrow .licon{width:18px;height:18px;stroke:#fff;stroke-width:2}
@media(max-width:1060px){
  .cubic-grid{grid-template-columns:repeat(3,1fr)}
  .cubic-card:nth-child(3){border-right:none}
  .cubic-card{min-height:360px}
  .practices-header{grid-template-columns:1fr}
}
@media(max-width:680px){
  .cubic-grid{grid-template-columns:1fr 1fr}
  .cubic-card:nth-child(2n){border-right:none}
  .cubic-card{min-height:320px;border-bottom:1.5px solid var(--border)}
  .cubic-card:last-child{grid-column:1/3;border-bottom:none}
}
@media(max-width:420px){
  .cubic-grid{grid-template-columns:1fr}
  .cubic-card{border-right:none;min-height:auto}
  .cubic-card:last-child{grid-column:auto}
}

/* ── TRUST BAR ── */
.trust-bar{background:var(--bg3);border-top:1px solid var(--border);border-bottom:1px solid var(--border);padding:3rem 2rem}
.trust-inner{max-width:1200px;margin:0 auto;padding:0 2rem;display:grid;grid-template-columns:repeat(4,1fr);gap:2rem;text-align:center}
.trust-item strong{display:block;font-family:'DM Serif Display',serif;font-size:2rem;font-weight:400;color:var(--brand);margin-bottom:0.25rem}
.trust-item p{font-size:0.8rem;color:var(--slate);line-height:1.5}

/* ── INNER PAGE — MIDNIGHT NAVY ── */
.page-hero{
  padding:6.5rem 2rem 3.5rem;
  position:relative;overflow:hidden;
  background:#0A1733;
  background:
    radial-gradient(ellipse 80% 60% at 72% 28%, rgba(41,88,190,0.42) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 18% 82%, rgba(30,60,150,0.35) 0%, transparent 55%),
    radial-gradient(ellipse 100% 100% at 50% 50%, #0A1733 30%, #050B1E 100%);
}
.page-hero-grad{position:absolute;top:0;right:0;bottom:0;width:40%;pointer-events:none;opacity:0.12}
.page-hero-inner{max-width:1200px;margin:0 auto;padding:0 2rem;position:relative;z-index:1}
.back-btn{display:inline-flex;align-items:center;gap:6px;font-size:0.76rem;color:rgba(255,255,255,0.45);cursor:pointer;margin-bottom:1.4rem;transition:color 0.2s;background:none;border:none;font-family:'DM Sans',sans-serif}
.back-btn:hover{color:rgba(255,255,255,0.85)}
.back-btn::before{content:'←'}
.page-badge{display:inline-flex;align-items:center;gap:7px;border-radius:100px;padding:0.26rem 0.78rem;font-size:0.68rem;font-weight:700;text-transform:uppercase;letter-spacing:0.08em;margin-bottom:0.9rem}
.urgency-flag{display:inline-flex;align-items:center;gap:6px;border-radius:6px;padding:0.32rem 0.75rem;font-size:0.73rem;font-weight:700;margin-bottom:0.9rem}
.page-hero h1{font-family:'DM Serif Display',serif;font-size:2.5rem;font-weight:400;letter-spacing:-0.02em;line-height:1.1;margin-bottom:1rem;color:#fff}
.page-hero h1 em{font-style:italic}
.page-hero .tagline{font-size:0.96rem;color:rgba(255,255,255,0.55);max-width:640px;line-height:1.65}

/* ── DETAIL ── */
.inner-page{max-width:1200px;margin:0 auto;padding:3rem 2rem 5rem}
.detail-grid{display:grid;grid-template-columns:1fr 320px;gap:2.5rem;align-items:start}
.detail-intro{font-size:0.93rem;color:var(--text2);line-height:1.8;margin-bottom:2rem;padding:1.5rem;background:var(--bg2);border-radius:10px;border-left:3px solid var(--brand)}
.feat-list{display:flex;flex-direction:column;gap:0.9rem}
.feat{display:flex;gap:1rem;align-items:flex-start;padding:1.2rem;background:#FAFAFA;border:1.5px solid var(--border);border-radius:11px;transition:all 0.2s;box-shadow:0 1px 4px rgba(0,0,0,0.04)}
.feat:hover{border-color:var(--border2)}
.feat-ico{width:36px;height:36px;border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:0.95rem;flex-shrink:0;margin-top:1px}
.feat h5{font-size:0.87rem;font-weight:600;color:var(--text);margin-bottom:0.28rem}
.feat p{font-size:0.8rem;color:var(--slate);line-height:1.55}
.feat-sub{margin-top:0.45rem;display:flex;flex-direction:column;gap:0.2rem}
.feat-sub-i{font-size:0.76rem;color:var(--slate);display:flex;gap:0.4rem;line-height:1.4}
.feat-sub-i::before{content:'→';flex-shrink:0;opacity:0.35}

/* ── SIDEBAR ── */
.sidebar{position:sticky;top:86px;display:flex;flex-direction:column;gap:1.1rem}
.sb-cta{border-radius:12px;padding:1.4rem}
.sb-cta h4{font-size:0.95rem;font-weight:700;margin-bottom:0.55rem}
.sb-cta p{font-size:0.8rem;line-height:1.6;margin-bottom:1rem}
.sb-cta a{display:block;text-align:center;font-weight:700;font-size:0.82rem;padding:0.62rem;border-radius:8px;cursor:pointer;transition:opacity 0.2s;text-decoration:none}
.sb-cta a:hover{opacity:0.85}
.sb-targets{background:#FAFAFA;border:1.5px solid var(--border);border-radius:12px;padding:1.1rem}
.sb-targets h4{font-size:0.7rem;font-weight:700;text-transform:uppercase;letter-spacing:0.08em;color:var(--slate);margin-bottom:0.8rem}
.tgt-tag{display:inline-block;font-size:0.7rem;font-weight:600;padding:0.2rem 0.6rem;border-radius:100px;margin:0.18rem;letter-spacing:0.01em}

/* ── INFO BLOCKS ── */
.info-block{border-radius:10px;padding:1.2rem 1.3rem;margin-top:0.7rem}
.info-grid{display:grid;grid-template-columns:1fr 1fr;gap:0.5rem;margin:0.8rem 0}
.info-card{background:rgba(255,255,255,0.7);border:1px solid rgba(255,255,255,0.9);border-radius:8px;padding:0.65rem 0.75rem}
.info-card-label{font-size:0.65rem;font-weight:700;text-transform:uppercase;letter-spacing:0.07em;margin-bottom:0.2rem}
.info-card-val{font-size:0.78rem;color:var(--text2);line-height:1.4}
.pill-row{display:flex;flex-wrap:wrap;gap:0.38rem;margin-top:0.65rem}
.mini-pill{border-radius:100px;padding:0.18rem 0.58rem;font-size:0.69rem;font-weight:500}
.info-note{font-size:0.71rem;margin-top:0.65rem;line-height:1.5;font-style:italic;color:var(--slate)}
.prop-badge{border-radius:4px;padding:0.16rem 0.5rem;font-size:0.65rem;font-weight:700;text-transform:uppercase;letter-spacing:0.06em;vertical-align:middle;margin-left:0.4rem}

/* ── RETENTION TABLE ── */
.ret-tbl{width:100%;border-collapse:collapse;font-size:0.77rem;margin-top:0.65rem}
.ret-tbl th{text-align:left;padding:0.38rem 0.5rem;font-weight:600;color:var(--slate);border-bottom:1.5px solid var(--border)}
.ret-tbl td{padding:0.38rem 0.5rem;border-bottom:1px solid var(--border);line-height:1.4;color:var(--text2)}
.ret-tbl td:last-child{font-weight:600;white-space:nowrap;color:var(--brand)}

/* ── CONTACT ── */
.contact-wrap{max-width:1200px;margin:0 auto;padding:4rem 2rem;display:grid;grid-template-columns:1fr 1fr;gap:4rem;align-items:start}
.contact-info h2{font-family:'DM Serif Display',serif;font-size:1.9rem;font-weight:400;margin-bottom:0.9rem;letter-spacing:-0.01em}
.contact-info p{color:var(--slate);line-height:1.75;margin-bottom:2rem;font-size:0.92rem}
.c-items{display:flex;flex-direction:column;gap:1rem}
.c-item{display:flex;gap:1rem;align-items:flex-start}
.c-ico{width:38px;height:38px;background:var(--brand-dim);border-radius:9px;display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:1rem}
.c-text strong{display:block;font-size:0.83rem;font-weight:600;margin-bottom:0.1rem}
.c-text span{font-size:0.8rem;color:var(--slate)}
.contact-form{background:#FAFAFA;border:1.5px solid var(--border);border-radius:14px;padding:2rem}
.contact-form h3{font-family:'DM Serif Display',serif;font-size:1.2rem;font-weight:400;margin-bottom:1.4rem}

/* ── FOOTER ── */
footer{background:var(--text);color:#fff;padding:3rem 2rem 2rem}
.footer-inner{max-width:1200px;margin:0 auto;padding:0 2rem}
.footer-top{display:grid;grid-template-columns:2fr 1fr 1fr 1fr;gap:3rem;margin-bottom:3rem}
.footer-logo img{height:30px;width:auto;margin-bottom:1rem}
.footer-desc{font-size:0.8rem;color:rgba(255,255,255,0.42);line-height:1.7;max-width:260px}
.footer-social{display:flex;gap:0.55rem;margin-top:1.1rem}
.footer-social a{display:inline-flex;align-items:center;justify-content:center;width:34px;height:34px;border-radius:8px;background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.12);transition:background .18s ease,border-color .18s ease,transform .18s ease}
.footer-social a:hover{background:var(--brand);border-color:var(--brand);transform:translateY(-1px)}
.footer-social svg{width:16px;height:16px;display:block;fill:rgba(255,255,255,0.6);transition:fill .18s ease}
.footer-social a:hover svg{fill:#fff}
.founder-li{display:inline-flex;opacity:0.68;transition:opacity .18s ease,transform .18s ease}
.founder-li:hover{opacity:1;transform:translateY(-1px)}
.founder-li svg{width:15px;height:15px;display:block;fill:currentColor}
.footer-col h5{font-size:0.68rem;font-weight:700;text-transform:uppercase;letter-spacing:0.1em;color:rgba(255,255,255,0.35);margin-bottom:0.9rem}
.footer-col a{display:block;font-size:0.8rem;color:rgba(255,255,255,0.55);margin-bottom:0.55rem;cursor:pointer;transition:color 0.2s;text-decoration:none}
.footer-col a:hover{color:#fff}
.footer-divider{border:none;border-top:1px solid rgba(255,255,255,0.07);margin-bottom:1.4rem}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1rem}
.footer-bottom p{font-size:0.73rem;color:rgba(255,255,255,0.28)}

/* ── RESPONSIVE ── */
@media(max-width:1060px){
  .hero-inner{grid-template-columns:1fr}
  .lead-card{display:none}
  .sol-grid{grid-template-columns:1fr 1fr}
  .trust-inner{grid-template-columns:1fr 1fr;gap:1.5rem}
  .detail-grid{grid-template-columns:1fr}
  .sidebar{position:static}
  .footer-top{grid-template-columns:1fr 1fr}
  .contact-wrap{grid-template-columns:1fr}
  .nav-links{display:none}
  .hamburger{display:flex}
  .info-grid{grid-template-columns:1fr}
}
@media(max-width:580px){
  .sol-grid{grid-template-columns:1fr}
  .trust-inner{grid-template-columns:1fr 1fr}
  .footer-top{grid-template-columns:1fr}
  .hero h1{font-size:2.3rem}
  .page-hero h1{font-size:1.9rem}
}
.mobile-menu{display:none;position:fixed;top:68px;left:0;right:0;bottom:0;background:#FAFAFA;z-index:190;padding:1.5rem;overflow-y:auto;flex-direction:column;gap:0.35rem}
.mobile-menu.open{display:flex}
.mobile-menu .nav-link{padding:0.8rem 1rem;font-size:0.92rem;border-radius:9px}
.mobile-menu .nav-cta{margin-top:1rem;padding:0.88rem;text-align:center;border-radius:9px;border:none;font-family:'DM Sans',sans-serif;font-size:0.92rem;font-weight:600}


/* ══════════════════════════════════════════
   OUR PARTNERS — infinite scroll
══════════════════════════════════════════ */
.partners{background:#FFFFFF;padding:5rem 0 4.5rem;overflow:hidden;border-top:1px solid var(--border)}
.partners-header{max-width:1200px;margin:0 auto 3rem;padding:0 2rem;text-align:center}
.partners-header h2{font-family:'DM Serif Display',serif;font-size:2rem;font-weight:400;letter-spacing:-0.01em;color:var(--text);margin-bottom:0.6rem}
.partners-header p{font-size:0.93rem;color:var(--slate);max-width:520px;margin:0 auto}
.marquee{display:flex;overflow:hidden;user-select:none;max-width:1200px;margin:0 auto;padding:0 2rem;-webkit-mask-image:linear-gradient(to right,transparent,#000 4%,#000 96%,transparent);mask-image:linear-gradient(to right,transparent,#000 4%,#000 96%,transparent)}
.marquee+.marquee{margin-top:1.5rem}
.marquee-track{display:flex;gap:3rem;flex-shrink:0;align-items:center;padding-right:3rem;animation:scroll-left 50s linear infinite}
.marquee-track.reverse{animation:scroll-right 50s linear infinite}
.marquee:hover .marquee-track{animation-play-state:paused}
@keyframes scroll-left{from{transform:translateX(0)}to{transform:translateX(-50%)}}
@keyframes scroll-right{from{transform:translateX(-50%)}to{transform:translateX(0)}}
.partner-logo{flex-shrink:0;width:170px;height:80px;display:flex;align-items:center;justify-content:center;background:#FAFAFA;border:1.5px solid var(--border);border-radius:12px;padding:1rem 1.4rem;transition:all 0.25s}
.partner-logo img{max-width:100%;max-height:100%;width:auto;height:auto;object-fit:contain;opacity:0.75;transition:all 0.25s}
.partner-logo:hover{border-color:var(--border2);background:#fff}
.partner-logo:hover img{opacity:1}
@media(max-width:680px){.partner-logo{width:130px;height:65px;padding:0.8rem 1.1rem}.marquee-track{gap:2rem;padding-right:2rem}.partners-header h2{font-size:1.6rem}}


/* ══════════════════════════════════════════
   POSTS FEED — modern social layout
══════════════════════════════════════════ */
.posts-feed{max-width:640px;margin:0 auto;padding:3rem 2rem 5rem}
.posts-compose{display:flex;align-items:center;gap:0.9rem;background:#fff;border:1px solid var(--border);border-radius:100px;padding:0.8rem 1.2rem;margin-bottom:2rem;color:var(--slate);font-size:0.9rem}
.posts-compose .post-avatar{width:40px;height:40px;font-size:0.9rem}
.post-card{background:#fff;border:1px solid var(--border);border-radius:18px;margin-bottom:1.25rem;overflow:hidden;transition:box-shadow 0.25s, transform 0.25s, border-color 0.25s}
.post-card:hover{box-shadow:0 10px 34px rgba(85, 39, 222,0.09);border-color:var(--border2);transform:translateY(-2px)}
.post-head{display:flex;align-items:center;gap:0.85rem;padding:1.3rem 1.5rem 0.5rem}
.post-avatar{width:46px;height:46px;border-radius:50%;background:linear-gradient(135deg,var(--brand),var(--grad-end));display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:1rem;flex-shrink:0}
.post-author{flex:1;min-width:0}
.post-author-name{font-size:0.92rem;font-weight:700;color:var(--text);display:flex;align-items:center;gap:0.35rem}
.post-author-name::after{content:'✓';font-size:0.6rem;color:#fff;background:var(--brand);width:14px;height:14px;border-radius:50%;display:inline-flex;align-items:center;justify-content:center;flex-shrink:0}
.post-author-title{font-size:0.76rem;color:var(--slate)}
.post-meta{font-size:0.72rem;color:var(--slate);margin-top:0.1rem}
.post-body{padding:0.6rem 1.5rem 1rem}
.post-body h3{font-family:'DM Sans',sans-serif;font-size:1.12rem;font-weight:700;color:var(--text);line-height:1.35;margin-bottom:0.6rem}
.post-body p{font-size:0.93rem;color:var(--text2);line-height:1.65;margin-bottom:0.8rem}
.post-body p:last-child{margin-bottom:0}
.post-body a{color:var(--brand);font-weight:600;text-decoration:none}
.post-body a:hover{text-decoration:underline}
.post-body ul{margin:0.5rem 0 0.9rem 1.2rem}
.post-body li{font-size:0.93rem;color:var(--text2);line-height:1.6;margin-bottom:0.3rem}
.post-image{width:100%;max-height:440px;object-fit:cover;display:block;border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.post-tags{display:flex;flex-wrap:wrap;gap:0.4rem;padding:0.4rem 1.5rem 1.1rem}
.post-tag{font-size:0.7rem;font-weight:600;color:var(--brand);background:var(--brand-dim);padding:0.28rem 0.75rem;border-radius:100px}
.post-actions{display:flex;align-items:center;border-top:1px solid var(--border);padding:0.4rem 0.8rem}
.post-action{flex:1;display:inline-flex;align-items:center;justify-content:center;gap:0.4rem;padding:0.6rem;border-radius:8px;font-size:0.8rem;font-weight:600;color:var(--slate);background:none;border:none;cursor:pointer;transition:background 0.15s,color 0.15s;font-family:'DM Sans',sans-serif}
.post-action:hover{background:var(--bg2);color:var(--brand)}
.post-action svg{width:17px;height:17px;stroke:currentColor;fill:none;stroke-width:1.8}
.post-action.cta{color:var(--brand);flex:1.4}
@media(max-width:680px){
  .posts-feed{padding:2rem 1rem 3rem}
  .post-image{max-height:260px}
  .post-action{font-size:0}
  .post-action svg{width:19px;height:19px}
  .post-action.cta{font-size:0.78rem}
}

/* ══════════════════════════════════════════
   MOBILE FIXES — comprehensive (<=768px)
══════════════════════════════════════════ */
@media(max-width:768px){
  html,body{overflow-x:hidden;max-width:100%}
  *{max-width:100%}
  .nav-inner{padding:0 1rem;height:60px}
  .nav-logo img{height:30px}
  .nav-links{display:none !important}
  .nav-cta{display:none !important}
  .hamburger{display:flex !important;margin-left:auto;z-index:210}
  .hamburger span{background:var(--text)}
  .mobile-menu{top:60px;padding:1.2rem}
  .mobile-menu .nav-cta{display:block !important;margin-top:0.5rem;text-align:center}
  .hero{padding:5rem 1.2rem 3rem}
  .hero-inner{grid-template-columns:1fr;padding:0}
  .hero h1{font-size:2rem;line-height:1.15;margin-bottom:1rem}
  .hero-eyebrow{font-size:0.62rem;white-space:normal;line-height:1.4;padding:0.4rem 0.8rem}
  .hero-text p{font-size:0.95rem;line-height:1.6}
  .lead-card{display:none}
  .hero-btns{flex-direction:column;gap:0.7rem;width:100%}
  .hero-btns .btn-primary,.hero-btns .btn-ghost{width:100%;text-align:center;justify-content:center}
  .hero-stats{flex-wrap:wrap;gap:1.5rem 2rem;margin-top:2rem;padding-top:2rem}
  .h-stat{flex:0 0 40%}
  .h-stat strong{font-size:1.6rem}
  .cubic-grid{grid-template-columns:1fr;border-radius:14px}
  .cubic-card{border-right:none;border-bottom:1.5px solid var(--border);min-height:auto}
  .cubic-card:last-child{border-bottom:none}
  .practices{padding:3rem 1.2rem}
  .practices-header{grid-template-columns:1fr;gap:1rem;margin-bottom:2rem}
  .section-title{font-size:1.8rem}
  .trust-bar{padding:2.5rem 1.2rem}
  .trust-inner{grid-template-columns:1fr 1fr;gap:1.5rem;padding:0}
  .partners{padding:3rem 0}
  .partners-header{padding:0 1.2rem}
  .partners-header h2{font-size:1.5rem}
  .marquee{padding:0 1rem}
  .partner-logo{width:140px;height:64px;padding:0.8rem 1rem}
  .page-hero{padding:5.5rem 1.2rem 2.5rem}
  .page-hero h1{font-size:1.9rem}
  .page-hero .tagline{font-size:0.95rem}
  .page-hero-inner{padding:0}
  .inner-page{padding:2rem 1.2rem 3rem}
  .detail-grid{grid-template-columns:1fr;gap:2rem}
  .sidebar{position:static}
  .news-feed{padding:2rem 1rem 3rem}
  .post-card{border-radius:14px}
  .post-image{max-height:240px}
  .contact-wrap{grid-template-columns:1fr;padding:2rem 1.2rem;gap:2rem}
  .footer-inner{padding:0 1.2rem}
  .footer-top{grid-template-columns:1fr 1fr;gap:1.5rem}
  .footer-bottom{flex-direction:column;gap:0.6rem;text-align:center}
}

@media(max-width:420px){
  .hero h1{font-size:1.7rem}
  .trust-inner{grid-template-columns:1fr 1fr}
  .footer-top{grid-template-columns:1fr}
  .h-stat{flex:0 0 100%}
  .section-title{font-size:1.5rem}
}


/* ══════════════════════════════════════════
   HOME HERO — robust mobile fix (highest priority)
══════════════════════════════════════════ */
@media(max-width:768px){
  section.hero .hero-inner{display:block !important;grid-template-columns:none !important;max-width:100% !important;padding:0 !important;gap:0 !important}
  section.hero .lead-card{display:none !important}
  section.hero{padding:5rem 1.1rem 2.5rem !important;overflow-x:hidden !important}
  section.hero .hero-text{max-width:100% !important}
  section.hero .hero-eyebrow{font-size:0.6rem !important;white-space:normal !important;line-height:1.35 !important;padding:0.35rem 0.75rem !important;max-width:100% !important}
  section.hero h1{font-size:1.9rem !important;line-height:1.15 !important;word-break:break-word !important}
  section.hero .hero-text p{font-size:0.95rem !important}
  section.hero .hero-btns{display:flex !important;flex-direction:column !important;width:100% !important;gap:0.7rem !important}
  section.hero .hero-btns .btn-primary,section.hero .hero-btns .btn-ghost{width:100% !important;max-width:100% !important;text-align:center !important;justify-content:center !important;box-sizing:border-box !important}
  section.hero .hero-stats{display:flex !important;flex-wrap:wrap !important;gap:1.3rem 1.5rem !important;max-width:100% !important}
  section.hero .h-stat{flex:0 0 42% !important}
}

/* Posts loading + empty states */
.posts-loading{text-align:center;padding:3rem 0;color:var(--slate)}
.posts-spinner{width:32px;height:32px;border:3px solid var(--border);border-top-color:var(--brand);border-radius:50%;margin:0 auto 1rem;animation:posts-spin 0.8s linear infinite}
@keyframes posts-spin{to{transform:rotate(360deg)}}
.posts-empty{text-align:center;padding:3rem 0;color:var(--slate);font-size:0.95rem}
.post-body h4{font-family:'DM Sans',sans-serif;font-size:1rem;font-weight:700;color:var(--text);margin:0.6rem 0 0.4rem}


/* ══════════════════════════════════════════
   TOOLS PAGE — downloads + external tool cards
══════════════════════════════════════════ */
.tools-wrap{max-width:1200px;margin:0 auto;padding:3.5rem 2rem 5rem}
.tools-section{margin-bottom:3.5rem}
.tools-section-head{margin-bottom:1.8rem}
.tools-section-head .section-eye{margin-bottom:0.5rem}
.tools-section-head h2{font-family:'DM Serif Display',serif;font-size:1.7rem;font-weight:400;color:var(--text);letter-spacing:-0.01em;margin-bottom:0.4rem}
.tools-section-head p{font-size:0.92rem;color:var(--slate);max-width:640px;line-height:1.6}
.tools-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.3rem}
.tool-card{background:#fff;border:1.5px solid var(--border);border-radius:16px;padding:1.6rem;display:flex;flex-direction:column;transition:border-color 0.2s, box-shadow 0.2s, transform 0.2s;position:relative;overflow:hidden}
.tool-card:hover{border-color:var(--border2);box-shadow:0 12px 32px rgba(85, 39, 222,0.1);transform:translateY(-3px)}
.tool-card-top{position:absolute;top:0;left:0;right:0;height:3px}
.tool-ico{width:52px;height:52px;border-radius:13px;display:flex;align-items:center;justify-content:center;margin-bottom:1.1rem;font-size:1.5rem}
.tool-ico svg{width:26px;height:26px;stroke-width:1.7}
.tool-card h3{font-size:1.02rem;font-weight:700;color:var(--text);margin-bottom:0.35rem}
.tool-card .tool-platform{font-size:0.72rem;font-weight:600;text-transform:uppercase;letter-spacing:0.05em;color:var(--slate);margin-bottom:0.6rem}
.tool-card p{font-size:0.85rem;color:var(--slate);line-height:1.55;margin-bottom:1.2rem;flex:1}
.tool-btn{display:inline-flex;align-items:center;justify-content:center;gap:0.5rem;background:var(--brand);color:#fff;font-weight:600;font-size:0.85rem;padding:0.7rem 1rem;border-radius:9px;text-decoration:none;transition:background 0.2s;border:none;cursor:pointer;font-family:'DM Sans',sans-serif;width:100%}
.tool-btn:hover{background:var(--brand2)}
.tool-btn svg{width:16px;height:16px;stroke-width:2}
.tool-btn.disabled{background:var(--bg3);color:var(--slate);cursor:not-allowed;pointer-events:none}
.tool-link-card{background:#fff;border:1.5px solid var(--border);border-radius:16px;padding:1.6rem;display:flex;align-items:center;gap:1.2rem;text-decoration:none;transition:border-color 0.2s, box-shadow 0.2s, transform 0.2s}
.tool-link-card:hover{border-color:var(--border2);box-shadow:0 12px 32px rgba(85, 39, 222,0.1);transform:translateY(-3px)}
.tool-link-ico{width:54px;height:54px;border-radius:13px;flex-shrink:0;display:flex;align-items:center;justify-content:center}
.tool-link-ico svg{width:26px;height:26px;stroke-width:1.7}
.tool-link-body{flex:1;min-width:0}
.tool-link-body h3{font-size:1rem;font-weight:700;color:var(--text);margin-bottom:0.2rem;display:flex;align-items:center;gap:0.4rem}
.tool-link-body p{font-size:0.83rem;color:var(--slate);line-height:1.5}
.tool-link-arrow{color:var(--brand);flex-shrink:0;transition:transform 0.2s}
.tool-link-card:hover .tool-link-arrow{transform:translate(3px,-3px)}
.tool-link-arrow svg{width:20px;height:20px;stroke-width:2}
@media(max-width:900px){.tools-grid{grid-template-columns:1fr 1fr}}
@media(max-width:600px){
  .tools-wrap{padding:2.5rem 1.2rem 3rem}
  .tools-grid{grid-template-columns:1fr}
  .tool-link-card{flex-direction:row}
}
.tool-btn-group{display:flex;flex-direction:column;gap:0.5rem}
.tool-btn.secondary{background:#fff;color:var(--brand);border:1.5px solid var(--border2)}
.tool-btn.secondary:hover{background:var(--brand-dim);border-color:var(--brand)}
.tool-btn.tertiary{background:var(--bg2);color:var(--slate);font-size:0.8rem;padding:0.6rem 1rem}
.tool-btn.tertiary:hover{background:var(--bg3);color:var(--text)}
.tool-badge-soon{display:inline-block;font-size:0.66rem;font-weight:700;text-transform:uppercase;letter-spacing:0.05em;color:var(--slate);background:var(--bg3);padding:0.3rem 0.7rem;border-radius:100px;align-self:flex-start}

/* Hero N graphic (replaces the old form on homepage) */
.hero-visual{width:100%;display:flex;align-items:center;justify-content:flex-end;padding:0}
.hero-n{width:270px;max-width:100%;height:auto;opacity:0.9;filter:drop-shadow(0 8px 32px rgba(85,39,222,0.28))}
@media(max-width:1060px){
  .hero-visual{width:100%;display:flex;align-items:center;justify-content:flex-end;padding:0}
  .hero-n{width:270px;max-width:100%;height:auto;opacity:0.9;filter:drop-shadow(0 8px 32px rgba(85,39,222,0.28))}
}
@media(max-width:768px){
  .hero-visual{width:100%;display:flex;align-items:center;justify-content:flex-end;padding:0}
}
