/* Argatech landing page (HTML/CSS/JS) */
:root{
  --bg0:#1a0625;
  --bg1:#2a0838;
  --bg2:#3a0b4a;
  --accent:#f0c300;
  --text:#ffffff;
  --muted:rgba(255,255,255,.72);
  --dark:#12021a;
  --panel:#17101d;
  --light:#cfcfcf;
  --ink:#0f0f12;
  --radius:22px;
  --shadow:0 18px 50px rgba(0,0,0,.28);
  --shadow2:0 14px 30px rgba(0,0,0,.20);
  --max:1120px;
  --font:'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background: radial-gradient(1400px 600px at 12% 20%, #3f0f57 0%, transparent 55%),
              linear-gradient(120deg, var(--bg1), var(--bg0));
}

img{max-width:100%; display:block}
a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.narrow{max-width:860px}
.skip{
  position:absolute; left:-999px; top:-999px;
  background:#fff; color:#000; padding:10px 12px; border-radius:10px;
}
.skip:focus{left:16px; top:16px; z-index:99}

/* Header */
.top{position:sticky; top:0; z-index:50; backdrop-filter: blur(10px); background: rgba(18,2,26,.35); border-bottom:1px solid rgba(255,255,255,.06)}
.top__inner{display:flex; align-items:center; justify-content:space-between; padding:16px 0}
.brand__logo{height:52px; width:auto}

.nav{display:flex; align-items:center; gap:26px}
.nav a{font-weight:600; font-size:14px; opacity:.95}
.nav a:hover{opacity:1}
.nav a::after{
  content:""; display:block; height:2px; width:0; background:var(--accent);
  transition:width .18s ease; margin-top:6px; opacity:.85
}
.nav a:hover::after{width:100%}
.nav__cta{padding:10px 14px; border-radius:999px; background:rgba(255,255,255,.10)}
.nav__cta::after{display:none}

.hamburger{display:none; width:44px; height:40px; border-radius:12px; border:1px solid rgba(255,255,255,.15); background:rgba(255,255,255,.06); cursor:pointer}
.hamburger span{display:block; height:2px; margin:7px 10px; background:#fff; opacity:.9}

/* Hero */
.hero{position:relative; padding-top:42px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  align-items:center;
  gap:34px;
  padding:34px 0 26px;
}
.hero__left{position:relative; min-height:520px}
.hero__circle{
  position:absolute;
  width:min(520px, 62vw);
  aspect-ratio:1/1;
  border-radius:999px;
  background:var(--accent);
  left:18%;
  top:12%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,.25));
}
.hero__person{
  position:absolute;
  width:min(520px, 62vw);
  left:8%;
  top:0;
  border-radius: 24px;
  mix-blend-mode:normal;
}
.hero__right{max-width:520px; margin-left:auto}
.eyebrow{color:var(--accent); font-weight:700; margin:0 0 10px}
h1{font-size:52px; line-height:1.08; margin:0 0 14px; letter-spacing:-.5px}
.sub{color:var(--accent); font-weight:700; font-size:18px; margin:0 0 18px}
.actions{display:flex; gap:14px; flex-wrap:wrap}
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  border-radius:999px; padding:12px 18px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.08);
  color:#fff; cursor:pointer;
  font-family:var(--font); font-weight:700;
  transition:transform .12s ease, filter .12s ease, background .12s ease;
}
.btn:hover{transform:translateY(-1px); filter:brightness(1.03)}
.btn:active{transform:translateY(0)}
.btn--primary{background:var(--accent); color:#1a1120; border-color:rgba(0,0,0,.10)}
.btn--ghost{background:#fff; color:#2a1036; border-color:rgba(255,255,255,.6)}
.btn--small{padding:10px 14px; font-size:14px}
.btn--full{width:100%; border-radius:16px}
.btn__icon{font-size:16px}
.btn__play{width:22px; height:22px; display:inline-grid; place-items:center; border-radius:999px; background:rgba(42,16,54,.10); color:#2a1036}

/* Bottom split */
.hero__bottom{background:#c9c9c9; color:#2b0a3d; margin-top:14px}
.hero__bottomGrid{
  display:grid; grid-template-columns: 1fr 1.25fr; gap:22px;
  padding:26px 0 34px;
  align-items:center;
}
.servicesCard{
  background:rgba(255,255,255,.22);
  border-radius:18px;
  padding:18px 18px 16px;
}
.servicesCard h2{margin:0 0 10px; font-size:34px; letter-spacing:-.3px}
.servicesCard ul{margin:0; padding-left:22px; line-height:1.8; font-weight:600}
.videoCard{
  border:0; padding:0; background:transparent; cursor:pointer;
  border-radius:22px; overflow:hidden;
  box-shadow: var(--shadow2);
  position:relative;
}
.videoCard img{width:100%; height:auto; display:block}
.videoCard__play{
  position:absolute; inset:0; display:grid; place-items:center;
}
.videoCard__play::before{
  content:"";
  width:118px; height:118px; border-radius:999px;
  background:rgba(255,255,255,.92);
  box-shadow:0 16px 40px rgba(0,0,0,.25);
}
.videoCard__play::after{
  content:"";
  width:0; height:0;
  border-left:34px solid #1e1028;
  border-top:22px solid transparent;
  border-bottom:22px solid transparent;
  margin-left:10px;
  transform:translateX(6px);
}

/* Sections */
.section{padding:72px 0}
.section--light{
  background:#d2d2d2;
  color:#2b0a3d;
}
.section__title{
  margin:0 0 14px;
  font-size:40px;
  letter-spacing:-.4px;
}
.lead{margin:0 0 14px; color:rgba(255,255,255,.78)}
.section--light .lead{color:rgba(43,10,61,.86)}
.muted{opacity:.85; margin:0 0 18px}
.quote{
  background:rgba(255,255,255,.18);
  border:1px solid rgba(43,10,61,.12);
  border-radius:var(--radius);
  padding:20px 18px 18px;
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}
.quote__mark{font-size:38px; color:rgba(43,10,61,.35); font-weight:800}
.quote p{margin:0 0 8px; line-height:1.65}
.quote p:last-child{margin:0}

.twoCol{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:26px;
  align-items:start;
}
.chips{display:flex; flex-wrap:wrap; gap:10px; margin-top:14px}
.chip{
  padding:10px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.12);
  font-weight:700;
  font-size:13px;
}

.statCard{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: var(--shadow2);
}
.statCard h3{margin:0 0 6px; font-size:16px}
.statCard p{margin:0 0 12px; color:rgba(255,255,255,.78); line-height:1.6}
.divider{height:1px; background:rgba(255,255,255,.16); margin:12px 0}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:18px;
  margin-top:20px;
}
.svc{
  background:rgba(255,255,255,.20);
  border:1px solid rgba(43,10,61,.10);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:0 12px 26px rgba(0,0,0,.06);
}
.svc h3{margin:0 0 10px; font-size:16px}
.svc ul{margin:0; padding-left:20px; line-height:1.8; font-weight:600; color:rgba(43,10,61,.86)}

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:start;
}
.contact__meta{display:grid; gap:10px; margin-top:16px}
.contact__meta .label{display:block; font-size:12px; opacity:.78}
.contact__meta .value{display:block; font-weight:700}

.form{
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: var(--shadow2);
}
label{display:block; font-weight:700; font-size:13px; margin-bottom:10px}
input, textarea{
  width:100%;
  margin-top:6px;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.20);
  color:#fff;
  font-family:var(--font);
  outline:none;
}
textarea{resize:vertical}
input:focus, textarea:focus{border-color:rgba(240,195,0,.65); box-shadow:0 0 0 4px rgba(240,195,0,.14)}
.form__hint{margin:10px 0 0; font-size:13px; color:rgba(255,255,255,.78)}

/* Footer */
.footer{padding:20px 0; border-top:1px solid rgba(255,255,255,.10); background:rgba(18,2,26,.55)}
.footer__inner{display:flex; justify-content:center; gap:12px; opacity:.9; font-weight:600; font-size:13px}
.footer__sep{opacity:.6}

/* Modal */
.modal{border:0; padding:0; border-radius:18px; overflow:hidden; width:min(860px, 92vw)}
.modal::backdrop{background:rgba(0,0,0,.62)}
.modal__content{margin:0; border:0; padding:0; background:#0f0f12; color:#fff}
.modal__close{
  position:absolute; right:12px; top:10px; z-index:2;
  width:42px; height:42px; border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.10);
  color:#fff; cursor:pointer; font-weight:800;
}
.modal__video{aspect-ratio:16/9; width:100%}
.modal__note{margin:0; padding:12px 14px; font-size:12px; color:rgba(255,255,255,.74)}
.modal__note code{background:rgba(255,255,255,.08); padding:2px 6px; border-radius:8px}

/* Responsive */
@media (max-width: 920px){
  .hero__grid{grid-template-columns:1fr; padding-top:16px}
  .hero__right{margin-left:0; max-width:680px}
  h1{font-size:44px}
  .hero__left{order:2; min-height:420px}
  .hero__circle{left:10%; top:14%}
  .hero__person{left:0}
  .hero__bottomGrid{grid-template-columns:1fr; padding-top:18px}
  .servicesCard h2{font-size:30px}
  .twoCol{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
  .grid3{grid-template-columns:1fr}
}

@media (max-width: 760px){
  .hamburger{display:inline-block}
  .nav{
    position:absolute; right:20px; top:74px;
    background:rgba(18,2,26,.92);
    border:1px solid rgba(255,255,255,.12);
    border-radius:16px;
    padding:12px;
    display:none;
    flex-direction:column;
    gap:10px;
    width:min(320px, calc(100vw - 40px));
  }
  .nav.is-open{display:flex}
  .nav a::after{display:none}
  h1{font-size:38px}
  .section__title{font-size:34px}
}


/* About (Figma-like) */
.aboutFig{
  padding: 82px 0;
  background: radial-gradient(900px 520px at 18% 15%, rgba(240,195,0,.10) 0%, transparent 60%),
              linear-gradient(135deg, #1b0629, #3a0a5e);
}
.aboutFig__inner{ text-align:center; }
.aboutFig__title{
  margin:0 0 14px;
  font-size:44px;
  letter-spacing:-.4px;
}
.aboutFig__title span{ color: var(--accent); }
.aboutFig__text{
  margin:0 auto 22px;
  max-width: 760px;
  line-height: 1.8;
  color: rgba(255,255,255,.82);
  font-weight:600;
  font-size: 14px;
}
.aboutFig__quote{
  margin: 8px 0 12px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,.92);
}
.mt-lg{ margin-top: 64px; }

.clientBox{
  margin: 26px auto 0;
  max-width: 860px;
  background:#fff;
  border-radius:18px;
  padding:12px 12px;
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
  overflow:hidden;
}
.clientBox img{width:100%; height:auto; display:block}
@media (max-width: 760px){
  .aboutFig__title{ font-size:36px; }
  .clientBox{
  margin: 26px auto 0;
  max-width: 860px;
  background:#fff;
  border-radius:18px;
  padding:12px 12px;
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
  overflow:hidden;
}
.clientBox img{width:100%; height:auto; display:block}
}
