@font-face { font-family: "Montserrat"; font-weight: 400; font-style: normal; font-display: swap; src: url("fonts/Montserrat-Regular.woff2") format("woff2"); }
@font-face { font-family: "Montserrat"; font-weight: 600; font-style: normal; font-display: swap; src: url("fonts/Montserrat-SemiBold.woff2") format("woff2"); }
@font-face { font-family: "Montserrat"; font-weight: 700; font-style: normal; font-display: swap; src: url("fonts/Montserrat-Bold.woff2") format("woff2"); }
/* arwicom group — brand style: dark monochrome, Montserrat, white typography */
:root {
  --bg: #0a0a0b;
  --bg-2: #101113;
  --ink: #ffffff;
  --ink-2: #c9c9cc;
  --ink-3: #8a8a90;
  --line: rgba(255, 255, 255, 0.12);
  --line-2: rgba(255, 255, 255, 0.22);
  --glow: rgba(255, 255, 255, 0.07);
  --max: 1240px;
  --pad: clamp(20px, 4vw, 56px);
  --font: "Montserrat", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--ink); font-family: var(--font);
  font-size: 16px; line-height: 1.6; overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
body.is-loading { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4 { margin: 0; font-weight: 700; letter-spacing: -0.02em; line-height: 1.08; }
p { margin: 0; }
::selection { background: #fff; color: #000; }

/* cursor light */
#light {
  position: fixed; inset: 0; pointer-events: none; z-index: 1;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 30%), rgba(255,255,255,0.06), transparent 60%);
  transition: opacity .4s;
}

/* grain */
body::after {
  content: ""; position: fixed; inset: -50%; z-index: 999; pointer-events: none; opacity: .045;
  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.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 8s steps(10) infinite;
}
@keyframes grain {
  0%,100% { transform: translate(0,0);} 10% { transform: translate(-5%,-10%);} 30% { transform: translate(3%,-15%);}
  50% { transform: translate(12%,9%);} 70% { transform: translate(9%,4%);} 90% { transform: translate(-1%,7%);}
}

/* loader */
#loader {
  position: fixed; inset: 0; z-index: 1000; background: var(--bg); display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 22px;
}
#loader img { width: 150px; opacity: 0; animation: fadeUp .9s var(--ease) .1s forwards; }
#loader .bar { width: 120px; height: 1px; background: var(--line); overflow: hidden; }
#loader .bar i { display: block; height: 100%; width: 0; background: #fff; transition: width .5s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px);} to { opacity: 1; transform: none;} }

/* nav */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding: 18px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  transition: background .4s, backdrop-filter .4s, padding .4s;
}
.nav.is-scrolled { background: rgba(10,10,11,0.72); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); padding: 12px var(--pad); border-bottom: 1px solid var(--line); }
.nav .logo img { height: 34px; width: auto; }
.nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 30px; }
.nav ul a { font-size: 13px; font-weight: 600; letter-spacing: .04em; color: var(--ink-2); position: relative; }
.nav ul a::after { content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0; background: #fff; transition: width .35s var(--ease); }
.nav ul a:hover { color: #fff; } .nav ul a:hover::after { width: 100%; }
.nav .right { display: flex; align-items: center; gap: 18px; }
.lang { display: flex; gap: 2px; border: 1px solid var(--line-2); border-radius: 999px; padding: 3px; }
.lang a { font-size: 11px; font-weight: 700; letter-spacing: .08em; padding: 5px 9px; border-radius: 999px; color: var(--ink-3); }
.lang a.is-active { background: #fff; color: #000; }
.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; border-radius: 999px; font-weight: 600; font-size: 14px;
  border: 1px solid var(--line-2); color: #fff; position: relative; overflow: hidden; transition: transform .35s var(--ease), border-color .3s, color .3s;
  will-change: transform;
}
.btn span { position: relative; z-index: 1; }
.btn::before { content: ""; position: absolute; inset: 0; background: #fff; transform: translateY(101%); transition: transform .45s var(--ease); }
.btn:hover { color: #000; border-color: #fff; } .btn:hover::before { transform: translateY(0); }
.btn.solid { background: #fff; color: #000; border-color: #fff; } .btn.solid::before { background: #0a0a0b; }
.btn.solid:hover { color: #fff; }
.btn.small { padding: 10px 16px; font-size: 13px; }
.btn svg { width: 16px; height: 16px; position: relative; z-index: 1; }
.burger { display: none; width: 42px; height: 42px; border: 1px solid var(--line-2); border-radius: 50%; background: none; cursor: pointer; position: relative; }
.burger i { position: absolute; left: 12px; right: 12px; height: 1.5px; background: #fff; transition: transform .35s var(--ease), top .35s; }
.burger i:nth-child(1) { top: 16px; } .burger i:nth-child(2) { top: 24px; }
.burger.is-open i:nth-child(1) { top: 20px; transform: rotate(45deg);} .burger.is-open i:nth-child(2) { top: 20px; transform: rotate(-45deg);}
.mobile-menu { position: fixed; inset: 0; z-index: 45; background: rgba(10,10,11,.96); display: none; flex-direction: column; justify-content: center; padding: var(--pad); gap: 8px; }
.mobile-menu.is-open { display: flex; }
.mobile-menu a { font-size: clamp(28px, 8vw, 44px); font-weight: 700; letter-spacing: -.02em; padding: 8px 0; border-bottom: 1px solid var(--line); opacity: 0; transform: translateY(20px); }
.mobile-menu.is-open a { animation: fadeUp .6s var(--ease) forwards; }
.mobile-menu a:nth-child(2){animation-delay:.05s}.mobile-menu a:nth-child(3){animation-delay:.1s}.mobile-menu a:nth-child(4){animation-delay:.15s}.mobile-menu a:nth-child(5){animation-delay:.2s}

/* hero */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding: 110px var(--pad) 40px; overflow: hidden; }
#scene { position: absolute; inset: 0; z-index: 0; }
#scene canvas { display: block; width: 100%; height: 100%; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(10,10,11,.35) 0%, rgba(10,10,11,0) 30%, rgba(10,10,11,.2) 70%, var(--bg) 100%); }
.hero .inner { position: relative; z-index: 2; width: 100%; max-width: var(--max); margin: 0 auto; }
.eyebrow { font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-3); display: flex; align-items: center; gap: 14px; }
.eyebrow::before { content: ""; width: 34px; height: 1px; background: #fff; }
.hero h1 { font-size: clamp(34px, 4.6vw, 64px); margin: 18px 0 22px; max-width: 24ch; }
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line span { display: block; transform: translateY(110%); }
.hero .lead { max-width: 540px; color: var(--ink-2); font-size: clamp(16px, 1.25vw, 18px); }
.hero .ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero .bottom { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-top: 48px; flex-wrap: wrap; }
.stats { display: flex; gap: 40px; flex-wrap: wrap; }
.stats div b { display: block; font-size: 20px; font-weight: 700; letter-spacing: -.01em; }
.stats div small { color: var(--ink-3); font-size: 12px; letter-spacing: .04em; }
.scroll-hint { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); display: flex; align-items: center; gap: 12px; }
.scroll-hint i { width: 1px; height: 44px; background: linear-gradient(#fff, transparent); display: block; animation: drop 1.8s var(--ease) infinite; transform-origin: top; }
@keyframes drop { 0% { transform: scaleY(0); opacity: 0;} 40% { transform: scaleY(1); opacity: 1;} 100% { transform: scaleY(1) translateY(30px); opacity: 0;} }

/* sections */
section { position: relative; padding: clamp(80px, 11vw, 150px) var(--pad); }
.wrap { max-width: var(--max); margin: 0 auto; }
.head { display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px; align-items: end; margin-bottom: clamp(44px, 6vw, 80px); }
.head h2 { font-size: clamp(30px, 4.4vw, 60px); margin-top: 22px; }
.head p { color: var(--ink-2); font-size: 17px; max-width: 480px; }
.rule { height: 1px; background: var(--line); }

/* manifesto */
.manifesto { padding-top: clamp(40px, 6vw, 80px); }
.manifesto .lines { margin-top: 34px; }
.manifesto .l { font-size: clamp(26px, 4.6vw, 64px); font-weight: 700; letter-spacing: -.025em; line-height: 1.12; color: rgba(255,255,255,.18); padding: 10px 0; transition: color .6s; }
.manifesto .l.is-on { color: #fff; }
.manifesto .l:last-child.is-on { color: #fff; }

/* services */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.card {
  position: relative; border: 1px solid var(--line); border-radius: 22px; padding: clamp(26px, 3vw, 40px);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012)); overflow: hidden;
  transform-style: preserve-3d; transition: border-color .4s, transform .5s var(--ease); min-height: 320px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 30px;
}
.card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(420px circle at var(--cx, 50%) var(--cy, 50%), rgba(255,255,255,.10), transparent 55%); opacity: 0; transition: opacity .4s; }
.card:hover { border-color: var(--line-2); } .card:hover::before { opacity: 1; }
.card .top { display: flex; justify-content: space-between; align-items: center; font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.card .n { font-family: var(--font); font-size: 13px; color: #fff; border: 1px solid var(--line-2); border-radius: 999px; padding: 4px 10px; }
.card h3 { font-size: clamp(24px, 2.4vw, 34px); margin: 16px 0 14px; }
.card p { color: var(--ink-2); font-size: 15.5px; max-width: 46ch; }
.card .note { font-size: 13px; color: var(--ink-3); border-top: 1px solid var(--line); padding-top: 16px; }
.card .glyph { position: absolute; right: 22px; bottom: 18px; width: 110px; height: 110px; opacity: .22; transition: opacity .4s, transform .6s var(--ease); }
.card:hover .glyph { opacity: .5; transform: translateY(-6px) rotate(-4deg); }

/* CRM */
.crm .grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.crm h2 { font-size: clamp(30px, 4vw, 54px); margin: 22px 0 22px; }
.crm .p { color: var(--ink-2); font-size: 17px; max-width: 54ch; }
.checks { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 12px; }
.checks li { display: flex; gap: 14px; align-items: flex-start; font-size: 15.5px; color: var(--ink-2); }
.checks li::before { content: ""; flex: none; width: 18px; height: 18px; margin-top: 4px; border-radius: 50%; border: 1px solid var(--line-2);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4'%3E%3Cpath d='M6 12l4 4 8-8'/%3E%3C/svg%3E") center/10px no-repeat; }
.phone-wrap { perspective: 1400px; display: flex; justify-content: center; }
.phone { width: min(300px, 78vw); aspect-ratio: 9/18.5; border-radius: 40px; border: 1px solid var(--line-2); background: #050506; position: relative; overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.6), inset 0 0 0 6px #111; transform: rotateY(-14deg) rotateX(6deg); transform-style: preserve-3d; }
.phone .screen-img { position: absolute; inset: 8px; width: calc(100% - 16px); height: calc(100% - 16px); object-fit: fill; border-radius: 32px; }
.phone .screen { position: absolute; inset: 8px; border-radius: 32px; background: #0b0b0d; padding: 40px 18px 18px; display: flex; flex-direction: column; gap: 10px; }
.phone .notch { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 80px; height: 20px; border-radius: 12px; background: #000; }
.phone .row { height: 46px; border-radius: 12px; border: 1px solid var(--line); background: rgba(255,255,255,.03); display: flex; align-items: center; padding: 0 12px; gap: 10px; font-size: 11px; color: var(--ink-3); transform: translateX(30px); opacity: 0; }
.phone .row b { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.12); flex: none; }
.phone .row i { height: 6px; border-radius: 3px; background: rgba(255,255,255,.18); display: block; }
.phone .row .t { flex: 1; display: grid; gap: 5px; } .phone .row .t i:first-child { width: 70%; } .phone .row .t i:last-child { width: 40%; opacity: .6; }
.phone .kpi { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 4px; }
.phone .kpi div { border: 1px solid var(--line); border-radius: 12px; padding: 10px; font-size: 10px; color: var(--ink-3); }
.phone .kpi div b { display: block; font-size: 18px; color: #fff; letter-spacing: -.02em; }
.price { margin-top: 30px; display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.price b { font-size: clamp(28px, 3vw, 40px); letter-spacing: -.02em; }
.price small { color: var(--ink-3); font-size: 13px; max-width: 34ch; line-height: 1.4; }
.ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

/* brand list */
.list { border-top: 1px solid var(--line); }
.list .item { display: grid; grid-template-columns: 180px 1fr 1.3fr; gap: 30px; padding: 30px 0; border-bottom: 1px solid var(--line); align-items: baseline; transition: padding .4s var(--ease); }
.list .item:hover { padding-left: 12px; }
.list .item .k { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-3); font-weight: 600; }
.list .item h3 { font-size: clamp(20px, 2vw, 26px); }
.list .item p { color: var(--ink-2); font-size: 15.5px; }

/* process */
.steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.steps::before { content: ""; position: absolute; left: 0; right: 0; top: 22px; height: 1px; background: var(--line); }
.steps .track { position: absolute; left: 0; top: 22px; height: 1px; width: 0; background: #fff; }
.step { position: relative; padding-top: 56px; }
.step .dot { position: absolute; top: 15px; left: 0; width: 15px; height: 15px; border-radius: 50%; background: var(--bg); border: 1px solid var(--line-2); transition: background .4s, box-shadow .4s; }
.step.is-on .dot { background: #fff; box-shadow: 0 0 0 6px rgba(255,255,255,.08); }
.step .num { font-size: 12px; letter-spacing: .16em; color: var(--ink-3); font-weight: 600; }
.step h3 { font-size: 22px; margin: 10px 0 12px; }
.step p { color: var(--ink-2); font-size: 15px; }
.pay { margin-top: 56px; padding: 22px 26px; border: 1px solid var(--line); border-radius: 16px; color: var(--ink-2); font-size: 15px; display: flex; gap: 16px; align-items: center; }
.pay::before { content: "€ $ ֏"; font-weight: 700; letter-spacing: .1em; color: #fff; white-space: nowrap; }

/* founder */
.founder .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.founder .visual { position: relative; aspect-ratio: 4/5; border-radius: 24px; overflow: hidden; border: 1px solid var(--line); background: #000 url("bg.jpg") center/cover; }
.founder .visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(10,10,11,.9)); }
.founder .visual.founder-photo { background: #000 url("founder.jpg") center top/cover; filter: contrast(1.02); }
.founder .visual .sig { position: absolute; left: 26px; bottom: 26px; z-index: 2; }
.founder .visual .sig b { display: block; font-size: 22px; letter-spacing: -.01em; }
.founder .visual .sig small { color: var(--ink-2); font-size: 13px; }
.founder h2 { font-size: clamp(30px, 3.6vw, 50px); margin: 22px 0 22px; }
.founder .p { color: var(--ink-2); font-size: 17px; }

/* inner pages */
.nav ul a.is-current { color: #fff; } .nav ul a.is-current::after { width: 100%; }
.hero-inner { min-height: 0; padding: clamp(150px, 20vh, 220px) var(--pad) clamp(40px, 6vw, 80px); align-items: flex-start; }
.hero-inner::before { display: none; }
.hero-inner h1 { font-size: clamp(36px, 5.4vw, 74px); max-width: 18ch; }
.hero-arwi .grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 50px; align-items: center; }
.role { color: var(--ink-3); font-weight: 600; font-size: .55em; letter-spacing: 0; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.card.small { min-height: 0; justify-content: flex-start; }
.card.small h3 { font-size: 22px; margin-top: 12px; }
.card.wide { grid-column: 1 / -1; }
.card.wide p { max-width: 70ch; }
.svc { border-top: 1px solid var(--line); padding-top: clamp(50px, 7vw, 90px); padding-bottom: clamp(50px, 7vw, 90px); }
.svc .grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.svc h2 { font-size: clamp(28px, 3.4vw, 46px); margin: 20px 0 20px; }
.svc .p { color: var(--ink-2); font-size: 17px; }
.svc .grid > div:last-child { position: relative; padding-top: 6px; }
.svc .checks { margin-top: 0; }
.note-line { margin-top: 26px; padding-top: 16px; border-top: 1px solid var(--line); color: var(--ink-3); font-size: 13.5px; }
.glyph-big { position: absolute; right: -10px; top: -30px; width: 140px; height: 140px; opacity: .12; pointer-events: none; }
.not-box { border: 1px solid var(--line); border-radius: 22px; padding: clamp(24px, 3vw, 36px); background: rgba(255,255,255,.02); }
.not-box h3, .box-line h3 { font-size: 20px; margin-bottom: 16px; }
.nots { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.nots li { display: flex; gap: 14px; align-items: flex-start; color: var(--ink-2); font-size: 15.5px; }
.nots li::before { content: ""; flex: none; width: 18px; height: 18px; margin-top: 4px; border-radius: 50%; border: 1px solid var(--line-2); background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.4'%3E%3Cpath d='M7 7l10 10M17 7 7 17'/%3E%3C/svg%3E") center/9px no-repeat; }
.box-line { border: 1px solid var(--line); border-radius: 22px; padding: clamp(24px, 3vw, 36px); }
.box-line .checks { margin-top: 0; }
.box-line.big { text-align: center; padding: clamp(50px, 7vw, 90px) clamp(24px, 5vw, 80px); }
.box-line.big .eyebrow { justify-content: center; } .box-line.big .eyebrow::before { display: none; }
.box-line.big h2 { font-size: clamp(30px, 4vw, 52px); margin: 20px auto; max-width: 18ch; }
.box-line.big p { color: var(--ink-2); font-size: 17px; max-width: 60ch; margin: 0 auto; }
.box-line.big .ctas { justify-content: center; }
.grid.two { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.plan { padding-top: 0; }
.plan .box { border: 1px solid var(--line-2); border-radius: 30px; padding: clamp(40px, 6vw, 80px); text-align: center; background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.015)); }
.plan .eyebrow { justify-content: center; } .plan .eyebrow::before { display: none; }
.plan h2 { font-size: clamp(30px, 4vw, 54px); margin: 20px auto; max-width: 18ch; }
.plan p { color: var(--ink-2); font-size: 17px; max-width: 62ch; margin: 0 auto; }
.plan .ctas { justify-content: center; }
.story p { color: var(--ink-2); font-size: 17px; margin-bottom: 18px; }
.sign { color: var(--ink-3) !important; font-size: 14px !important; }
.link { border-bottom: 1px solid var(--line-2); padding-bottom: 2px; transition: border-color .3s; } .link:hover { border-color: #fff; }
.doc { padding: clamp(150px, 20vh, 220px) var(--pad) clamp(80px, 11vw, 150px); }
.doc .wrap { max-width: 800px; }
.doc h1 { font-size: clamp(34px, 5vw, 64px); margin: 22px 0 14px; }
.doc .updated { color: var(--ink-3); font-size: 14px; margin-bottom: 40px; }
.doc-sec { padding: 28px 0; border-top: 1px solid var(--line); }
.doc-sec h2 { font-size: 22px; margin-bottom: 14px; }
.doc-sec p { color: var(--ink-2); font-size: 15.5px; margin-bottom: 10px; max-width: 70ch; }
.tryam-why .list { margin-top: 10px; }
@media (max-width: 960px) {
  .hero-arwi .grid, .svc .grid, .grid.two { grid-template-columns: 1fr; }
  .cards.three { grid-template-columns: 1fr; }
  .glyph-big { display: none; }
  .hero-arwi .phone-wrap { max-width: 320px; }
}

/* FAQ */
.faq .qs { border-top: 1px solid var(--line); max-width: 860px; }
.q { border-bottom: 1px solid var(--line); }
.q summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 0; font-size: clamp(17px, 1.6vw, 21px); font-weight: 600; letter-spacing: -.01em; }
.q summary::-webkit-details-marker { display: none; }
.q summary i { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line-2); position: relative; transition: transform .4s var(--ease), background .3s; }
.q summary i::before, .q summary i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 12px; height: 1.5px; background: #fff; transform: translate(-50%,-50%); }
.q summary i::after { transform: translate(-50%,-50%) rotate(90deg); }
.q[open] summary i { transform: rotate(45deg); background: rgba(255,255,255,.08); }
.q p { color: var(--ink-2); font-size: 15.5px; max-width: 64ch; padding: 0 60px 26px 0; }

/* CTA */
.cta { padding: 0 var(--pad) clamp(80px, 11vw, 150px); }
.cta .box { position: relative; border-radius: 30px; overflow: hidden; padding: clamp(60px, 9vw, 120px) clamp(28px, 6vw, 90px); text-align: center; border: 1px solid var(--line);
  background: #000 url("bg.jpg") center 30%/cover; }
.cta .box::before { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 50% 40%, rgba(10,10,11,.2), rgba(10,10,11,.85)); }
.cta .box > * { position: relative; }
.cta .eyebrow { justify-content: center; } .cta .eyebrow::before { display: none; }
.cta h2 { font-size: clamp(32px, 5vw, 68px); margin: 22px auto 22px; max-width: 16ch; }
.cta p { color: var(--ink-2); font-size: 17px; max-width: 52ch; margin: 0 auto; }
.cta .ctas { justify-content: center; }

/* footer */
footer { padding: 40px var(--pad) 40px; border-top: 1px solid var(--line); }
footer .wrap { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
footer img { height: 34px; }
footer ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 22px; flex-wrap: wrap; }
footer a { font-size: 13px; color: var(--ink-3); } footer a:hover { color: #fff; }
footer .copy { width: 100%; font-size: 12px; color: var(--ink-3); border-top: 1px solid var(--line); padding-top: 22px; margin-top: 8px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* reveal defaults (GSAP overrides) */
[data-reveal] { opacity: 0; transform: translateY(28px); }
.no-js [data-reveal], .reduced [data-reveal] { opacity: 1; transform: none; }
.no-js .hero h1 .line span { transform: none; }

@media (max-width: 960px) {
  .nav ul { display: none; } .burger { display: block; } .nav .cta-nav { display: none; }
  .head, .cards, .crm .grid, .founder .grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 34px; } .steps::before, .steps .track { display: none; }
  .step { padding-top: 0; padding-left: 34px; } .step .dot { top: 6px; }
  .list .item { grid-template-columns: 1fr; gap: 8px; }
  .founder .grid .visual { order: -1; max-width: 420px; }
  .hero { padding-top: 120px; }
  .card { min-height: 0; }
}
@media (max-width: 600px) {
  .hero .bottom { flex-direction: column; align-items: flex-start; }
  .stats { gap: 22px; }
  .lang a { padding: 4px 7px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; } body::after { animation: none; }
}
