/* MindShield Solutions — Main Stylesheet */


/* ── MAGNIFIC EXACT DARK TOKENS ── */
:root {
  /* surfaces — Magnific exact */
  --s0:#101010; --s1:#1a1a1a; --s2:#2b2b2b; --s3:#353535; --s4:#424242;
  --p0:#101010; --p2:#161616; --p4:#1a1a1a; --p6:#1f1f1f;

  /* foreground — Magnific exact */
  --fg0:#f5f5f5; --fg1:#e3e3e3; --fg2:#c5c5c5; --fg3:#aaaaaa; --fg4:#737373;

  /* accent = #AADD00 replaces Magnific indigo #4f69f2 and pink #ff58ae */
  --acc:#AADD00; --acc1:#88BB00; --acc2:#CCEE44; --acc-fg:#111;

  /* brand */
  --brand:#AADD00; --brand-dk:#88BB00; --brand-lt:#CCEE44; --brand-fg:#111;

  /* secondary */
  --sec0:#f5f5f5; --sec1:#e3e3e3; --sec-fg:#1a1a1a;

  /* marketing = #AADD00 replaces Magnific wine #2c0000/#3f0808 */
  --mkt0:#1a2200; --mkt1:#243000; --mkt-fg:#fafafa;

  /* borders — Magnific exact */
  --b0:rgba(255,255,255,0.08); --b1:rgba(255,255,255,0.13); --b2:rgba(255,255,255,0.2);

  /* ghost — Magnific exact */
  --gh1:rgba(255,255,255,0.10); --gh2:rgba(255,255,255,0.15);

  --ff:'Geist',system-ui,sans-serif;
  --fd:'Geist',system-ui,sans-serif;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{font-family:var(--ff);background:#101010;color:var(--fg0);overflow-x:hidden;line-height:1.6;-webkit-font-smoothing:antialiased}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
button{font-family:var(--ff);cursor:pointer;border:none;outline:none}

/* ── NAV ── */
nav {
  position:fixed;top:0;left:0;right:0;z-index:200;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 28px;height:72px;
  background:rgba(16,16,16,0.95);backdrop-filter:blur(24px);
  border-bottom:1px solid rgba(255,255,255,0.08);
  gap:24px;
}
.n-logo{display:flex;align-items:center;gap:0;text-decoration:none;flex-shrink:0}
.n-logo svg{height:44px !important}
.lm{display:none}
.lm svg{width:16px;height:16px}
.n-links{
  display:flex;align-items:center;gap:2px;list-style:none;
  flex:1;justify-content:center;
}
.n-links a{
  font-size:13px;font-weight:500;
  color:rgba(255,255,255,0.9);
  padding:7px 14px;border-radius:7px;
  transition:all .2s ease;
  white-space:nowrap;
}
.n-links a:hover{color:#fff;background:rgba(255,255,255,0.06)}
.n-right{display:flex;align-items:center;gap:8px;flex-shrink:0}
.n-ghost{
  font-size:13px;font-weight:500;color:#f5f5f5;
  border:1px solid rgba(255,255,255,0.18);border-radius:8px;
  padding:8px 16px;background:transparent;transition:all .2s ease;
  white-space:nowrap;
}
.n-ghost:hover{background:rgba(255,255,255,0.08);border-color:rgba(255,255,255,0.32)}
.n-cta{
  font-size:13px;font-weight:600;color:#111;
  background:#AADD00;border:none;border-radius:8px;
  padding:8px 18px;transition:all .2s ease;
  white-space:nowrap;
}
.n-cta:hover{background:#CCEE44;transform:translateY(-1px);box-shadow:0 4px 14px rgba(170,221,0,0.35)}

/* ── HERO ── */
/* ── HERO — exact Magnific layout ── */
.hero{
  position:relative;min-height:100vh;overflow:hidden;
  display:flex;flex-direction:column;
  background:var(--mkt0);
}
.hero-bg{
  position:absolute;inset:0;
  /* Photo fills right ~60%, deep red fades in from left */
  background:
    linear-gradient(to right, rgba(26,34,0,1.0) 0%, rgba(26,34,0,0.92) 30%, rgba(26,34,0,0.55) 52%, rgba(26,34,0,0.1) 72%, rgba(26,34,0,0.0) 100%),
    url('https://images.unsplash.com/photo-1573496359142-b8d87734a5a2?w=1600&q=85') center/cover no-repeat;
}
.hero-noise{
  position:absolute;inset:0;opacity:0.035;pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
}
/* Main hero body — full viewport, positions left text + right list side by side */
.hero-body{
  position:relative;z-index:2;flex:1;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 64px;min-height:calc(100vh - 44px);
  gap:40px;
}
/* LEFT: text content */
.hero-left{
  display:flex;flex-direction:column;justify-content:center;
  max-width:600px;padding:100px 0 60px;
}
/* Magnific badge: two-part pill — dark bg, text + coloured link */
.hero-badge{
  display:inline-flex;align-items:center;gap:0;
  border:1px solid rgba(255,255,255,0.15);border-radius:100px;
  margin-bottom:20px;width:fit-content;overflow:hidden;
  background:rgba(255,255,255,0.08);
}
.badge-label{
  font-size:12.5px;font-weight:500;color:rgba(255,255,255,0.75);
  padding:6px 14px;letter-spacing:0.01em;
}
.badge-link{
  display:inline-flex;align-items:center;gap:5px;
  font-size:12.5px;font-weight:600;
  color:#AADD00; /* Magnific's emphasis/pink colour */
  padding:6px 14px 6px 10px;
  border-left:1px solid rgba(255,255,255,0.13);
  transition:color .15s;
}
.badge-link svg{width:12px;height:12px;stroke:currentColor;fill:none;stroke-width:2.5}
.badge-link:hover{color:#CCEE44}
.hero h1{
  /* Big enough to wrap naturally into 2 lines across the left column */
  font-size:clamp(52px,5.6vw,80px);
  font-weight:800;
  line-height:1.02;
  letter-spacing:-0.045em;
  margin-top:12px;
  margin-bottom:20px;
  color:#fafafa;
  /* No artificial line breaks — let font size drive the 2-line wrap */
  max-width:640px;
}
.hero-sub{
  /* Noticeably smaller than H1, matches H1 column width */
  font-size:17px;
  color:var(--fg3);
  max-width:560px;
  line-height:1.65;
  margin-bottom:32px;
  font-weight:400;
  letter-spacing:-0.01em;
}
.hero-ctas{display:flex;align-items:center;gap:10px;flex-wrap:wrap}
/* Magnific primary CTA — white filled, dark text */
.btn-hero-main{
  font-size:14px;font-weight:600;color:#111;
  background:#AADD00;border:none;border-radius:8px;
  padding:11px 22px;transition:background .15s;display:inline-block;
}
.btn-hero-main:hover{background:#CCEE44}
/* Magnific secondary — dark outlined with play icon */
.btn-hero-ghost{
  font-size:14px;font-weight:500;color:var(--fg0);
  border:1px solid rgba(170,221,0,0.3);border-radius:8px;
  padding:11px 20px;background:rgba(0,0,0,0.25);
  display:inline-flex;align-items:center;gap:8px;transition:all .15s;
}
.btn-hero-ghost:hover{background:rgba(255,255,255,0.08)}
.btn-hero-ghost .play-icon{
  width:18px;height:18px;border-radius:50%;
  background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.18);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.btn-hero-ghost .play-icon svg{width:7px;height:7px;fill:#fff;margin-left:1px}

/* RIGHT: vertical cycling capabilities list — exactly like Magnific */
.hero-right{
  display:flex;align-items:center;justify-content:flex-end;
  flex-shrink:0;position:relative;
  min-width:320px;
}
/* Fixed-height viewport — text scrolls through this window */
.cycle-window{
  position:relative;
  height:260px;
  overflow:hidden;
  text-align:right;
  /* top & bottom fade so items dissolve in/out smoothly */
  -webkit-mask:linear-gradient(to bottom,transparent 0%,black 20%,black 80%,transparent 100%);
  mask:linear-gradient(to bottom,transparent 0%,black 20%,black 80%,transparent 100%);
}
/* The scrolling track — moves upward continuously */
.cycle-track{
  display:flex;flex-direction:column;
  transition:transform 0.55s cubic-bezier(0.4,0,0.2,1);
  will-change:transform;
}
.cycle-item{
  /* Larger, clear weight — Magnific's right list is big and bold */
  font-size:clamp(22px,2.4vw,32px);
  font-weight:700;
  letter-spacing:-0.025em;
  line-height:1.2;
  height:52px;
  display:flex;align-items:center;justify-content:flex-end;
  white-space:nowrap;cursor:default;
  /* inactive: lighter weight feel via opacity */
  color:rgba(255,255,255,0.22);
  transition:color 0.5s ease, font-weight 0.5s ease;
}
.cycle-item.active{
  color:#f5f5f5;
  font-weight:800;
}
/* Pink ▶ arrow — absolutely fixed at vertical centre of window, always visible */
.cycle-indicator{
  position:absolute;
  top:50%;transform:translateY(-50%);
  right:100%;margin-right:14px;
  width:0;height:0;
  border-top:7px solid transparent;
  border-bottom:7px solid transparent;
  border-left:12px solid #AADD00;
  pointer-events:none;
  flex-shrink:0;
}

/* Bottom pills strip — horizontal scroll across full width */
.pills-strip{
  position:relative;z-index:2;
  overflow:hidden;padding:16px 0;
  border-top:1px solid rgba(170,221,0,0.1);
  -webkit-mask:linear-gradient(to right,transparent 0%,black 6%,black 94%,transparent 100%);
  mask:linear-gradient(to right,transparent 0%,black 6%,black 94%,transparent 100%);
}
.pills-inner{display:flex;gap:8px;animation:pill-scroll 38s linear infinite;width:max-content}
@keyframes pill-scroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}
.pill{
  flex-shrink:0;display:flex;align-items:center;gap:6px;
  background:rgba(255,255,255,0.08);border:1px solid rgba(170,221,0,0.2);
  border-radius:100px;padding:5px 14px;
  font-size:12px;font-weight:500;color:rgba(170,221,0,0.48);white-space:nowrap;
}
.pill-dot{width:4px;height:4px;border-radius:50%;background:#AADD00;flex-shrink:0}

/* trust bar */
.hero-trust{
  position:relative;z-index:2;
  padding:12px 64px;font-size:12px;color:rgba(170,221,0,0.34);
  border-top:1px solid rgba(255,255,255,0.10);
  display:flex;align-items:center;gap:6px;
}
.hero-trust b{color:#AADD00;font-weight:600}

/* ── SHARED SECTION STYLES ── */
.sec{padding:96px 64px}
.container{max-width:1100px;margin:0 auto}
.eyebrow{font-size:11px;font-weight:600;letter-spacing:0.08em;text-transform:uppercase;color:#AADD00;margin-bottom:12px}
.sh2{font-size:clamp(26px,3.5vw,46px);font-weight:700;letter-spacing:-0.025em;line-height:1.1;margin-bottom:14px;color:#1a1a1a}
.sp{font-size:15px;color:var(--fg3);line-height:1.75;font-weight:400;max-width:500px}

/* ── ONE PLACE ── */
/* ── ONE PLACE — exact Magnific layout ── */
.one-place{
  /* Light cream bg exactly like Magnific's section bg */
  background:#f4f3ef;
  padding:96px 64px;
}
/* Centred heading — dark red-brown text on cream */
.op-head{text-align:center;margin-bottom:56px}
.op-head h2{
  font-size:clamp(32px,4.2vw,56px);font-weight:800;
  letter-spacing:-0.035em;line-height:1.05;
  color:var(--mkt0); /* #1a2200 — exact Magnific marketing foreground */
  margin-bottom:14px;
}
.op-head p{
  font-size:17px;color:var(--mkt1); /* #243000 slightly lighter */
  font-weight:400;line-height:1.6;
  opacity:0.65;
}

/* Tabs — pill container, white bg, active = black filled pill */
.op-tabs{
  display:flex;justify-content:center;margin-bottom:40px;
}
.op-tabs-inner{
  display:inline-flex;align-items:center;gap:2px;
  background:#fff;border-radius:100px;
  padding:4px;
  box-shadow:0 1px 4px rgba(0,0,0,0.08);
}
.op-tab{
  font-size:14px;font-weight:500;padding:9px 22px;border-radius:100px;
  border:none;color:var(--fg3);background:transparent;
  cursor:pointer;transition:all .2s;letter-spacing:-0.01em;
}
.op-tab.active{background:#AADD00;color:#0a0f00;font-weight:600;}
.op-tab:not(.active):hover{color:var(--mkt0);}

/* Big dark card — exactly like Magnific's feature card */
.op-bigblock{
  background:#101010;
  border-radius:20px;
  overflow:hidden;
  position:relative;
  min-height:460px;
}
/* Each panel fills the block; only .active is visible */
.op-panel{
  display:none;
  grid-template-columns:300px 1fr;
}
.op-panel.active{
  display:grid;
}
/* Left column — vertical nav list of services */
.op-left-nav{
  padding:40px 32px;
  display:flex;flex-direction:column;gap:0;
  border-right:1px solid rgba(255,255,255,0.08);
}
.op-nav-item{
  display:flex;align-items:flex-start;gap:14px;
  padding:18px 0;
  border-bottom:1px solid rgba(255,255,255,0.08);
  cursor:pointer;position:relative;
  transition:opacity .2s;
}
.op-nav-item:last-child{border-bottom:none}
.op-nav-item.inactive{opacity:0.45}
.op-nav-item.inactive:hover{opacity:0.75}
.op-nav-icon{
  width:28px;height:28px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;margin-top:2px;
}
.op-nav-icon svg{width:18px;height:18px;stroke:#f5f5f5;fill:none;stroke-width:1.5}
.op-nav-text{}
.op-nav-title{
  font-size:17px;font-weight:700;color:var(--fg0);
  letter-spacing:-0.02em;line-height:1.2;margin-bottom:4px;
}
.op-nav-item.inactive .op-nav-title{font-weight:500}
.op-nav-desc{font-size:13px;color:var(--fg3);line-height:1.55}
/* White underline bar on active item */
.op-nav-bar{
  position:absolute;bottom:0;left:0;
  height:2px;width:160px;
  background:#AADD00;border-radius:2px;
  opacity:0;transition:opacity .2s;
}
.op-nav-item.active .op-nav-bar{opacity:1;background:#AADD00}

/* Right side — image/visual fills the card */
.op-right-visual{
  position:relative;overflow:hidden;
  background:#101010;
  display:flex;align-items:center;justify-content:center;
}
.op-right-visual img{
  width:100%;height:100%;object-fit:cover;opacity:0.85;
}
/* Floating UI overlay — like Magnific's tool panel */
.op-ui-overlay{
  position:absolute;bottom:28px;right:28px;
  background:#121600;border:1px solid rgba(170,221,0,0.2);
  border-radius:12px;padding:16px;width:240px;
  box-shadow:0 8px 32px rgba(0,0,0,0.4);
}
.op-ui-row{
  display:flex;align-items:center;gap:12px;
  padding:10px 0;border-bottom:1px solid rgba(170,221,0,0.1);
}
.op-ui-row:last-child{border-bottom:none}
.op-ui-icon{
  width:32px;height:32px;border-radius:7px;
  background:rgba(255,255,255,0.07);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.op-ui-icon svg{width:16px;height:16px;stroke:rgba(170,221,0,0.84);fill:none;stroke-width:1.5}
.op-ui-label{font-size:13px;font-weight:600;color:#f5f5f5;margin-bottom:2px}
.op-ui-sub{font-size:11px;color:rgba(170,221,0,0.48)}

/* link arrow — used across sections */
.link-arrow{
  font-size:13px;font-weight:700;color:#1a1a1a;
  display:inline-flex;align-items:center;gap:6px;transition:gap .15s;
  margin-top:16px;
}
.link-arrow:hover{gap:10px;color:#AADD00}

/* ── STANDARDS STRIP ── */
/* ── STANDARDS / MODELS CAROUSEL — exact Magnific layout ── */
.std-strip{
  background:#ffffff; /* same cream as surrounding sections */
  padding:72px 0 80px;
  overflow:hidden;
}
.std-head{
  text-align:center;
  padding:0 64px;
  margin-bottom:48px;
}
.std-head h2{
  font-size:clamp(28px,3.8vw,48px);font-weight:800;
  letter-spacing:-0.03em;line-height:1.1;
  color:var(--mkt0);margin-bottom:14px;
}
.std-head p{
  font-size:17px;color:var(--mkt1);opacity:0.6;
  line-height:1.65;max-width:580px;margin:0 auto;
}
/* Carousel track — bleeds past both edges */
.std-carousel{
  overflow:hidden;
  /* no horizontal padding — bleed to edges */
  -webkit-mask:linear-gradient(to right,transparent 0%,black 6%,black 94%,transparent 100%);
  mask:linear-gradient(to right,transparent 0%,black 6%,black 94%,transparent 100%);
}
.std-track{
  display:flex;
  gap:12px;
  animation:std-scroll 28s linear infinite;
  width:max-content;
  align-items:stretch;
}
.std-track:hover{animation-play-state:paused}
@keyframes std-scroll{from{transform:translateX(0)}to{transform:translateX(-50%)}}
/* Individual cards — white, tall square, icon + name */
.std-card{
  flex-shrink:0;
  width:220px;height:220px;
  background:#ffffff;
  border:1px solid rgba(44,0,0,0.08);
  border-radius:16px;
  display:flex;flex-direction:column;
  align-items:flex-start;justify-content:flex-end;
  padding:20px 22px;
  transition:border-color .2s;
  cursor:default;
}
.std-card:hover{border-color:rgba(44,0,0,0.2)}
.std-card-icon{
  width:28px;height:28px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:10px;opacity:0.7;
}
.std-card-icon svg{width:22px;height:22px;stroke:var(--mkt0);fill:none;stroke-width:1.4}
.std-card-name{
  font-size:15px;font-weight:600;
  color:var(--mkt0);letter-spacing:-0.01em;
}

/* ── BENTO (Start simple) ── */
/* ── BENTO — START SIMPLE — exact Magnific layout ── */
.bento-sec{
  background:#f4f3ef; /* cream — same as surrounding sections */
  padding:96px 64px;
}
/* Header: left-aligned title, black CTA button top-right */
.bento-header{
  display:flex;align-items:flex-start;justify-content:space-between;
  margin-bottom:48px;flex-wrap:wrap;gap:20px;
  max-width:1100px;
}
.bento-header-left h2{
  font-size:clamp(28px,4vw,52px);font-weight:800;
  letter-spacing:-0.035em;line-height:1.05;
  color:var(--mkt0);margin-bottom:12px;
}
.bento-header-left p{
  font-size:16px;color:var(--mkt1);opacity:0.6;line-height:1.6;
}
/* Black pill CTA button — top right */
.bento-header-cta{
  font-size:14px;font-weight:600;color:#f5f5f5;background:#1a1a1a;border:none;border-radius:10px;
  padding:13px 24px;white-space:nowrap;
  display:inline-flex;align-items:center;gap:8px;
  transition:background .15s;flex-shrink:0;margin-top:4px;
}
.bento-header-cta:hover{background:#2b2b2b}

/* 3-column bento grid — equal columns, tall height */
.bento-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  max-width:1100px;
  min-height:500px;
}

/* ── CARD 1: Light grey — tools picker ── */
.bc1{
  background:#e8e8e4;
  border-radius:18px;overflow:hidden;
  display:flex;flex-direction:column;
  padding:28px 28px 0;
}
.bc1 h3{
  font-size:20px;font-weight:700;letter-spacing:-0.02em;
  color:#1a1a1a;margin-bottom:10px;line-height:1.25;
}
.bc1 p{font-size:13px;color:#555;line-height:1.7;margin-bottom:20px}
/* Filter tabs inside card — black active pill */
.bc1-tabs{display:flex;gap:4px;margin-bottom:16px;flex-wrap:wrap}
.bc1-tab{
  font-size:12px;font-weight:600;padding:6px 14px;border-radius:100px;
  border:none;cursor:pointer;transition:all .15s;letter-spacing:0.04em;
  text-transform:uppercase;
}
.bc1-tab.active{background:#AADD00;color:#0a0f00}
.bc1-tab:not(.active){background:transparent;color:#888}
.bc1-tab:not(.active):hover{color:#1a1a1a}
/* 2×2 image grid fills bottom of card */
.bc1-grid{
  flex:1;display:grid;grid-template-columns:1fr 1fr;gap:6px;
  align-items:end;
}
.bc1-img{
  border-radius:10px;overflow:hidden;position:relative;
  background-size:cover;background-position:center;
  aspect-ratio:1;
}
.bc1-img-label{
  position:absolute;bottom:8px;left:8px;
  display:flex;align-items:center;gap:5px;
  font-size:9px;font-weight:700;letter-spacing:0.06em;
  text-transform:uppercase;color:#fff;
}
.bc1-img-label svg{width:12px;height:12px;stroke:#fff;fill:none;stroke-width:1.5}

/* ── CARD 2: Dark red-brown — "whole team" ── */
.bc2{
  background:#243000;
  border-radius:18px;overflow:hidden;
  display:flex;flex-direction:column;
  padding:32px;position:relative;
}
.bc2 h3{
  font-size:22px;font-weight:700;letter-spacing:-0.02em;
  color:#fafafa;margin-bottom:14px;line-height:1.25;
}
.bc2 p{font-size:14px;color:rgba(200,230,140,0.8);line-height:1.7;margin-bottom:24px}
/* Two mini project cards stacked/overlapping at bottom */
.bc2-projects{
  flex:1;display:flex;align-items:flex-end;gap:10px;
  margin:0 -4px;
}
.bc2-project{
  flex:1;border-radius:12px;overflow:hidden;
  background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.13);
  padding:10px;
}
.bc2-proj-img{
  border-radius:8px;overflow:hidden;height:80px;
  background-size:cover;background-position:center;margin-bottom:8px;
}
.bc2-proj-label{
  font-size:9px;font-weight:700;letter-spacing:0.08em;
  text-transform:uppercase;color:rgba(170,221,0,0.84);
}

/* ── CARD 3: Dark teal/cyan — "workflow" ── */
.bc3{
  border-radius:18px;overflow:hidden;
  display:flex;flex-direction:column;
  padding:32px;position:relative;
  background:#2b2b2b;
}
.bc3 h3{
  font-size:22px;font-weight:700;letter-spacing:-0.02em;
  color:#fafafa;margin-bottom:14px;line-height:1.25;
}
.bc3 p{font-size:14px;color:rgba(200,230,140,0.8);line-height:1.7;margin-bottom:24px}
/* Large photo fills bottom, pill label overlaid */
.bc3-photo{
  flex:1;position:relative;border-radius:10px;overflow:hidden;
  min-height:200px;background-size:cover;background-position:center top;
}
/* "RUN APP" style pill overlay */
.bc3-pill{
  position:absolute;right:16px;top:50%;transform:translateY(-50%);
  border:2px solid #AADD00;border-radius:100px;
  padding:12px 24px;
  font-size:14px;font-weight:700;letter-spacing:0.06em;
  color:#fff;text-transform:uppercase;
  background:rgba(0,0,0,0.2);
  backdrop-filter:blur(4px);
  white-space:nowrap;
}

/* ── TOOLS GRID ── */
.tools-sec{background:#ffffff;padding:96px 64px}
.t-tabs{display:flex;gap:6px;margin-bottom:36px;flex-wrap:wrap}
.t-tab{
  font-size:13px;font-weight:500;padding:7px 18px;border-radius:100px;
  border:1px solid rgba(0,0,0,0.12);color:#666;background:transparent;transition:all .15s;
}
.t-tab.active,.t-tab:hover{background:#AADD00;border-color:#AADD00;color:#111}
.tools-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:10px;max-width:1100px}
.tc{
  background:#121600;border:1px solid rgba(255,255,255,0.08);border-radius:12px;
  padding:18px;cursor:pointer;transition:all .18s;
}
.tc:hover{border-color:rgba(255,255,255,0.25);background:#121600}
.tc-icon{
  width:34px;height:34px;border-radius:7px;
  background:rgba(255,255,255,0.07);border:1px solid rgba(255,255,255,0.08);
  display:flex;align-items:center;justify-content:center;margin-bottom:12px;
}
.tc-icon svg{width:16px;height:16px;stroke:#AADD00;fill:none;stroke-width:1.5}
.tc h4{font-size:13px;font-weight:600;margin-bottom:4px;color:#1a1a1a}
.tc p{font-size:11.5px;color:var(--fg3);line-height:1.6}
.tools-more{margin-top:20px;display:inline-flex;align-items:center;gap:6px;font-size:13px;font-weight:500;color:#AADD00;transition:color .15s}
.tools-more:hover{color:#CCEE44}

/* ── USE CASES — Magnific "From product shot" style ── */
.uc-sec{background:#101010;padding:96px 0}
.uc-head{
  padding:0 64px;margin-bottom:48px;
  display:flex;align-items:flex-end;justify-content:space-between;
  max-width:calc(1180px + 128px);margin-left:auto;margin-right:auto;
  flex-wrap:wrap;gap:20px;
}
.uc-head-left .eyebrow{color:#AADD00}
.uc-head-left h2{
  font-family:var(--fd);font-size:clamp(28px,3.5vw,48px);
  font-weight:700;letter-spacing:-0.025em;line-height:1.1;
  color:#f5f5f5;margin-top:8px;
}
.uc-head-right p{font-size:15px;color:var(--fg3);max-width:380px;line-height:1.7}
.uc-head-right a{
  display:inline-flex;align-items:center;gap:6px;margin-top:14px;
  font-size:13px;font-weight:600;color:#AADD00;transition:gap .15s;
}
.uc-head-right a:hover{gap:10px}
.uc-scroll{
  display:flex;gap:3px;overflow-x:auto;
  padding:0;scrollbar-width:none;
}
.uc-scroll::-webkit-scrollbar{display:none}
.uc-card{
  flex-shrink:0;width:420px;border-radius:0;
  overflow:hidden;position:relative;cursor:pointer;transition:transform .25s;
}
.uc-card:first-child{border-radius:12px 0 0 12px}
.uc-card:last-child{border-radius:0 12px 12px 0}
.uc-card:hover{transform:scale(1.015);z-index:2}
.uc-img{
  height:360px;position:relative;
  background-size:cover;background-position:center;
}
.uc-img::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(to bottom,rgba(0,0,0,0) 0%,rgba(0,0,0,0.2) 40%,rgba(0,0,0,0.85) 100%);
}
.uc-sector{
  position:absolute;bottom:88px;left:20px;z-index:2;
  font-size:10px;font-weight:700;letter-spacing:0.1em;
  text-transform:uppercase;color:rgba(255,255,255,0.55);
}
.uc-title-overlay{
  position:absolute;bottom:20px;left:20px;right:20px;z-index:2;
  font-family:var(--fd);font-size:20px;font-weight:700;
  color:#ffffff;line-height:1.25;letter-spacing:-0.01em;
}
.uc-body{
  padding:16px 20px;background:#161616;
  border-top:1px solid rgba(255,255,255,0.06);
}
.uc-body p{font-size:12px;color:var(--fg4);line-height:1.65}

/* ── DEMO / BROWSER ── */
.demo-sec{background:#ffffff;padding:80px 64px}
.demo-eyebrow{font-size:11px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:#AADD00;margin-bottom:8px}
.demo-title{font-size:clamp(20px,2.5vw,32px);font-weight:700;letter-spacing:-0.02em;margin-bottom:10px;color:#1a1a1a}
.demo-sub{font-size:14px;color:#666;max-width:480px;line-height:1.7;margin-bottom:32px}
.browser{border-radius:14px;overflow:hidden;border:1px solid rgba(170,221,0,0.2);max-width:1100px}
.browser-bar{
  background:#121600;padding:10px 16px;
  display:flex;align-items:center;gap:10px;
  border-bottom:1px solid rgba(170,221,0,0.1);
}
.bdots{display:flex;gap:5px}
.bd{width:11px;height:11px;border-radius:50%}
.bd.r{background:#ff5f57}.bd.y{background:#febc2e}.bd.g{background:#28c840}
.burl{
  flex:1;background:#101010;border:1px solid rgba(255,255,255,0.08);border-radius:5px;
  padding:4px 12px;font-size:11px;color:var(--fg3);text-align:center;margin:0 10px;
}
.browser-content{height:360px;background:#101010;display:grid;grid-template-columns:200px 1fr}
.bs{border-right:1px solid rgba(170,221,0,0.2);padding:16px;display:flex;flex-direction:column;gap:4px}
.bs-section{font-size:9px;font-weight:700;letter-spacing:0.08em;text-transform:uppercase;color:var(--fg3);padding:8px 10px 6px}
.bni{
  padding:8px 10px;border-radius:7px;font-size:11.5px;display:flex;align-items:center;gap:8px;
  color:var(--fg3);transition:all .15s;cursor:pointer;
}
.bni:hover{background:rgba(255,255,255,0.08);color:#AADD00}
.bni.active{background:rgba(170,221,0,0.1);color:#AADD00;font-weight:600}
.bni svg{width:13px;height:13px;stroke:currentColor;fill:none;stroke-width:1.5;flex-shrink:0}
.bm{padding:20px;display:flex;flex-direction:column;gap:12px;overflow:hidden}
.bm-title{font-size:13px;font-weight:700;color:var(--fg0);margin-bottom:2px}
.bm-sub{font-size:10.5px;color:var(--fg3);margin-bottom:10px}
.stats4{display:grid;grid-template-columns:repeat(4,1fr);gap:8px;margin-bottom:4px}
.stat-box{background:#121600;border:1px solid rgba(170,221,0,0.2);border-radius:8px;padding:10px}
.stat-box .sv{font-size:17px;font-weight:800;line-height:1}
.stat-box .sl{font-size:9.5px;color:var(--fg3);margin-top:3px}
.stat-box .sc{font-size:9px;margin-top:2px}
.sc-g{color:#4ade80}.sc-r{color:#f87171}
.chart-area{flex:1;background:#121600;border:1px solid rgba(170,221,0,0.2);border-radius:8px;padding:12px}
.chart-lbl{font-size:9.5px;color:var(--fg3);margin-bottom:8px}
.bars{display:flex;align-items:flex-end;gap:5px;height:72px}
.bar{flex:1;border-radius:2px 2px 0 0;transition:opacity .2s}
.bar:hover{opacity:.75}
.bar-labels{display:flex;gap:5px;margin-top:4px}
.bar-labels span{flex:1;font-size:8.5px;color:var(--fg3);text-align:center}

/* ── TEAMS ── */
.teams-sec{background:#f4f3ef;padding:96px 64px}
.teams-cards{display:grid;grid-template-columns:1fr 1fr;gap:12px;max-width:1100px;margin-bottom:32px}
.team-card{
  border-radius:16px;padding:40px;border:1px solid rgba(0,0,0,0.09);
  display:flex;flex-direction:column;justify-content:space-between;min-height:260px;
}
.team-card.biz{background:#121600;border-color:rgba(255,255,255,0.08)}
.team-card.ent{background:rgba(255,255,255,0.05);border-color:rgba(255,255,255,0.16)}
.team-card .tier{font-size:11px;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:#AADD00;margin-bottom:12px}
.team-card h3{font-size:clamp(18px,2.2vw,26px);font-weight:700;letter-spacing:-0.02em;line-height:1.2;margin-bottom:12px;max-width:380px;color:#1a1a1a}
.team-card p{font-size:13px;color:#666;line-height:1.7;margin-bottom:22px;max-width:380px}
.team-btn{
  display:inline-flex;align-items:center;gap:7px;
  font-size:13px;font-weight:600;color:var(--fg0);
  border:1px solid rgba(255,255,255,0.25);border-radius:8px;padding:9px 18px;
  background:transparent;transition:all .15s;width:fit-content;
}
.team-btn:hover{background:rgba(0,0,0,0.05)}
.team-btn.prim{background:#AADD00;color:#111;border-color:#AADD00}
.team-btn.prim:hover{background:#CCEE44}
/* ent features grid */
.ent-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;max-width:1100px;margin-top:8px}
.ef{background:#121600;border:1px solid rgba(255,255,255,0.08);border-radius:12px;padding:20px}
.ef h5{font-size:13px;font-weight:600;margin-bottom:6px;color:#1a1a1a}
.ef p{font-size:12px;color:#666;line-height:1.65}
/* cert badges */
.certs{display:flex;gap:8px;flex-wrap:wrap;margin-top:24px;max-width:1100px}
.cert{
  display:flex;align-items:center;gap:6px;
  background:rgba(255,255,255,0.08);border:1px solid rgba(170,221,0,0.2);border-radius:100px;
  padding:6px 14px;font-size:11px;font-weight:500;color:#AADD00;
}
.cert-dot{width:5px;height:5px;border-radius:50%;background:#AADD00}

/* ── TESTIMONIALS ── */
.testi-sec{background:#ffffff;padding:80px 64px}
.testi-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:10px;max-width:1100px;margin:0 auto}
.tcard{background:#121600;border:1px solid rgba(255,255,255,0.08);border-radius:14px;padding:26px}
.tcard q{
  font-size:13.5px;color:rgba(200,230,140,0.8);line-height:1.75;
  display:block;margin-bottom:20px;font-style:italic;quotes:none;
}
.tcard q::before{content:'\201C';font-size:24px;color:#AADD00;line-height:0;vertical-align:-10px;margin-right:3px;font-style:normal}
.tauth{display:flex;align-items:center;gap:10px}
.tav{
  width:34px;height:34px;border-radius:50%;flex-shrink:0;
  background:rgba(255,255,255,0.08);border:1px solid rgba(170,221,0,0.2);
  display:flex;align-items:center;justify-content:center;
  font-size:10px;font-weight:800;color:var(--fg2);
}
.tname{font-size:12.5px;font-weight:600;color:var(--fg0)}
.trole{font-size:11px;color:#888;margin-top:2px}

/* ── PRICING ── */
.price-sec{background:#101010;padding:96px 64px}
.price-toggle{display:flex;align-items:center;gap:8px;margin-top:8px;font-size:12.5px;color:var(--fg3)}
.toggle{
  width:36px;height:20px;border-radius:10px;background:#2b2b2b;
  border:1px solid rgba(170,221,0,0.2);position:relative;cursor:pointer;
  flex-shrink:0;
}
.toggle::after{
  content:'';position:absolute;width:14px;height:14px;background:var(--fg0);
  border-radius:50%;top:2px;right:2px;transition:transform .2s;
}
.toggle.on{background:#AADD00}
.toggle.on::after{transform:translateX(-16px)}
.save-badge{
  background:rgba(255,255,255,0.10);color:#AADD00;
  font-size:10px;font-weight:700;padding:2px 8px;border-radius:4px;letter-spacing:.04em;
}
.price-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;max-width:1100px;margin-top:44px}
.pc{background:#121600;border:1px solid rgba(170,221,0,0.2);border-radius:16px;padding:28px;position:relative}
.pc.feat{border-color:#AADD00;background:rgba(255,255,255,0.06)}
.pc-pop{
  position:absolute;top:-11px;left:50%;transform:translateX(-50%);
  background:#AADD00;color:#111;font-size:10px;font-weight:700;
  padding:3px 13px;border-radius:100px;letter-spacing:.05em;white-space:nowrap;
}
.pc-name{font-size:15px;font-weight:700;margin-bottom:5px;color:var(--fg0)}
.pc-for{font-size:12px;color:var(--fg3);line-height:1.55;margin-bottom:18px}
.pc-price{font-size:32px;font-weight:800;line-height:1;margin-bottom:3px;color:var(--fg0);letter-spacing:-0.02em}
.pc-price sub{font-size:13px;font-weight:400;color:var(--fg3)}
.pc-per{font-size:11px;color:var(--fg3);margin-bottom:22px}
.pc-btn{
  display:block;width:100%;padding:10px;border-radius:8px;
  font-size:13px;font-weight:600;text-align:center;
  border:1px solid rgba(170,221,0,0.2);color:var(--fg0);background:transparent;
  margin-bottom:20px;transition:all .15s;
}
.pc.feat .pc-btn{background:#AADD00;color:#111;border-color:#AADD00}
.pc-btn:hover{background:rgba(255,255,255,0.08)}
.pc.feat .pc-btn:hover{background:#CCEE44}
.pc-div{height:1px;background:rgba(170,221,0,0.2);margin-bottom:16px}
.pc-feats{list-style:none;display:flex;flex-direction:column;gap:7px}
.pc-feats li{font-size:12px;color:var(--fg3);display:flex;align-items:flex-start;gap:8px;line-height:1.5}
.pc-feats li::before{content:'';flex-shrink:0;width:4px;height:4px;border-radius:50%;background:#AADD00;margin-top:7px}

/* ── FAQ ── */
.faq-sec{background:#f4f3ef;padding:80px 64px}
.faq-inner{max-width:760px;margin:0 auto}
.faq-support{text-align:center;margin-bottom:28px;margin-top:6px}
.faq-support a{
  font-size:12.5px;font-weight:500;color:var(--fg3);
  border:1px solid rgba(170,221,0,0.2);border-radius:100px;padding:7px 18px;
  display:inline-block;transition:all .15s;
}
.faq-support a:hover{background:rgba(170,221,0,0.1);border-color:rgba(170,221,0,0.3);color:#AADD00}
.faq-item{border-bottom:1px solid rgba(170,221,0,0.2)}
.faq-q{
  display:flex;align-items:center;justify-content:space-between;
  padding:18px 0;gap:14px;cursor:pointer;
  font-size:14px;font-weight:600;line-height:1.45;color:#1a1a1a;
}
.faq-ic{
  flex-shrink:0;width:20px;height:20px;border-radius:50%;
  border:1px solid rgba(170,221,0,0.2);
  display:flex;align-items:center;justify-content:center;
  font-size:14px;color:var(--fg3);transition:transform .2s,border-color .15s;line-height:1;
}
.faq-item.open .faq-ic{transform:rotate(45deg);border-color:#AADD00;color:#AADD00}
.faq-a{font-size:13.5px;color:var(--fg3);line-height:1.78;padding-bottom:18px;display:none}
.faq-item.open .faq-a{display:block}

/* ── CTA ── */
/* ── CTA — dark red-brown with glow, large centred type ── */
.cta-sec{
  padding:130px 64px;text-align:center;
  position:relative;overflow:hidden;
  background:var(--mkt0);
}
.cta-bg{
  position:absolute;inset:0;
  background:url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1600&q=80') center 40%/cover;
  opacity:0.07;
}
.cta-glow{
  position:absolute;bottom:-80px;left:50%;transform:translateX(-50%);
  width:900px;height:520px;
  background:radial-gradient(ellipse, rgba(36,48,0,0.95) 0%, transparent 70%);
  pointer-events:none;
}
.cta-in{position:relative;z-index:1}
.cta-in h2{
  font-size:clamp(56px,8vw,104px);font-weight:800;
  letter-spacing:-0.045em;line-height:0.95;
  margin-bottom:28px;color:#fafafa;
}
.cta-in p{
  font-size:17px;color:rgba(170,221,0,0.54);
  margin-bottom:44px;max-width:460px;
  margin-left:auto;margin-right:auto;
  line-height:1.72;font-weight:400;
}
.cta-btns{display:flex;justify-content:center;gap:10px;flex-wrap:wrap}

/* ── FOOTER — exact Magnific layout ── */
footer{
  background:#000;
  padding:72px 64px 32px;
  /* no top border — Magnific footer has none */
}
.fg{
  display:grid;
  /* Left brand column wider, then 4 equal link columns */
  grid-template-columns:1.8fr repeat(4,1fr);
  gap:48px;
  max-width:1100px;margin:0 auto 56px;
}
/* Brand column */
.f-logo-wrap{}
.f-logo-wrap .n-logo{margin-bottom:20px}
.f-logo-wrap p{
  font-size:14px;color:rgba(170,221,0,0.54);
  line-height:1.75;max-width:260px;margin-bottom:20px;
}
/* Language pill — like Magnific's "English ▾" */
.f-lang-btn{
  display:inline-flex;align-items:center;gap:7px;
  font-size:13px;font-weight:500;color:#AADD00;
  border:1px solid rgba(170,221,0,0.2);border-radius:100px;
  padding:8px 16px;background:transparent;cursor:pointer;
  transition:all .15s;
}
.f-lang-btn:hover{color:#AADD00;border-color:rgba(170,221,0,0.2)}
.f-lang-btn svg{width:14px;height:14px;stroke:currentColor;fill:none;stroke-width:1.5}
/* Link columns */
.fc{}
/* Column heading — pink exactly like Magnific */
.fc h5{
  font-size:14px;font-weight:600;
  color:#AADD00; /* Magnific's exact emphasis/pink */
  margin-bottom:18px;letter-spacing:0;text-transform:none;
}
.fc a{
  display:block;font-size:14px;
  color:var(--fg3);
  margin-bottom:12px;transition:color .15s;
}
.fc a:hover{color:#AADD00}
/* Footer bottom — just copyright, no divider on Magnific */
.footer-bottom{
  max-width:1100px;margin:0 auto;
  padding-top:24px;
  border-top:1px solid rgba(170,221,0,0.2);
  font-size:13px;color:rgba(170,221,0,0.36);
}

/* ── RESPONSIVE ── */
@media(max-width:1024px){
  nav{padding:0 20px}
  .n-links{display:none}
  .sec,.bento-sec,.tools-sec,.uc-sec,.demo-sec,.teams-sec,.testi-sec,.price-sec,.faq-sec,.cta-sec,footer,
  .one-place{padding:60px 20px} .std-strip{padding-left:0;padding-right:0}
  .hero-body{padding:100px 20px 32px;flex-direction:column;justify-content:flex-end;gap:32px;min-height:auto}
  .hero-left{padding:0;max-width:100%}
  .hero-trust{padding-left:20px;padding-right:20px}
  .op-bigblock{grid-template-columns:1fr}
  .op-sub4{grid-template-columns:1fr 1fr}
  .bento-grid{grid-template-columns:1fr} .bc1,.bc2,.bc3{min-height:auto}
  .bc.tall,.bc.wide{grid-column:1;grid-row:auto}
  .tools-grid{grid-template-columns:1fr 1fr}
  .uc-head{grid-template-columns:1fr;padding-left:20px;padding-right:20px}
  .uc-scroll{padding-left:20px;padding-right:20px;mask:none;-webkit-mask:none}
  .teams-cards{grid-template-columns:1fr}
  .ent-grid{grid-template-columns:1fr 1fr}
  .testi-grid{grid-template-columns:1fr}
  .price-grid{grid-template-columns:1fr}
  .fg{grid-template-columns:1fr 1fr}
  .bento-header{flex-direction:column} .bento-header-left h2{font-size:32px}
}
@media(max-width:580px){
  .op-sub4{grid-template-columns:1fr}
  .tools-grid{grid-template-columns:1fr}
  .ent-grid{grid-template-columns:1fr}
  .hero-right{display:none}
}

/* ═══════════════════════════════════════
   BRAND COLOR — #AADD00 applied globally
   Text accents · UI accents · Bg tints
   ═══════════════════════════════════════ */

/* ── TEXT ACCENTS ── */
.eyebrow,
.sec-eyebrow,
.demo-eyebrow,
.bc-nav-item .op-nav-num,
.uc-sector,
.testi-stars span,
.plan-feats li::before,
.op-nav-bar,
.vis-badge,
.save-badge,
.std-card-name,
.badge-link,
.link-arrow,
.tools-more,
.hero-trust b,
.faq-support a,
.tier,
.bc2-proj-label,
.bc1-img-label { color: #AADD00; }

/* ── BACKGROUNDS — filled ── */
.n-cta,
.btn-hero-main,
.bento-header-cta,
.bc1-tab.active,
.op-tab.active,
.t-tab.active,
.t-tab:hover,
.pc.feat .pc-btn,
.team-btn.prim,
.pc-pop { background: #AADD00; color: #111111; }

/* ── BACKGROUNDS — tint ── */
.hero-badge { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); }
.vis-badge  { background: rgba(170,221,0,0.14); color: #AADD00; }
.save-badge { background: rgba(170,221,0,0.14); color: #AADD00; }
.cert       { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.13); }
.pc.feat    { border-color: rgba(170,221,0,0.5); background: rgba(255,255,255,0.06); }
.team-card.ent { border-color: rgba(255,255,255,0.18); background: rgba(255,255,255,0.04); }
.ef         { border-color: rgba(170,221,0,0.8); }
.op-nav-item.active .op-nav-bar { background: #AADD00; opacity: 1; }
.bc3        { background: #0f1a00; } /* very dark AADD00-tinted card */
.bc3 h3, .bc3 p { color: #f5f5f5; }
.bc3-pill   { border-color: #AADD00; color: #AADD00; }

/* ── BORDERS ── */
.badge-link { border-left-color: rgba(255,255,255,0.16); }
.op-nav-item.active { border-left: 2px solid #AADD00; padding-left: 10px; }
.cycle-indicator { border-left-color: #AADD00; }

/* ── HOVER STATES ── */
.n-cta:hover          { background: #CCEE44; }
.btn-hero-main:hover  { background: #CCEE44; }
.bento-header-cta:hover { background: #CCEE44; }
.pc.feat .pc-btn:hover  { background: #CCEE44; }
.team-btn.prim:hover    { background: #CCEE44; }
.badge-link:hover { color: #CCEE44; }
.link-arrow:hover { color: #CCEE44; }
.tools-more:hover { color: #AADD00; }
.t-tab:hover { background: #AADD00; border-color: #AADD00; color: #111; }

/* ── INTERACTIVE STATES ── */
.faq-item.open .faq-ic { border-color: #AADD00; color: #AADD00; }
.tc:hover .tc-icon svg  { stroke: #AADD00; }
.tc:hover .tc-icon      { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.16); }
.svc-card:hover         { border-color: rgba(255,255,255,0.22); }
.svc-card::after        { background: #AADD00; }
.uc-card:hover          { border-color: rgba(170,221,0,0.4); }
.std-card:hover         { border-color: rgba(170,221,0,0.3); }

/* ── SVG / ICON STROKES ── */
.bc-icon svg    { stroke: #AADD00; }
.bc-icon        { background: rgba(170,221,0,0.1); border-color: rgba(170,221,0,0.2); }
.cert-dot       { background: #AADD00; }
.pill-dot       { background: #AADD00; }

/* ── BULLET DOTS ── */
.pc-feats li::before { background: #AADD00; }
.plan-feats li::before { background: #AADD00; }

/* ── TESTI QUOTE MARK ── */
.tcard q::before { color: #AADD00; }

/* ── STD STRIP CARD ICON ── */
.std-card-icon svg { stroke: #AADD00; }


/* Light section text overrides */
.tools-sec .sh2, .tools-sec .sec-p,
.demo-sec .sh2, .demo-sec .sec-p,
.testi-sec .sh2, .testi-sec .sec-p,
.uc-sec .sh2, .uc-sec .sec-p { color: #1a1a1a; }
.tools-sec .eyebrow, .demo-sec .eyebrow,
.testi-sec .eyebrow, .uc-sec .eyebrow { color: #AADD00; }
.tools-sec .sec-p, .demo-sec .sec-p,
.testi-sec .sec-p, .uc-sec .sec-p { color: #666; }
.teams-sec .sh2 { color: #1a1a1a; }
.teams-sec .sec-p, .teams-sec .eyebrow { color: #AADD00; }

/* UC card body on cream */
.uc-body { background: #ffffff; }
.uc-body h4 { color: #1a1a1a; }
.uc-body p { color: #666; }
.uc-card { border-color: rgba(0,0,0,0.08); }
.uc-card:hover { border-color: rgba(170,221,0,0.5); }

/* Sub4 cards on cream */
.sub4-card { background: #ffffff; border-color: rgba(0,0,0,0.08); }
.sub4-card h4 { color: #1a1a1a; }
.sub4-card p { color: #666; }
.sub4-card:hover { border-color: rgba(170,221,0,0.4); }

/* sh2 on dark sections stays white */
.uc-sec .sh2, .uc-head h2,
.demo-sec .sh2,
.cta-sec .sh2 { color: var(--fg0); }

/* eyebrow on light sections */
.one-place .eyebrow,
.std-strip .sec-label,
.bento-sec .eyebrow,
.tools-sec .eyebrow,
.uc-sec .eyebrow,
.teams-sec .eyebrow,
.faq-sec .eyebrow { color: #AADD00; }

/* sp (sub paragraph) on light sections */
.one-place .sp, .bento-sec .sp,
.tools-sec .sp, .uc-sec .sp,
.teams-sec .sp, .faq-sec .sp { color: #666; }

/* sp on dark sections stays light */
.demo-sec .sp { color: var(--fg3); }

/* ═══════════════════════════════════════
   POLISH PASS — Micro-interactions & Mobile
   ═══════════════════════════════════════ */

/* Smooth scroll behavior + Better selection */
html{scroll-behavior:smooth}
::selection{background:#AADD00;color:#111}

/* ── BUTTON MICRO-INTERACTIONS ── */
.btn-hero-main,.btn-hero-ghost,.n-cta,.n-ghost,
.team-btn,.pc-btn,.tools-more,.faq-support a,
.bento-header-cta,.cta-btn-pill{
  position:relative;
  transition:all .25s cubic-bezier(0.4,0,0.2,1);
}
.btn-hero-main:hover,.n-cta:hover{
  transform:translateY(-1px);
  box-shadow:0 8px 24px rgba(170,221,0,0.3);
}
.btn-hero-main:active,.n-cta:active{
  transform:translateY(0);
}
.btn-hero-ghost:hover{
  transform:translateY(-1px);
  border-color:rgba(255,255,255,0.45);
}
.team-btn:hover{
  transform:translateY(-1px);
}

/* ── NAV LINK INTERACTIONS ── */
.n-links a{
  position:relative;
  transition:color .25s ease;
}
.n-links a::after{
  content:'';
  position:absolute;
  bottom:0;left:50%;
  width:0;height:2px;
  background:#AADD00;
  transition:all .25s ease;
  transform:translateX(-50%);
  border-radius:2px;
}
.n-links a:hover::after{width:60%}
.n-links a:hover{background:transparent}

/* ── CARD HOVER LIFTS ── */
.bc,.sub4-card,.tc,.tcard,.ef,.bc1,.bc2,.bc3{
  transition:all .3s cubic-bezier(0.4,0,0.2,1);
}
.bc:hover,.sub4-card:hover,.ef:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 32px rgba(0,0,0,0.08);
}
.tc:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 24px rgba(170,221,0,0.12);
}
.tcard:hover{
  transform:translateY(-2px);
  border-color:rgba(0,0,0,0.15);
}

/* ── HERO BADGE PULSE ── */
.hero-badge{
  transition:all .25s ease;
}
.hero-badge:hover{
  background:rgba(255,255,255,0.10);
  border-color:rgba(255,255,255,0.25);
}
.badge-link svg{
  transition:transform .25s ease;
}
.badge-link:hover svg{
  transform:translateX(3px);
}

/* ── CYCLE INDICATOR PULSE ── */
.cycle-indicator{
  animation:cyclePulse 2s ease-in-out infinite;
}
@keyframes cyclePulse{
  0%,100%{transform:translateY(-50%) scale(1);opacity:1}
  50%{transform:translateY(-50%) scale(1.1);opacity:0.85}
}

/* ── LINK ARROWS ── */
.link-arrow{
  transition:all .25s ease;
}
.link-arrow:hover{
  gap:12px;
}

/* ── FAQ INTERACTIONS ── */
.faq-item{
  transition:background .2s ease;
}
.faq-q{
  transition:all .2s ease;
}
.faq-q:hover{
  padding-left:6px;
}
.faq-q:hover .faq-ic{
  border-color:#AADD00;
  color:#AADD00;
}
.faq-ic{
  transition:all .25s cubic-bezier(0.4,0,0.2,1);
}

/* ── TAB SWITCHING ── */
.op-tab,.t-tab,.bc1-tab{
  transition:all .25s ease;
}
.op-tab:not(.active):hover{
  background:rgba(0,0,0,0.04);
}
.op-tab.active{
  box-shadow:0 4px 12px rgba(170,221,0,0.25);
}

/* ── ONE-PLACE NAV ITEMS ── */
.op-nav-item{
  transition:all .3s ease;
}
.op-nav-item:hover{
  padding-left:8px;
}
.op-nav-item.inactive:hover{
  opacity:0.75;
}
.op-nav-icon{
  transition:transform .3s ease;
}
.op-nav-item:hover .op-nav-icon{
  transform:scale(1.1);
}

/* ── USE CASE CARDS ── */
.uc-card{
  transition:all .35s cubic-bezier(0.4,0,0.2,1);
  overflow:hidden;
}
.uc-img{
  transition:transform .8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.uc-card:hover .uc-img{
  transform:scale(1.08);
}
.uc-card:hover{
  z-index:3;
}

/* ── TESTIMONIAL CARDS ── */
.tcard q::before{
  transition:transform .3s ease;
  display:inline-block;
}
.tcard:hover q::before{
  transform:translateY(-2px);
}

/* ── FOOTER LINKS ── */
.fc a{
  position:relative;
  transition:all .2s ease;
  display:inline-block;
}
.fc a:hover{
  color:#AADD00;
  transform:translateX(3px);
}
.f-lang-btn{
  transition:all .2s ease;
}
.f-lang-btn:hover{
  border-color:rgba(170,221,0,0.4);
  background:rgba(170,221,0,0.05);
}

/* ── PILL SCROLL STRIPS ── */
.pills-strip:hover .pills-inner{
  animation-play-state:paused;
}
.pill{
  transition:all .2s ease;
}
.pill:hover{
  background:rgba(255,255,255,0.08);
  color:rgba(255,255,255,0.65);
}

/* ── IMAGE ZOOM ON HOVER (use cases) ── */
.uc-title-overlay{
  transition:transform .35s ease;
}
.uc-card:hover .uc-title-overlay{
  transform:translateY(-3px);
}

/* ── BENTO CARD INTERACTIONS ── */
.bc3-pill{
  transition:all .3s ease;
}
.bc3:hover .bc3-pill{
  transform:translateY(-50%) scale(1.05);
  border-color:#AADD00;
  background:rgba(170,221,0,0.15);
}
.bc1-img{
  transition:transform .5s ease;
  overflow:hidden;
}
.bc1-img:hover{
  transform:scale(1.03);
}

/* ── PRICING CARDS ── */
.pc{
  transition:all .3s cubic-bezier(0.4,0,0.2,1);
}
.pc:hover{
  transform:translateY(-6px);
  box-shadow:0 16px 40px rgba(0,0,0,0.08);
}
.pc.feat:hover{
  box-shadow:0 16px 40px rgba(170,221,0,0.2);
}

/* ── CERT BADGES ── */
.cert{
  transition:all .2s ease;
  cursor:default;
}
.cert:hover{
  background:rgba(170,221,0,0.1);
  border-color:rgba(170,221,0,0.3);
  color:#1a1a1a;
}

/* ═══════════════════════════════════════
   MOBILE OPTIMISATION — Full responsive pass
   ═══════════════════════════════════════ */

/* Tablet & below */
@media (max-width: 1024px) {
  /* Nav */
  .n-links { display: none; }
  nav { padding: 0 18px; height: 64px; gap: 12px; }
  .n-logo svg { height: 32px !important; }
  .n-right { gap: 6px; }
  .n-ghost { display: none; }
  .n-cta { padding: 7px 14px; font-size: 12px; }

  /* Hero */
  .hero-body { padding: 100px 24px 40px !important; flex-direction: column; gap: 32px; min-height: auto; }
  .hero-left { padding: 0; max-width: 100%; text-align: center; align-items: center; }
  .hero-left .hero-badge { margin-left: auto; margin-right: auto; }
  .hero h1 { font-size: clamp(38px, 7vw, 56px) !important; }
  .hero-sub { font-size: 16px; margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-trust { padding: 14px 20px; font-size: 11.5px; text-align: center; }

  /* Sections */
  section { padding-left: 24px !important; padding-right: 24px !important; }
  .one-place, .bento-sec, .tools-sec, .uc-sec, .demo-sec,
  .teams-sec, .testi-sec, .faq-sec, .cta-sec, footer {
    padding-top: 64px !important; padding-bottom: 64px !important;
  }

  /* Section headings */
  .sh2, .op-head h2, .std-head h2, .bento-header-left h2 {
    font-size: clamp(26px, 5vw, 38px) !important;
  }

  /* One-place big block */
  .op-bigblock, .op-panel { grid-template-columns: 1fr !important; min-height: auto !important; }
  .op-left-nav { padding: 24px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .op-right-visual { min-height: 280px; }
  .op-ui-overlay { width: 220px; bottom: 16px; right: 16px; padding: 14px; }

  /* Bento */
  .bento-grid { grid-template-columns: 1fr !important; }
  .bento-header { flex-direction: column; align-items: stretch; }
  .bento-header-cta { align-self: flex-start; }

  /* Tools */
  .tools-grid { grid-template-columns: 1fr 1fr !important; gap: 10px; }
  .t-tabs { gap: 6px; }

  /* Use cases */
  .uc-head { padding: 0 24px; flex-direction: column; align-items: flex-start; gap: 24px; }
  .uc-scroll { padding: 0 24px; mask: none; -webkit-mask: none; gap: 12px; }
  .uc-card { width: 280px; }
  .uc-card:first-child, .uc-card:last-child { border-radius: 12px; }
  .uc-img { height: 280px; }

  /* Demo */
  .browser-content { grid-template-columns: 1fr; height: auto; }
  .bs { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); flex-direction: row; flex-wrap: wrap; overflow-x: auto; }
  .bs-section { display: none; }
  .bm { padding: 16px; }
  .stats4 { grid-template-columns: 1fr 1fr; }

  /* Teams */
  .teams-cards { grid-template-columns: 1fr; }
  .ent-grid { grid-template-columns: 1fr 1fr; }
  .team-card { padding: 28px; min-height: auto; }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr !important; max-width: 540px; margin: 0 auto; }

  /* FAQ */
  .faq-inner { max-width: 100%; }

  /* CTA */
  .cta-sec { padding: 80px 24px !important; }
  .cta-in h2 { font-size: clamp(42px, 9vw, 64px) !important; }
  .cta-btns { flex-direction: column; align-items: stretch; max-width: 320px; margin: 0 auto; }
  .cta-btns a { text-align: center; }

  /* Footer */
  .fg { grid-template-columns: 1fr 1fr !important; gap: 36px; }
  .f-logo-wrap { grid-column: 1 / -1; }
  footer { padding: 60px 24px 28px; }

  /* Cycle hide on tablet */
  .hero-right { display: none; }
}

/* Mobile */
@media (max-width: 640px) {
  nav { padding: 0 14px; height: 56px; }
  .n-logo svg { height: 28px !important; }
  .n-cta { padding: 6px 12px; font-size: 11px; }

  /* Hero refinements */
  .hero-body { padding: 90px 18px 32px !important; }
  .hero h1 { font-size: 36px !important; line-height: 1.05; letter-spacing: -0.03em; }
  .hero-sub { font-size: 15px; line-height: 1.6; }
  .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; margin: 0 auto; }
  .hero-ctas a { text-align: center; justify-content: center; }
  .hero-badge { padding: 0; }
  .badge-label, .badge-link { font-size: 11px; padding: 5px 12px; }
  .pills-strip { padding: 12px 0; }
  .pill { font-size: 11px; padding: 4px 11px; }

  /* All sections compact */
  section { padding-left: 18px !important; padding-right: 18px !important; }
  .one-place, .bento-sec, .tools-sec, .uc-sec, .demo-sec,
  .teams-sec, .testi-sec, .faq-sec {
    padding-top: 48px !important; padding-bottom: 48px !important;
  }

  /* Headings */
  .sh2, .op-head h2, .std-head h2, .bento-header-left h2 {
    font-size: clamp(24px, 7vw, 32px) !important;
    letter-spacing: -0.025em;
  }
  .sp, .op-head p, .bento-header-left p { font-size: 14px; }
  .eyebrow { font-size: 10px; letter-spacing: 0.1em; }

  /* One-place */
  .op-tabs-inner { flex-wrap: wrap; padding: 3px; }
  .op-tab { padding: 7px 14px; font-size: 12px; }
  .op-bigblock { border-radius: 14px; }
  .op-left-nav { padding: 20px 18px; gap: 0; }
  .op-nav-item { padding: 14px 0; }
  .op-nav-title { font-size: 15px; }
  .op-nav-desc { font-size: 12px; }
  .op-right-visual { min-height: 220px; }
  .op-ui-overlay { width: 100%; max-width: calc(100% - 32px); left: 16px; right: 16px; bottom: 12px; padding: 12px; }
  .op-ui-row { padding: 8px 0; gap: 10px; }
  .op-ui-label { font-size: 12px; }
  .op-ui-sub { font-size: 10px; }

  /* Sub4 cards */
  .op-sub4 { grid-template-columns: 1fr !important; gap: 10px; }

  /* Bento single column */
  .bento-grid { gap: 12px; }
  .bc1, .bc2, .bc3 { padding: 24px; min-height: auto; }
  .bc1 h3, .bc2 h3, .bc3 h3 { font-size: 18px; }
  .bc1 p, .bc2 p, .bc3 p { font-size: 13px; }
  .bc1-tabs { gap: 3px; }
  .bc1-tab { padding: 5px 11px; font-size: 11px; }
  .bc3-pill { font-size: 12px; padding: 10px 18px; }
  .bento-header-cta { width: 100%; text-align: center; justify-content: center; }

  /* Tools */
  .tools-grid { grid-template-columns: 1fr !important; }
  .tc { padding: 16px; }

  /* Use cases */
  .uc-head { padding: 0 18px; }
  .uc-scroll { padding: 0 18px; gap: 10px; }
  .uc-card { width: 240px; }
  .uc-img { height: 240px; }
  .uc-title-overlay { font-size: 16px; bottom: 16px; left: 16px; right: 16px; }
  .uc-sector { bottom: 78px; left: 16px; font-size: 9px; }

  /* Demo */
  .demo-title { font-size: 22px !important; }
  .browser { border-radius: 10px; }
  .browser-bar { padding: 8px 12px; }
  .burl { font-size: 10px; margin: 0 6px; }
  .stats4 { grid-template-columns: 1fr 1fr; gap: 6px; }
  .stat-box { padding: 8px; }
  .stat-box .sv { font-size: 16px; }
  .stat-box .sl { font-size: 9px; }
  .bars { height: 60px; }
  .bar-labels span { font-size: 7px; }

  /* Teams */
  .ent-grid { grid-template-columns: 1fr; }
  .team-card { padding: 24px; }
  .team-card h3 { font-size: 19px !important; }
  .certs { gap: 6px; }
  .cert { padding: 5px 11px; font-size: 10px; }

  /* Testimonials */
  .tcard { padding: 22px; }
  .tcard q { font-size: 13px; }

  /* FAQ */
  .faq-q { font-size: 13.5px; padding: 16px 0; gap: 12px; }
  .faq-ic { width: 22px; height: 22px; font-size: 14px; flex-shrink: 0; }
  .faq-a { font-size: 13px; line-height: 1.7; }
  .faq-support { margin-bottom: 20px; }

  /* CTA */
  .cta-sec { padding: 72px 20px !important; }
  .cta-in h2 { font-size: 48px !important; line-height: 0.95; }
  .cta-in p { font-size: 15px; max-width: 100%; }

  /* Footer */
  .fg { grid-template-columns: 1fr !important; gap: 32px; margin-bottom: 32px; }
  .f-logo-wrap { grid-column: auto; }
  .fc h5 { font-size: 13px; margin-bottom: 14px; }
  .fc a { font-size: 13px; margin-bottom: 10px; }
  footer { padding: 48px 18px 24px; }
  .footer-bottom { padding-top: 20px; font-size: 12px; text-align: center; }
}

/* Very small phones */
@media (max-width: 380px) {
  .hero h1 { font-size: 32px !important; }
  .cta-in h2 { font-size: 40px !important; }
  .uc-card { width: 220px; }
  .uc-img { height: 220px; }
}

/* ── Reduce motion for accessibility ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .cycle-track { transition: none !important; }
  .pills-inner, .std-track { animation: none !important; }
}

/* ── Focus states for accessibility ── */
button:focus-visible, a:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid #AADD00;
  outline-offset: 2px;
  border-radius: 6px;
}

/* ── Loading shimmer for images ── */
.uc-img, .bc1-img, .bc2-proj-img, .bc3-photo {
  background-color: #1a1a1a;
}

/* ── MOBILE HAMBURGER & DRAWER ── */
.mobile-toggle{
  display:none;
  background:transparent;border:none;cursor:pointer;
  width:32px;height:32px;
  flex-direction:column;justify-content:center;align-items:center;gap:5px;
  padding:0;
}
.mobile-toggle span{
  display:block;width:20px;height:2px;
  background:#f5f5f5;border-radius:2px;
  transition:all .3s cubic-bezier(0.4,0,0.2,1);
}
.mobile-toggle.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.mobile-toggle.open span:nth-child(2){opacity:0}
.mobile-toggle.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

.mobile-drawer{
  position:fixed;top:72px;left:0;right:0;bottom:0;
  background:rgba(9,12,0,0.98);backdrop-filter:blur(20px);
  z-index:190;
  padding:32px 24px 40px;
  overflow-y:auto;
  opacity:0;visibility:hidden;
  transform:translateY(-10px);
  transition:all .3s cubic-bezier(0.4,0,0.2,1);
}
.mobile-drawer.open{
  opacity:1;visibility:visible;transform:translateY(0);
}
.mobile-nav-list{
  list-style:none;display:flex;flex-direction:column;gap:2px;
  margin-bottom:32px;
}
.mobile-nav-list a{
  display:block;
  font-family:var(--fd);
  font-size:22px;font-weight:700;letter-spacing:-0.02em;
  color:#f5f5f5;
  padding:14px 0;
  border-bottom:1px solid rgba(170,221,0,0.08);
  transition:all .2s ease;
}
.mobile-nav-list a:hover,.mobile-nav-list a:active{
  color:#AADD00;
  padding-left:10px;
}
.mobile-drawer-ctas{
  display:flex;flex-direction:column;gap:10px;
}
.mobile-cta-ghost,.mobile-cta-main{
  display:block;text-align:center;
  padding:14px;border-radius:10px;
  font-size:15px;font-weight:600;
  transition:all .2s ease;
}
.mobile-cta-ghost{
  border:1px solid rgba(255,255,255,0.2);
  color:#f5f5f5;
}
.mobile-cta-ghost:hover{
  border-color:#AADD00;
  background:rgba(170,221,0,0.05);
}
.mobile-cta-main{
  background:#AADD00;color:#111;
}
.mobile-cta-main:hover{
  background:#CCEE44;
}

/* Show toggle on tablet/mobile */
@media (max-width:1024px){
  .mobile-toggle{display:flex}
  body.drawer-open{overflow:hidden}
}
@media (max-width:640px){
  .mobile-drawer{top:60px;padding:24px 18px 32px}
  .mobile-nav-list a{font-size:20px;padding:12px 0}
}


/* ── Cal.com embed container ── */
#my-cal-inline {
  width: 100%;
  min-height: 660px;
  border-radius: 14px;
  overflow: hidden;
}
#my-cal-inline iframe {
  border: 0;
  width: 100%;
  min-height: 660px;
  border-radius: 14px;
}
@media (max-width: 1024px) {
  #my-cal-inline,
  #my-cal-inline iframe {
    min-height: 580px;
  }
}
@media (max-width: 640px) {
  #my-cal-inline,
  #my-cal-inline iframe {
    min-height: 520px;
  }
}
