:root {
  --black: #050507;
  --surface: #0d0e12;
  --surface-2: #14151b;
  --surface-3: #1b1c23;
  --white: #f7f7f8;
  --silver: #c7c8cf;
  --muted: #92949e;
  --line: rgba(255,255,255,.12);
  --line-soft: rgba(255,255,255,.07);
  --accent: #8d7bff;
  --accent-bright: #b2a8ff;
  --accent-soft: rgba(141,123,255,.14);
  --success: #25d366;
  --max: 1240px;
  --radius-lg: 32px;
  --radius-md: 22px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { margin: 0; overflow-x: hidden; background: var(--black); color: var(--white); font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; line-height: 1.55; -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
::selection { background: var(--accent); color: #fff; }
a { color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
:focus-visible { outline: 3px solid var(--accent-bright); outline-offset: 4px; }
.shell { width: min(calc(100% - 48px), var(--max)); margin-inline: auto; }
.section-pad { padding: 132px 0; }
[id] { scroll-margin-top: 88px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; border-bottom: 1px solid transparent; transition: background .35s ease, border-color .35s ease, transform .35s ease; }
.site-header.scrolled { background: rgba(5,5,7,.78); border-color: var(--line-soft); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.nav-wrap { height: 82px; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; gap: 11px; flex: 0 0 auto; font-weight: 760; font-size: 15px; letter-spacing: -.025em; text-decoration: none; }
.brand-mark { width: 36px; height: 36px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.4); border-radius: 11px; background: linear-gradient(145deg,#fff,#9d9da7); color: #09090b; box-shadow: inset 0 1px 0 rgba(255,255,255,.8); }
.custom-logo { max-width: 190px; max-height: 46px; width: auto; }
.site-nav { margin-left: auto; }
.menu { display: flex; align-items: center; gap: 30px; list-style: none; padding: 0; margin: 0; }
.menu a { position: relative; color: var(--silver); font-size: 13px; font-weight: 600; text-decoration: none; transition: color .25s ease; }
.menu a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--white); transition: right .3s var(--ease); }
.menu a:hover, .menu a.active { color: var(--white); }
.menu a:hover::after, .menu a.active::after { right: 0; }
.nav-toggle { display: none; margin-left: auto; align-items: center; gap: 9px; border: 1px solid var(--line); border-radius: 999px; padding: 9px 13px; color: var(--white); background: rgba(255,255,255,.04); }
.nav-toggle i, .nav-toggle i::before { display: block; width: 13px; height: 1px; background: currentColor; transition: transform .25s ease; }
.nav-toggle i { position: relative; }
.nav-toggle i::before { content: ""; position: absolute; top: 4px; }
.nav-toggle[aria-expanded="true"] i { transform: rotate(45deg) translateY(2px); }
.nav-toggle[aria-expanded="true"] i::before { transform: rotate(-90deg) translateX(4px); }

.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 20px; padding: 13px 22px; border: 1px solid #fff; border-radius: 999px; background: var(--white); color: #08080a; text-decoration: none; font-weight: 760; font-size: 14px; cursor: pointer; box-shadow: 0 10px 30px rgba(0,0,0,.2); transition: transform .3s var(--ease), background .3s ease, color .3s ease, border-color .3s ease; }
.button span { transition: transform .3s var(--ease); }
.button:hover { transform: translateY(-3px); background: var(--accent-bright); border-color: var(--accent-bright); }
.button:hover span { transform: translate(3px,-3px); }
.button-small { min-height: 44px; padding: 9px 17px; font-size: 13px; gap: 12px; }
.button-ghost { color: var(--white); background: rgba(255,255,255,.02); border-color: var(--line); box-shadow: none; }
.button-ghost:hover { color: var(--white); background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.3); }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--white); font-weight: 720; text-decoration: none; }
.text-link span { color: var(--accent-bright); transition: transform .25s var(--ease); }
.text-link:hover span { transform: translate(3px,-3px); }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px; color: var(--silver); font-size: 11px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 23px; height: 1px; background: var(--accent); }
.section-heading { max-width: 960px; margin-bottom: 72px; }
.section-heading h2, .process-intro h2, .about h2, .contact h2 { margin: 0; font-size: clamp(46px,6vw,78px); line-height: .97; letter-spacing: -.06em; }
.section-heading p, .process-intro p, .contact-copy > p { max-width: 720px; margin: 28px 0 0; color: var(--muted); font-size: 19px; }
.section-heading-row { max-width: none; display: grid; grid-template-columns: 1.15fr .85fr; gap: 90px; align-items: end; }
.section-heading-row p { margin: 0 0 6px; }

.hero { position: relative; min-height: 940px; display: flex; align-items: center; overflow: hidden; padding-top: 160px; padding-bottom: 110px; }
.hero-noise { position: absolute; inset: 0; opacity: .13; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.26'/%3E%3C/svg%3E"); mix-blend-mode: soft-light; }
.hero-orb { position: absolute; width: 620px; aspect-ratio: 1; border-radius: 50%; filter: blur(90px); pointer-events: none; opacity: .25; }
.hero-orb-one { top: -260px; right: -110px; background: var(--accent); animation: orb-drift 10s ease-in-out infinite alternate; }
.hero-orb-two { bottom: -360px; left: 28%; background: #2d65ff; opacity: .12; animation: orb-drift 13s ease-in-out -4s infinite alternate-reverse; }
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0,1fr) minmax(480px,.9fr); gap: 64px; align-items: center; }
.hero-copy { position: relative; z-index: 3; }
.hero h1 { max-width: 760px; margin: 0; font-size: clamp(64px,7.5vw,112px); line-height: .88; letter-spacing: -.075em; }
.hero h1 .word { display: inline-block; margin-right: .16em; transform-origin: 0 100%; }
.has-js .hero h1 .word { opacity: 0; transform: translateY(34px) rotate(3deg); animation: word-in .8s var(--ease) forwards; animation-delay: calc(var(--word-index) * 80ms + 120ms); }
.hero-text { max-width: 660px; margin: 34px 0 32px; color: var(--muted); font-size: 20px; line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust { display: flex; align-items: center; gap: 9px; margin-top: 30px; color: #777985; font-size: 12px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 6px rgba(37,211,102,.1); animation: status-pulse 2s ease infinite; }
.hero-studio { --tilt-x: 0deg; --tilt-y: 0deg; position: relative; min-height: 600px; padding: 46px 20px 40px; transform: perspective(1200px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)); transform-style: preserve-3d; transition: transform .15s ease-out; }
.studio-label { position: absolute; inset: 10px 26px auto; display: flex; justify-content: space-between; color: #858791; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.browser-shell { position: relative; z-index: 2; overflow: hidden; border: 1px solid rgba(255,255,255,.18); border-radius: 25px; background: #101116; box-shadow: 0 55px 130px rgba(0,0,0,.55), 0 0 90px var(--accent-soft); transform: rotate(1.5deg) translateZ(25px); }
.browser-chrome { height: 48px; display: flex; align-items: center; gap: 6px; padding: 0 15px; border-bottom: 1px solid var(--line-soft); color: #6f717b; font-size: 9px; }
.browser-chrome i { width: 7px; height: 7px; border-radius: 50%; background: #4b4c53; }
.browser-chrome span { margin-left: 14px; padding: 5px 13px; border: 1px solid var(--line-soft); border-radius: 999px; }
.browser-site { position: relative; min-height: 475px; overflow: hidden; padding: 26px; background: #e8e2d6; color: #171410; }
.mock-site-nav { position: relative; z-index: 2; display: flex; justify-content: space-between; font-size: 9px; }
.mock-site-nav b { letter-spacing: .13em; }
.mock-site-nav span { color: #686158; }
.mock-site-copy { position: relative; z-index: 2; width: 64%; padding-top: 92px; }
.mock-kicker { display: block; margin-bottom: 13px; color: #756d63; font-size: 8px; text-transform: uppercase; letter-spacing: .18em; }
.mock-site-copy strong { display: block; font-family: Georgia,serif; font-weight: 500; font-size: clamp(32px,3.2vw,48px); line-height: .94; letter-spacing: -.05em; }
.mock-site-copy i { display: block; width: 74px; height: 24px; margin-top: 25px; border-radius: 999px; background: #1b1814; }
.mock-site-art { position: absolute; right: 20px; bottom: 0; width: 43%; height: 83%; overflow: hidden; background: linear-gradient(150deg,#3b382f,#171915); clip-path: polygon(22% 0,100% 0,100% 100%,0 100%); }
.mock-site-art::before { content: ""; position: absolute; inset: 12% -20% -20% 16%; border: 1px solid rgba(255,255,255,.35); transform: rotate(22deg); }
.mock-site-art span { position: absolute; background: #c6a876; }
.mock-site-art span:nth-child(1) { width: 90px; height: 160%; top: -20%; left: 38%; transform: rotate(31deg); }
.mock-site-art span:nth-child(2) { width: 55px; height: 150%; top: -10%; right: 1%; background: #817565; transform: rotate(31deg); }
.mock-site-art span:nth-child(3) { width: 35px; height: 150%; top: -10%; left: 4%; background: #0d0f0c; transform: rotate(31deg); }
.build-grid { position: absolute; inset: 0; opacity: .16; background-image: linear-gradient(rgba(0,0,0,.18) 1px,transparent 1px),linear-gradient(90deg,rgba(0,0,0,.18) 1px,transparent 1px); background-size: 42px 42px; }
.phone-shell { position: absolute; z-index: 4; right: -24px; bottom: 0; width: 172px; min-height: 330px; padding: 10px; border: 1px solid rgba(255,255,255,.25); border-radius: 28px; background: #0c0d10; box-shadow: 0 28px 75px rgba(0,0,0,.55); transform: rotate(-4deg) translateZ(65px); animation: phone-float 5s ease-in-out infinite; }
.phone-bar { width: 48px; height: 5px; margin: 2px auto 10px; border-radius: 999px; background: #292a30; }
.phone-post { min-height: 284px; display: flex; flex-direction: column; justify-content: flex-end; padding: 18px; overflow: hidden; border-radius: 20px; background: radial-gradient(circle at 76% 24%,rgba(141,123,255,.9),transparent 29%),linear-gradient(145deg,#272036,#0c0c10 65%); }
.phone-post span { position: absolute; top: 32px; font-size: 8px; letter-spacing: .16em; }
.phone-post strong { font-size: 23px; line-height: .95; letter-spacing: -.05em; }
.phone-post i { width: 46px; height: 3px; margin-top: 14px; background: var(--accent-bright); }
.floating-chip { position: absolute; z-index: 5; padding: 8px 12px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(15,16,20,.83); backdrop-filter: blur(12px); color: var(--silver); font-size: 10px; box-shadow: 0 14px 40px rgba(0,0,0,.28); animation: chip-float 5s ease-in-out infinite; }
.chip-one { left: -15px; top: 30%; }
.chip-two { right: 4px; top: 21%; animation-delay: -1.4s; }
.chip-three { left: 20%; bottom: 0; animation-delay: -2.7s; }
.scroll-cue { position: absolute; left: 30px; bottom: 35px; display: flex; align-items: center; gap: 12px; color: #777984; font-size: 10px; letter-spacing: .13em; text-decoration: none; text-transform: uppercase; transform: rotate(-90deg) translateY(100%); transform-origin: left bottom; }
.scroll-cue i { width: 45px; height: 1px; overflow: hidden; background: #44454e; }
.scroll-cue i::after { content: ""; display: block; width: 55%; height: 1px; background: var(--white); animation: scroll-line 2s ease-in-out infinite; }

.proof-band { border-block: 1px solid var(--line-soft); background: #08080b; }
.proof-grid { min-height: 160px; display: grid; grid-template-columns: 280px 1fr; align-items: center; }
.proof-stat { display: flex; align-items: center; gap: 17px; padding-right: 42px; border-right: 1px solid var(--line-soft); }
.proof-stat strong { font-size: 61px; line-height: 1; letter-spacing: -.07em; }
.proof-stat > span { max-width: 80px; color: var(--muted); font-size: 12px; line-height: 1.35; text-transform: uppercase; letter-spacing: .1em; }
.proof-industries { min-width: 0; padding-left: 42px; overflow: hidden; }
.proof-label { display: block; margin-bottom: 18px; color: #686a73; font-size: 10px; text-transform: uppercase; letter-spacing: .15em; }
.industry-track { display: flex; align-items: center; gap: 20px; white-space: nowrap; color: var(--silver); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.industry-track i { width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }

.websites { position: relative; background: linear-gradient(180deg,#050507,#0a0a0e); }
.split-heading h2 { max-width: 940px; }
.website-feature { display: grid; grid-template-columns: .82fr 1.18fr; min-height: 700px; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; background: var(--surface); }
.website-offer { padding: 54px; border-right: 1px solid var(--line); }
.offer-index { color: var(--accent-bright); font-size: 12px; }
.website-offer h3 { margin: 115px 0 18px; font-size: 40px; line-height: 1; letter-spacing: -.05em; }
.website-offer > p { color: var(--muted); font-size: 17px; }
.feature-list { padding: 0; margin: 42px 0; list-style: none; }
.feature-list li { display: grid; grid-template-columns: 45px 1fr; padding: 14px 0; border-top: 1px solid var(--line-soft); color: var(--silver); }
.feature-list li:last-child { border-bottom: 1px solid var(--line-soft); }
.feature-list span { color: #60616a; font-size: 11px; }
.website-system { position: relative; min-height: 700px; padding: 25px; overflow: hidden; background: radial-gradient(circle at 90% 10%,rgba(141,123,255,.16),transparent 34%),#0a0b0e; }
.system-toolbar { height: 42px; display: flex; align-items: center; justify-content: space-between; padding: 0 14px; border: 1px solid var(--line-soft); border-radius: 12px; color: #777984; font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.system-toolbar i { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 5px rgba(37,211,102,.08); }
.system-stage { position: absolute; border: 1px solid rgba(255,255,255,.14); border-radius: 24px; box-shadow: 0 25px 60px rgba(0,0,0,.28); }
.stage-tag { position: absolute; top: 18px; left: 20px; color: #737580; font-size: 9px; text-transform: uppercase; letter-spacing: .13em; }
.stage-wireframe { top: 96px; left: 42px; width: 62%; height: 380px; padding: 70px 28px 28px; background: #121319; transform: rotate(-5deg); animation: stage-one 9s ease-in-out infinite; }
.wire-nav,.wire-title,.wire-copy,.wire-button { border-radius: 4px; background: #2a2b33; }
.wire-nav { height: 10px; margin-bottom: 72px; }
.wire-title { width: 85%; height: 52px; margin-bottom: 14px; }
.wire-copy { width: 64%; height: 30px; opacity: .6; }
.wire-button { width: 74px; height: 25px; margin-top: 22px; border-radius: 999px; background: #646674; }
.stage-design { z-index: 2; right: 42px; top: 160px; width: 61%; height: 405px; padding: 78px 34px 34px; overflow: hidden; background: #e7e0d4; color: #15130f; transform: rotate(4deg); animation: stage-two 9s ease-in-out infinite; }
.stage-design .stage-tag { color: #706a61; }
.stage-design strong { position: relative; z-index: 2; font-family: Georgia,serif; font-weight: 500; font-size: 40px; line-height: .9; letter-spacing: -.05em; }
.stage-design > i { position: absolute; z-index: 2; left: 35px; bottom: 38px; width: 88px; height: 28px; border-radius: 999px; background: #17140f; }
.design-orb { position: absolute; width: 280px; height: 420px; right: -90px; bottom: -110px; border-radius: 50% 50% 10% 10%; background: linear-gradient(160deg,var(--accent),#322b53 70%); transform: rotate(24deg); }
.stage-live { z-index: 3; left: 68px; bottom: 38px; width: 58%; height: 190px; padding: 65px 25px 25px; background: rgba(20,21,27,.93); backdrop-filter: blur(14px); animation: stage-three 9s ease-in-out infinite; }
.stage-live strong { position: absolute; left: 24px; bottom: 22px; font-size: 15px; }
.growth-line { height: 60px; display: flex; align-items: flex-end; gap: 10px; border-bottom: 1px solid #34353d; }
.growth-line i { width: 14%; border-radius: 4px 4px 0 0; background: linear-gradient(var(--accent-bright),var(--accent)); animation: graph-grow 2.5s var(--ease) infinite alternate; transform-origin: bottom; }
.growth-line i:nth-child(1){height:28%;}.growth-line i:nth-child(2){height:42%;animation-delay:-.4s}.growth-line i:nth-child(3){height:38%;animation-delay:-.8s}.growth-line i:nth-child(4){height:67%;animation-delay:-1.2s}.growth-line i:nth-child(5){height:92%;animation-delay:-1.6s}

.templates { position: relative; overflow: hidden; border-top: 1px solid var(--line-soft); background: radial-gradient(circle at 75% 10%,rgba(141,123,255,.12),transparent 31%),#08080b; }
.templates::before { content: ""; position: absolute; width: 480px; aspect-ratio: 1; left: -250px; bottom: 8%; border: 1px solid rgba(141,123,255,.14); border-radius: 50%; box-shadow: 0 0 0 70px rgba(141,123,255,.025),0 0 0 140px rgba(141,123,255,.018); pointer-events: none; }
.templates .section-heading { position: relative; }
.template-grid { position: relative; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; }
.template-card { min-width: 0; display: block; padding: 12px 12px 0; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.018)); color: var(--white); text-decoration: none; transition: transform .5s var(--ease),border-color .4s ease,box-shadow .5s var(--ease); }
.template-card:nth-child(even) { transform: translateY(48px); }
.template-card:hover { transform: translateY(-8px); border-color: rgba(178,168,255,.55); box-shadow: 0 34px 90px rgba(0,0,0,.34),0 0 70px rgba(141,123,255,.08); }
.template-card:nth-child(even):hover { transform: translateY(40px); }
.template-browser { display: block; overflow: hidden; border: 1px solid rgba(255,255,255,.13); border-radius: 23px; background: #111217; box-shadow: 0 20px 55px rgba(0,0,0,.24); }
.template-browser-bar { height: 45px; display: flex; align-items: center; gap: 6px; padding: 0 15px; border-bottom: 1px solid var(--line-soft); color: #777984; }
.template-browser-bar i { width: 7px; height: 7px; border-radius: 50%; background: #484a53; }
.template-browser-bar b { margin-left: 9px; font-size: 9px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.template-browser-bar em { margin-left: auto; color: var(--accent-bright); font-size: 14px; font-style: normal; transition: transform .35s var(--ease); }
.template-card:hover .template-browser-bar em { transform: translate(3px,-3px); }
.template-screen { position: relative; display: block; aspect-ratio: 1.52 / 1; overflow: hidden; background: #1b1c23; }
.template-screen::after { content: ""; position: absolute; inset: 0; border-top: 1px solid rgba(255,255,255,.04); background: linear-gradient(180deg,transparent 66%,rgba(5,5,7,.2)); pointer-events: none; }
.template-screen img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease),filter .5s ease; }
.template-card:hover .template-screen img { transform: scale(1.035); filter: saturate(1.06); }
.template-meta { display: flex; align-items: center; justify-content: space-between; gap: 22px; padding: 25px 18px 27px; }
.template-meta > span:first-child { min-width: 0; }
.template-meta small { display: block; margin-bottom: 7px; color: #777984; font-size: 9px; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.template-meta strong { display: block; overflow: hidden; font-size: clamp(25px,2.5vw,36px); line-height: 1; letter-spacing: -.05em; text-overflow: ellipsis; white-space: nowrap; }
.template-open { flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px; color: var(--silver); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.template-open i { display: grid; width: 35px; height: 35px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--accent-bright); font-style: normal; transition: transform .35s var(--ease),background .35s ease,border-color .35s ease; }
.template-card:hover .template-open i { transform: rotate(45deg); border-color: var(--accent); background: var(--accent-soft); }
.template-cta { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 35px; margin-top: 92px; padding: 27px 30px; border: 1px solid var(--line); border-radius: 22px; background: rgba(255,255,255,.025); }
.template-cta p { max-width: 720px; margin: 0; color: var(--muted); }
.template-cta strong { color: var(--white); }
.template-cta .button { flex: 0 0 auto; }

.services { background: #08080b; }
.service-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.service-card { position: relative; min-height: 620px; display: flex; flex-direction: column; overflow: hidden; padding: 36px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: linear-gradient(145deg,var(--surface-2),#0a0a0d); transition: transform .4s var(--ease), border-color .4s ease; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(141,123,255,.48); }
.service-top { display: flex; justify-content: space-between; color: #686a73; font-size: 10px; text-transform: uppercase; letter-spacing: .14em; }
.service-top i { font-style: normal; }
.service-visual { position: relative; height: 260px; margin: 28px 0 36px; overflow: hidden; border: 1px solid var(--line-soft); border-radius: 20px; background: #0b0c10; }
.service-card h3 { margin: auto 0 12px; font-size: 34px; letter-spacing: -.045em; }
.service-card > p { max-width: 560px; margin: 0 0 28px; color: var(--muted); }
.service-card > ul { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; list-style: none; }
.service-card > ul li { padding: 8px 11px; border: 1px solid var(--line-soft); border-radius: 999px; color: #a8a9b0; font-size: 11px; }
.brand-visual { display: grid; grid-template-columns: 1.2fr 1fr 48px 48px 48px; gap: 10px; align-items: end; padding: 25px; background: #e7e3dc; color: #111; }
.brand-visual b { display: grid; place-items: center; height: 180px; background: #111; color: #fff; font-size: 80px; font-weight: 850; letter-spacing: -.1em; }
.brand-visual > span { align-self: center; font-family: Georgia,serif; font-size: 55px; }
.brand-visual i { height: 48px; border-radius: 50%; background: var(--accent); }
.brand-visual i:nth-last-child(2) { background: #28272b; }
.brand-visual i:last-child { background: #c9a572; }
.social-visual { display: grid; grid-template-columns: 1.35fr .75fr .75fr; gap: 8px; padding: 13px; background: #12131a; }
.social-visual > div { position: relative; min-width: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 15px; overflow: hidden; border-radius: 13px; background: linear-gradient(150deg,#302856,#12131a); }
.social-visual > div:first-child { background: radial-gradient(circle at 70% 25%,var(--accent),transparent 35%),#16151c; }
.social-visual > div:nth-child(2) { background: #ded9d0; color: #111; }
.social-visual > div:nth-child(3) { background: var(--accent); }
.social-visual strong { font-size: 24px; line-height: .95; letter-spacing: -.05em; }
.social-visual span { font-weight: 900; font-size: 24px; }
.social-visual b { font-size: 26px; }
.assets-visual { display: flex; align-items: center; justify-content: center; perspective: 700px; background: radial-gradient(circle at 50% 110%,rgba(141,123,255,.45),transparent 50%),#0c0d11; }
.assets-visual div { position: absolute; width: 145px; height: 195px; display: flex; align-items: flex-end; padding: 15px; border: 1px solid rgba(255,255,255,.25); border-radius: 10px; background: linear-gradient(155deg,#34303f,#14151a); font-size: 10px; letter-spacing: .15em; box-shadow: 0 20px 40px rgba(0,0,0,.3); }
.assets-visual div:nth-child(1) { transform: translateX(-105px) rotateY(15deg) rotate(-8deg); }
.assets-visual div:nth-child(2) { z-index: 2; background: linear-gradient(155deg,var(--accent),#302a55); transform: translateY(-8px); }
.assets-visual div:nth-child(3) { transform: translateX(105px) rotateY(-15deg) rotate(8deg); }
.service-card:hover .assets-visual div:nth-child(1) { animation: asset-left 1.3s var(--ease) both; }
.service-card:hover .assets-visual div:nth-child(3) { animation: asset-right 1.3s var(--ease) both; }
.google-visual { padding: 24px; background: linear-gradient(145deg,#ececf0,#cfcfd5); color: #1a1a1d; }
.search-bar { height: 52px; display: flex; justify-content: space-between; align-items: center; padding: 0 17px; border-radius: 999px; background: #fff; color: #666870; font-size: 12px; box-shadow: 0 8px 25px rgba(20,20,30,.1); }
.search-bar b { font-size: 22px; color: #222; }
.listing-card { margin-top: 18px; display: grid; grid-template-columns: 44px 1fr 28px; gap: 12px; align-items: center; padding: 15px; border-radius: 15px; background: #fff; box-shadow: 0 12px 30px rgba(20,20,30,.12); }
.listing-card > i { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: #111; color: #fff; font-style: normal; font-weight: 800; }
.listing-card span { display: flex; flex-direction: column; }
.listing-card small { margin-top: 3px; color: #777; font-size: 9px; }
.listing-card > b { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 50%; background: var(--accent); color: #fff; font-size: 11px; }
.service-graphic { grid-column: 1/-1; min-height: 560px; }
.service-graphic .service-visual { height: 300px; }
.graphic-visual { display: grid; grid-template-columns: 1.2fr .7fr .7fr; gap: 10px; padding: 18px; background: #d8d3cb; }
.graphic-visual > div { position: relative; overflow: hidden; border-radius: 14px; background: #15151a; }
.graphic-visual > div:first-child { display: flex; align-items: flex-end; padding: 26px; background: var(--accent); }
.graphic-visual > div:first-child::before { content: ""; position: absolute; width: 220px; height: 220px; border: 42px solid rgba(255,255,255,.18); border-radius: 50%; top: -80px; right: -40px; }
.graphic-visual span { position: relative; z-index: 2; color: #fff; font-size: 32px; font-weight: 900; line-height: .9; letter-spacing: -.05em; }
.graphic-visual > div:nth-child(2) { display: grid; place-items: center; color: #fff; font-size: 48px; font-weight: 900; }
.graphic-visual > div:last-child { background: repeating-linear-gradient(-45deg,#c9a572 0 18px,#15151a 18px 36px); }

.process { background: #050507; }
.process-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 110px; align-items: start; }
.process-intro { position: sticky; top: 145px; }
.process-intro h2 { max-width: 500px; }
.process-intro p { margin-bottom: 34px; }
.process-list { position: relative; padding-left: 36px; }
.process-line { position: absolute; top: 42px; bottom: 42px; left: 4px; width: 1px; background: var(--line); }
.process-line i { display: block; width: 1px; height: var(--process-progress,0%); background: linear-gradient(var(--accent-bright),var(--accent)); transition: height .4s ease; }
.process-item { min-height: 205px; display: grid; grid-template-columns: 72px 1fr; gap: 22px; padding: 38px 0; border-bottom: 1px solid var(--line-soft); opacity: .38; transform: translateX(12px); transition: opacity .45s ease, transform .45s var(--ease); }
.process-item.active { opacity: 1; transform: none; }
.process-item > span { color: var(--accent-bright); font-size: 12px; }
.process-item h3 { margin: 0 0 12px; font-size: 36px; letter-spacing: -.04em; }
.process-item p { max-width: 600px; margin: 0; color: var(--muted); font-size: 16px; }

.packages { background: linear-gradient(180deg,#0a0a0e,#050507); }
.package-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; align-items: stretch; }
.package-card { position: relative; min-height: 550px; display: flex; flex-direction: column; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); }
.package-featured { background: linear-gradient(160deg,rgba(141,123,255,.25),#121319 45%); border-color: rgba(141,123,255,.5); box-shadow: 0 30px 80px rgba(38,30,80,.2); }
.package-no { color: #6a6c76; font-size: 11px; }
.package-badge { position: absolute; top: 24px; right: 24px; padding: 6px 10px; border-radius: 999px; background: var(--accent); color: #fff; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.package-card h3 { margin: 90px 0 18px; font-size: 33px; letter-spacing: -.045em; }
.package-card p { color: var(--muted); }
.package-card ul { padding: 0; margin: 28px 0 34px; list-style: none; }
.package-card li { padding: 11px 0; border-top: 1px solid var(--line-soft); color: var(--silver); font-size: 13px; }
.package-card .button { width: 100%; margin-top: auto; }

.about { position: relative; overflow: hidden; border-block: 1px solid var(--line-soft); background: var(--accent); color: #0b0912; }
.about-marquee { position: absolute; left: 0; right: 0; top: 32px; white-space: nowrap; opacity: .14; font-size: clamp(86px,13vw,180px); font-weight: 900; line-height: 1; letter-spacing: -.08em; animation: marquee 26s linear infinite; }
.about-grid { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 90px; padding-top: 150px; }
.about .eyebrow, .about .eyebrow::before { color: #191426; border-color: #191426; }
.about .eyebrow::before { background: #191426; }
.about h2 { max-width: 590px; }
.about-copy { align-self: end; }
.about-copy p { margin: 0 0 22px; color: rgba(11,9,18,.72); font-size: 19px; }

.contact { background: #08080b; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: start; }
.contact-copy { position: sticky; top: 145px; }
.contact h2 { max-width: 600px; }
.contact-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; margin-top: 42px; }
.contact-actions > a:first-child { font-size: 21px; font-weight: 700; }
.whatsapp-button { display: inline-flex; align-items: center; gap: 10px; padding: 11px 15px; border: 1px solid rgba(37,211,102,.32); border-radius: 999px; background: rgba(37,211,102,.08); color: #baf9cf; font-size: 13px; font-weight: 700; text-decoration: none; transition: transform .25s var(--ease),background .25s ease; }
.whatsapp-button:hover { transform: translateY(-2px); background: rgba(37,211,102,.14); }
.whatsapp-button svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.contact-form { padding: 34px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--surface); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label { display: block; margin-bottom: 18px; color: var(--silver); font-size: 12px; font-weight: 680; }
.contact-form input,.contact-form textarea,.contact-form select { width: 100%; margin-top: 9px; padding: 14px 15px; border: 1px solid var(--line); border-radius: 12px; background: #090a0d; color: var(--white); transition: border-color .2s ease,box-shadow .2s ease; }
.contact-form select { appearance: none; background-image: linear-gradient(45deg,transparent 50%,#858791 50%),linear-gradient(135deg,#858791 50%,transparent 50%); background-position: calc(100% - 18px) 50%,calc(100% - 13px) 50%; background-size: 5px 5px,5px 5px; background-repeat: no-repeat; }
.contact-form input:focus,.contact-form textarea:focus,.contact-form select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.contact-form textarea { resize: vertical; min-height: 135px; }
.form-submit { width: 100%; }
.form-message { margin-bottom: 20px; padding: 13px 15px; border-radius: 12px; }
.form-message.success { background: rgba(37,211,102,.1); color: #baf9cf; }
.form-message.error { background: rgba(255,83,83,.1); color: #ffb9b9; }

.site-footer { padding: 75px 0 32px; border-top: 1px solid var(--line-soft); background: #050507; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 70px; }
.footer-grid p { max-width: 390px; color: var(--muted); }
.footer-grid a { display: block; width: fit-content; margin: 9px 0; color: var(--silver); text-decoration: none; }
.footer-grid a:hover { color: var(--white); }
.footer-brand { display: flex!important; color: var(--white)!important; }
.footer-label { color: var(--white)!important; font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 62px; padding-top: 24px; border-top: 1px solid var(--line-soft); color: #676972; font-size: 12px; }
.footer-bottom a { color: inherit; text-decoration: none; }
.whatsapp-float { position: fixed; z-index: 90; right: 22px; bottom: 22px; display: flex; align-items: center; gap: 9px; padding: 11px 15px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; background: var(--success); color: #07130a; font-size: 12px; font-weight: 800; text-decoration: none; box-shadow: 0 12px 42px rgba(0,0,0,.35); transition: transform .25s var(--ease); }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.02); }
.whatsapp-float svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.content-area { min-height: 70vh; padding-top: 120px; }

.has-js [data-reveal] { opacity: 0; transform: translateY(38px); transition: opacity .8s var(--ease),transform .8s var(--ease); }
.has-js [data-reveal].visible { opacity: 1; transform: none; }

@keyframes word-in { to { opacity: 1; transform: none; } }
@keyframes orb-drift { to { transform: translate(80px,80px) scale(1.15); } }
@keyframes status-pulse { 50% { box-shadow: 0 0 0 10px rgba(37,211,102,0); } }
@keyframes phone-float { 50% { transform: rotate(-2deg) translateY(-12px) translateZ(65px); } }
@keyframes chip-float { 50% { transform: translateY(-9px); } }
@keyframes scroll-line { 0% { transform: translateX(-110%); } 55%,100% { transform: translateX(190%); } }
@keyframes stage-one { 50% { transform: rotate(-2deg) translate(-5px,6px); } }
@keyframes stage-two { 50% { transform: rotate(2deg) translate(4px,-7px); } }
@keyframes stage-three { 50% { transform: translate(8px,-5px); } }
@keyframes graph-grow { from { transform: scaleY(.55); } to { transform: scaleY(1); } }
@keyframes asset-left { 50% { transform: translateX(-125px) rotateY(15deg) rotate(-12deg); } }
@keyframes asset-right { 50% { transform: translateX(125px) rotateY(-15deg) rotate(12deg); } }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr 470px; gap: 30px; }
  .hero h1 { font-size: clamp(60px,8vw,90px); }
  .hero-studio { min-height: 550px; }
  .phone-shell { right: -8px; }
  .website-feature { grid-template-columns: 1fr; }
  .website-offer { border-right: 0; border-bottom: 1px solid var(--line); }
  .website-offer h3 { margin-top: 60px; }
  .template-card:nth-child(even) { transform: translateY(28px); }
  .template-card:nth-child(even):hover { transform: translateY(20px); }
  .package-grid { grid-template-columns: 1fr 1fr; }
  .package-card:last-child { grid-column: 1/-1; min-height: 480px; }
}

@media (max-width: 900px) {
  .shell { width: min(calc(100% - 36px),var(--max)); }
  .section-pad { padding: 96px 0; }
  .header-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-nav { position: fixed; inset: 82px 18px auto; display: block; max-height: 0; overflow: hidden; margin: 0; padding: 0 24px; border: 1px solid transparent; border-radius: 22px; background: rgba(13,14,18,.97); opacity: 0; transform: translateY(-12px); transition: max-height .4s var(--ease),opacity .3s ease,transform .4s var(--ease),padding .4s ease,border-color .4s ease; }
  .site-nav.open { max-height: 420px; padding: 22px 24px; border-color: var(--line); opacity: 1; transform: none; }
  .menu { align-items: stretch; flex-direction: column; gap: 0; }
  .menu a { display: block; padding: 14px 0; border-bottom: 1px solid var(--line-soft); font-size: 18px; }
  .menu a::after { display: none; }
  .hero { min-height: auto; padding-top: 138px; padding-bottom: 90px; }
  .hero-grid { grid-template-columns: 1fr; gap: 42px; }
  .hero-copy { max-width: 760px; }
  .hero-studio { width: min(100%,620px); min-height: 580px; margin-left: auto; }
  .scroll-cue { display: none; }
  .proof-grid { grid-template-columns: 220px 1fr; }
  .proof-stat strong { font-size: 52px; }
  .proof-industries { padding-left: 28px; }
  .industry-track { overflow-x: auto; padding-bottom: 5px; }
  .section-heading-row { grid-template-columns: 1fr; gap: 28px; }
  .template-grid { grid-template-columns: 1fr; }
  .template-card:nth-child(even),.template-card:nth-child(even):hover { transform: none; }
  .template-card:hover { transform: translateY(-6px); }
  .template-screen { aspect-ratio: 1.7 / 1; }
  .template-cta { margin-top: 28px; }
  .service-card { min-height: 570px; }
  .process-grid { grid-template-columns: 1fr; gap: 50px; }
  .process-intro,.contact-copy { position: static; }
  .package-grid { grid-template-columns: 1fr; }
  .package-card,.package-card:last-child { grid-column: auto; min-height: 500px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 55px; }
}

@media (max-width: 650px) {
  .shell { width: min(calc(100% - 28px),var(--max)); }
  .section-pad { padding: 78px 0; }
  .nav-wrap { height: 74px; }
  .site-nav { top: 74px; left: 14px; right: 14px; }
  .hero { padding-top: 122px; }
  .hero h1 { font-size: clamp(50px,15vw,68px); line-height: .9; }
  .hero-text { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-studio { min-height: 440px; padding-inline: 0; }
  .studio-label { inset-inline: 2px; }
  .browser-shell { border-radius: 20px; }
  .browser-site { min-height: 350px; padding: 20px; }
  .mock-site-nav span { display: none; }
  .mock-site-copy { width: 70%; padding-top: 72px; }
  .mock-site-copy strong { font-size: 29px; }
  .phone-shell { right: -2px; width: 132px; min-height: 260px; border-radius: 23px; }
  .phone-post { min-height: 218px; padding: 13px; }
  .phone-post strong { font-size: 18px; }
  .floating-chip { font-size: 8px; }
  .chip-one { left: -5px; }.chip-two { right: 4px; }.chip-three { left: 10%; bottom: 5px; }
  .proof-grid { min-height: 220px; grid-template-columns: 1fr; padding-block: 28px; }
  .proof-stat { padding: 0 0 25px; border-right: 0; border-bottom: 1px solid var(--line-soft); }
  .proof-industries { padding: 25px 0 0; }
  .section-heading { margin-bottom: 48px; }
  .section-heading h2,.process-intro h2,.about h2,.contact h2 { font-size: clamp(40px,12vw,54px); }
  .section-heading p,.process-intro p,.contact-copy > p { font-size: 17px; }
  .website-feature { border-radius: 24px; }
  .website-offer { padding: 28px; }
  .website-offer h3 { margin-top: 46px; font-size: 34px; }
  .website-system { min-height: 560px; padding: 15px; }
  .stage-wireframe { left: 25px; width: 72%; height: 320px; }
  .stage-design { right: 22px; width: 70%; height: 340px; }
  .stage-design strong { font-size: 31px; }
  .stage-live { left: 30px; width: 68%; }
  .template-grid { gap: 15px; }
  .template-card { padding: 8px 8px 0; border-radius: 24px; }
  .template-browser { border-radius: 18px; }
  .template-browser-bar { height: 38px; padding-inline: 12px; }
  .template-screen { aspect-ratio: 1.35 / 1; }
  .template-meta { align-items: flex-end; padding: 20px 12px 22px; }
  .template-meta strong { font-size: 26px; white-space: normal; }
  .template-open { font-size: 0; }
  .template-open i { width: 38px; height: 38px; font-size: 13px; }
  .template-cta { align-items: stretch; flex-direction: column; gap: 22px; padding: 23px; }
  .template-cta .button { width: 100%; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card,.service-graphic { grid-column: auto; min-height: 560px; padding: 25px; border-radius: 24px; }
  .service-visual,.service-graphic .service-visual { height: 230px; }
  .service-card h3 { font-size: 31px; }
  .brand-visual { grid-template-columns: 1.3fr 1fr 28px 28px 28px; padding: 15px; }
  .brand-visual b { height: 150px; font-size: 65px; }
  .brand-visual > span { font-size: 40px; }
  .brand-visual i { height: 28px; }
  .social-visual { grid-template-columns: 1.3fr .8fr; }
  .social-visual > div:last-child { display: none; }
  .graphic-visual { grid-template-columns: 1.2fr .8fr; }
  .graphic-visual > div:last-child { display: none; }
  .process-list { padding-left: 23px; }
  .process-item { grid-template-columns: 46px 1fr; min-height: 190px; }
  .process-item h3 { font-size: 31px; }
  .package-card { min-height: 500px; padding: 27px; border-radius: 24px; }
  .about-marquee { top: 25px; }
  .about-grid { padding-top: 115px; }
  .contact-form { padding: 23px; border-radius: 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 10px; }
  .whatsapp-float { right: 14px; bottom: 14px; padding: 12px; }
  .whatsapp-float span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { animation-duration: .01ms!important; animation-iteration-count: 1!important; transition-duration: .01ms!important; }
  .has-js [data-reveal],.has-js .hero h1 .word { opacity: 1; transform: none; }
  .hero-studio { transform: none!important; }
}
