:root {
  --font-montserrat: 'Montserrat', system-ui, sans-serif;
  --ink: #040605;
  --ink-soft: #101612;
  --blue: #b7ff32;
  --blue-dark: #78b900;
  --paper: #ffffff;
  --mist: #f3f6f1;
  --line: #dce3d9;
  --muted: #5f6b7a;
  --soft-white: #c9d1dc;
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-montserrat), system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
::selection { color: var(--ink); background: var(--blue); }

.hidden { display: none !important; }

.page-shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 112px 0; }
.section-dark { color: white; background: var(--ink); }
.section-muted { background: var(--mist); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(183, 255, 50, .12);
  background: var(--ink);
}
.nav-shell {
  width: min(1180px, calc(100% - 48px));
  min-height: 78px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 30px;
}
.brand-lockup { display: inline-flex; align-items: center; margin-right: auto; }
.header-brand { width: 100px; height: 60px; margin-right: 0; padding: 0; overflow: hidden; border: 1px solid rgba(183,255,50,.18); border-radius: 14px; background: var(--ink); box-shadow: inset 0 0 20px rgba(183,255,50,.025); transition: border-color .2s ease, transform .2s ease; }
.header-brand:hover { border-color: rgba(183,255,50,.42); transform: translateY(-1px); }
.header-brand img { width: 100%; height: 100%; object-fit: contain; object-position: center; border-radius: inherit; transform: scale(1.14); }
.brand-lockup span { display: flex; flex-direction: column; line-height: 1; }
.brand-lockup strong { font-size: 15px; letter-spacing: .2em; }
.brand-lockup small { margin-top: 7px; color: var(--muted); font-size: 8px; letter-spacing: .15em; text-transform: uppercase; }
.desktop-nav { display: flex; flex: 1; align-items: center; justify-content: center; gap: clamp(28px, 4vw, 64px); color: #d8dfd9; font-size: 13px; font-weight: 700; }
.desktop-nav a { position: relative; padding-block: 8px; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: 2px; left: 0; height: 2px; background: var(--blue); transform: scaleX(0); transition: transform .2s ease; }
.desktop-nav a:hover::after { transform: scaleX(1); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  color: var(--ink);
  border: 1px solid var(--blue);
  border-radius: 12px;
  background: var(--blue);
  box-shadow: 0 12px 30px rgba(128, 190, 26, .18);
  font-size: 14px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { color: white; background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(128, 190, 26, .26); }
.button:disabled { cursor: wait; opacity: .72; transform: none; }
.button-small { min-height: 42px; padding-inline: 18px; border-radius: 10px; font-size: 12px; }
.express-label-short { display: none; }
.text-link { display: inline-flex; align-items: center; gap: 9px; font-size: 14px; font-weight: 800; }
.text-link-light { color: var(--soft-white); }
.text-link:hover { color: white; }

.mobile-menu { display: none; position: relative; }
.mobile-menu summary { width: 44px; height: 44px; display: grid; place-items: center; list-style: none; cursor: pointer; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.mobile-menu summary span,
.mobile-menu summary span::before,
.mobile-menu summary span::after { content: ""; width: 22px; height: 2px; display: block; position: relative; background: white; }
.mobile-menu summary span::before { position: absolute; top: -7px; }
.mobile-menu summary span::after { position: absolute; top: 7px; }
.mobile-menu nav { position: absolute; top: 53px; right: 0; width: 240px; padding: 12px; border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: 0 18px 60px rgba(13, 17, 23, .16); }
.mobile-menu nav a { display: block; padding: 11px 12px; border-radius: 9px; font-size: 14px; font-weight: 700; }
.mobile-menu nav a:hover { color: var(--blue); background: var(--mist); }

.express-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  margin: 0;
  padding: 24px;
  border: 0;
  background: transparent;
}
.express-dialog[open] { display: grid; place-items: center; }
.express-dialog::backdrop { background: rgba(4, 9, 17, .78); backdrop-filter: blur(8px); }
.express-panel {
  width: min(680px, 100%);
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  position: relative;
  padding: 42px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 26px;
  color: var(--ink);
  background: white;
  box-shadow: 0 32px 100px rgba(0,0,0,.32);
}
.express-close {
  width: 42px;
  height: 42px;
  position: absolute;
  top: 18px;
  right: 18px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #4f5b69;
  background: var(--mist);
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
}
.express-heading { padding-right: 46px; }
.express-heading h2, .express-result h2 { max-width: 570px; margin: 0; font-size: clamp(30px, 5vw, 44px); line-height: 1.12; letter-spacing: -.04em; }
.express-heading > p, .express-result > p { max-width: 540px; margin: 16px 0 27px; color: var(--muted); font-size: 13px; }
.express-form label { display: block; margin-bottom: 17px; }
.express-form label > span { display: block; margin-bottom: 7px; color: #394556; font-size: 11px; font-weight: 800; }
.express-form input, .express-form select, .express-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  color: var(--ink);
  background: #fbfcfe;
  font-size: 13px;
  outline: none;
}
.express-form input:focus, .express-form select:focus, .express-form textarea:focus { border-color: var(--blue-dark); box-shadow: 0 0 0 3px rgba(183,255,50,.14); }
.express-form textarea { min-height: 118px; resize: vertical; }
.express-actions { display: flex; align-items: center; gap: 18px; }
.express-actions small { max-width: 230px; color: var(--muted); font-size: 9px; line-height: 1.5; }
.express-honeypot { display: none; }
.express-error { margin: 15px 0 0; color: #aa2937; font-size: 11px; font-weight: 700; }
.express-error a { text-decoration: underline; }
.express-result { min-height: 420px; display: flex; align-items: flex-start; justify-content: center; flex-direction: column; }
.express-result-icon { width: 56px; height: 56px; margin-bottom: 24px; display: grid; place-items: center; border-radius: 50%; color: white; background: #1fa96b; font-size: 25px; font-weight: 900; }
.express-result .button { margin-top: 8px; }

.hero {
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(rgba(183, 255, 50, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(183, 255, 50, .055) 1px, transparent 1px),
    radial-gradient(circle at 78% 18%, rgba(123, 196, 18, .16), transparent 34%);
  background-size: 54px 54px, 54px 54px, auto;
}
.hero::after { content: ""; position: absolute; inset: auto -10% -70% 45%; height: 700px; border-radius: 50%; background: rgba(0, 113, 255, .06); filter: blur(70px); }
.hero-grid { min-height: 730px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 64px; padding-block: 92px 120px; position: relative; z-index: 1; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--blue-dark); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.eyebrow-light { color: var(--blue); }
.hero h1 { max-width: 760px; margin: 0; color: white; font-size: clamp(48px, 6.2vw, 88px); line-height: .96; letter-spacing: -.06em; }
.hero h1 em { color: var(--blue); font-style: normal; }
.hero-copy > p { max-width: 660px; margin: 26px 0 34px; color: var(--soft-white); font-size: 17px; line-height: 1.8; }
.hero-actions { display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }
.hero-note { display: flex; align-items: center; gap: 10px; margin-top: 34px; color: #8d9aab; font-size: 12px; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #39d98a; box-shadow: 0 0 0 5px rgba(57, 217, 138, .12); }
.hero-visual { min-height: 510px; position: relative; display: grid; place-items: center; }
.performance-panel { width: 100%; max-width: 520px; overflow: hidden; border: 1px solid rgba(183,255,50,.24); border-radius: 8px; background: rgba(7,12,8,.86); box-shadow: 0 42px 120px rgba(0,0,0,.5), 0 0 80px rgba(183,255,50,.07); transform: perspective(1100px) rotateY(-5deg) rotateX(2deg); }
.panel-bar { height: 46px; padding: 0 16px; display: flex; align-items: center; gap: 7px; border-bottom: 1px solid rgba(255,255,255,.09); background: rgba(255,255,255,.035); }
.panel-bar > span { width: 7px; height: 7px; border-radius: 50%; background: #3a433c; }
.panel-bar > span:first-child { background: var(--blue); box-shadow: 0 0 14px rgba(183,255,50,.7); }
.panel-bar code { margin-left: auto; color: #69766c; font-size: 9px; letter-spacing: .08em; }
.panel-body { padding: 25px 22px 18px; display: grid; gap: 7px; }
.code-line { min-height: 38px; padding: 0 12px; display: grid; grid-template-columns: 30px 1fr 7px; align-items: center; color: #829087; border-left: 2px solid transparent; font-size: 12px; }
.code-line > span { color: #3f4b43; font-size: 9px; }
.code-line i { width: 5px; height: 5px; border-radius: 50%; background: #344037; }
.code-line.active { color: white; border-color: var(--blue); background: linear-gradient(90deg, rgba(183,255,50,.11), transparent); }
.code-line.active i { background: var(--blue); box-shadow: 0 0 12px var(--blue); }
.performance-score { margin: 8px 22px 22px; padding: 22px; display: grid; grid-template-columns: 1fr auto; align-items: end; border: 1px solid rgba(183,255,50,.13); background: rgba(183,255,50,.035); }
.performance-score small { align-self: start; color: #77847b; font-size: 8px; letter-spacing: .15em; }
.performance-score strong { grid-row: span 2; color: var(--blue); font-size: 44px; line-height: .9; letter-spacing: -.08em; }
.performance-score strong span { font-size: 66px; }
.performance-score em { color: white; font-size: 9px; font-style: normal; font-weight: 800; letter-spacing: .13em; }
.hero-signal { position: absolute; min-width: 148px; padding: 12px 15px; border: 1px solid rgba(183,255,50,.18); border-radius: 4px; background: rgba(7,10,8,.94); box-shadow: 0 16px 40px rgba(0,0,0,.34); }
.hero-signal span { display: block; color: #7890aa; font-size: 8px; font-weight: 800; letter-spacing: .16em; }
.hero-signal strong { display: block; margin-top: 3px; color: white; font-size: 13px; }
.hero-marquee { position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; overflow: hidden; border-block: 1px solid rgba(183,255,50,.15); background: rgba(183,255,50,.045); }
.hero-marquee div { width: max-content; padding: 10px 0; color: #647067; font-size: 9px; font-weight: 800; letter-spacing: .18em; animation: marquee 24s linear infinite; }
.hero-marquee span { margin: 0 24px; color: var(--blue); }
@keyframes marquee { to { transform: translateX(-50%); } }
.signal-one { top: 44px; right: -18px; }
.signal-two { bottom: 36px; left: -18px; }

.proof-strip { border-bottom: 1px solid var(--line); background: white; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid > div { min-height: 116px; padding: 25px 30px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid var(--line); }
.proof-grid > div:first-child { border-left: 1px solid var(--line); }
.proof-grid strong { color: var(--ink); font-size: 20px; letter-spacing: -.02em; }
.proof-grid span { margin-top: 3px; color: var(--muted); font-size: 11px; }

.section-heading { margin-bottom: 54px; }
.heading-split { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 80px; }
.section-heading h2,
.compact-heading h2 { max-width: 760px; margin: 0; font-size: clamp(34px, 4.2vw, 54px); line-height: 1.13; letter-spacing: -.04em; }
.section-heading > p { margin: 0 0 4px; color: var(--muted); font-size: 15px; }
.solution-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.solution-card { min-height: 540px; padding: 30px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: white; transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.solution-card:hover { transform: translateY(-8px); border-color: rgba(120,185,0,.5); box-shadow: 0 28px 70px rgba(35, 56, 18, .12); }
.card-topline { display: flex; align-items: center; gap: 12px; color: var(--blue); font-size: 11px; font-weight: 800; }
.card-topline i { height: 1px; flex: 1; background: linear-gradient(90deg, rgba(120,185,0,.55), transparent); }
.card-kicker { margin-top: 35px; color: var(--blue-dark); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.solution-card h3 { margin: 10px 0 13px; font-size: 25px; line-height: 1.18; letter-spacing: -.03em; }
.solution-card > p { margin: 0; color: var(--muted); font-size: 13px; }
.solution-card ul { margin: 28px 0 32px; padding: 0; list-style: none; display: grid; gap: 12px; }
.solution-card li { position: relative; padding-left: 21px; color: #354252; font-size: 12px; font-weight: 650; }
.solution-card li::before { content: ""; position: absolute; top: .63em; left: 0; width: 7px; height: 7px; border: 2px solid var(--blue); border-radius: 50%; }
.card-link { margin-top: auto; padding-top: 20px; display: flex; justify-content: space-between; border-top: 1px solid var(--line); color: var(--ink); font-size: 12px; font-weight: 800; }
.card-link span { color: var(--blue); font-size: 16px; }
.card-link:hover { color: var(--blue); }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--line); }
.process-card { min-height: 310px; padding: 34px; background: white; }
.process-card > span { color: var(--blue); font-size: 11px; font-weight: 800; }
.process-card h3 { margin: 76px 0 12px; font-size: 25px; letter-spacing: -.03em; }
.process-card p { margin: 0; color: var(--muted); font-size: 13px; }

.about-grid { display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 94px; }
.about-statement { min-height: 520px; padding: 42px; display: flex; justify-content: space-between; flex-direction: column; position: relative; overflow: hidden; color: white; border: 1px solid rgba(183,255,50,.22); border-radius: 8px; background: var(--ink); box-shadow: 0 30px 80px rgba(7,10,8,.16); }
.about-statement::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(183,255,50,.055) 1px, transparent 1px), linear-gradient(90deg, rgba(183,255,50,.055) 1px, transparent 1px); background-size: 42px 42px; }
.about-statement::after { content: "+"; position: absolute; right: 24px; bottom: -42px; color: rgba(183,255,50,.11); font-size: 230px; font-weight: 300; line-height: 1; }
.about-index { position: relative; z-index: 1; color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .16em; }
.about-statement p { max-width: 430px; margin: auto 0 0; position: relative; z-index: 1; font-size: clamp(25px, 3vw, 38px); font-weight: 700; line-height: 1.18; letter-spacing: -.04em; }
.portrait-wrap { position: relative; }
.portrait-wrap::before { content: ""; position: absolute; inset: -18px 18px 18px -18px; z-index: -1; border: 1px solid rgba(120,185,0,.26); border-radius: 26px; }
.portrait-wrap img { width: 100%; aspect-ratio: 1 / 1.06; object-fit: cover; object-position: center top; border-radius: 24px; }
.portrait-caption { position: absolute; right: -22px; bottom: 28px; min-width: 195px; padding: 15px 18px; border: 1px solid var(--line); border-radius: 13px; background: rgba(255,255,255,.95); box-shadow: 0 18px 50px rgba(13,17,23,.16); }
.portrait-caption span { display: block; color: var(--muted); font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.portrait-caption strong { display: block; margin-top: 3px; font-size: 15px; }
.about-copy h2 { max-width: 700px; margin: 0 0 26px; font-size: clamp(34px, 4.2vw, 54px); line-height: 1.13; letter-spacing: -.04em; }
.about-copy > p { margin: 0 0 17px; color: var(--muted); font-size: 15px; }
.expertise-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 30px 0 24px; }
.expertise-list span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; background: var(--mist); color: #344051; font-size: 10px; font-weight: 800; }
.about-copy .text-link { color: var(--blue-dark); }

.heading-dark h2 { color: white; }
.heading-dark > p { color: #8d9aab; }
.projects { position: relative; overflow: hidden; }
.projects::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(183,255,50,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(183,255,50,.05) 1px, transparent 1px); background-size: 54px 54px; pointer-events: none; }
.projects .page-shell { position: relative; z-index: 1; }
.projects-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.project-card { min-height: 510px; padding: 32px; display: flex; flex-direction: column; justify-content: flex-start; position: relative; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); transition: transform .22s ease, border-color .22s ease; }
.project-card::after { content: ""; position: absolute; width: 240px; height: 240px; right: -100px; top: 40px; border-radius: 50%; border: 1px solid rgba(183,255,50,.18); box-shadow: inset 0 0 70px rgba(183,255,50,.04); }
.project-card:hover { transform: translateY(-7px); border-color: rgba(183,255,50,.52); }
.project-preview { position: relative; z-index: 1; aspect-ratio: 16 / 9; margin: 20px 0 26px; overflow: hidden; border: 1px solid rgba(255,255,255,.12); border-radius: 14px; background: #0d1117; }
.project-preview img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .35s ease; }
.project-card:hover .project-preview img { transform: scale(1.025); }
.project-copy { position: relative; z-index: 1; margin-top: auto; padding-right: 28px; }
.project-index { position: relative; z-index: 1; }
.project-index { color: #728198; font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.project-tag { display: inline-block; margin-bottom: 14px; color: var(--blue); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.project-card h3 { max-width: 450px; margin: 0 0 13px; color: white; font-size: 27px; line-height: 1.18; letter-spacing: -.03em; }
.project-card p { max-width: 470px; margin: 0; color: #9ba7b6; font-size: 13px; }
.project-arrow { position: absolute; right: 27px; bottom: 25px; color: var(--blue); font-size: 25px; }

.model-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.model-grid article { min-height: 390px; padding: 31px; display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.model-grid article > span { color: var(--blue-dark); font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.model-grid h3 { margin: 42px 0 13px; font-size: 24px; letter-spacing: -.03em; }
.model-grid p { margin: 0; color: var(--muted); font-size: 13px; }
.model-grid ul { margin: auto 0 0; padding: 24px 0 0; border-top: 1px solid var(--line); list-style: none; display: grid; gap: 10px; }
.model-grid li { color: #364354; font-size: 12px; font-weight: 700; }
.model-grid li::before { content: "✓"; margin-right: 9px; color: var(--blue); }
.model-grid .model-featured { color: white; border-color: var(--ink); background: var(--ink); box-shadow: 0 24px 60px rgba(13,17,23,.15); transform: translateY(-10px); }
.model-featured > span { color: var(--blue) !important; }
.model-featured p, .model-featured li { color: #b7c0cd; }
.model-featured ul { border-color: rgba(255,255,255,.12); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: 74px; }
.contact-copy h2 { margin: 0; font-size: clamp(34px, 4.2vw, 54px); line-height: 1.13; letter-spacing: -.04em; }
.contact-copy > p { margin: 23px 0 30px; color: var(--muted); font-size: 15px; }
.contact-details { display: grid; gap: 10px; }
.contact-details > * { padding: 15px 0; display: flex; flex-direction: column; border-bottom: 1px solid var(--line); }
.contact-details small { color: var(--muted); font-size: 9px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-details strong { margin-top: 4px; font-size: 13px; }
.contact-form { padding: 36px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 28px 70px rgba(34,54,80,.08); }
.contact-form label { display: block; margin-bottom: 20px; }
.contact-form label > span { display: block; margin-bottom: 7px; color: #394556; font-size: 11px; font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; border: 1px solid var(--line); border-radius: 11px; background: #fbfcfe; padding: 13px 14px; color: var(--ink); font: inherit; font-size: 13px; outline: none; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--blue-dark); box-shadow: 0 0 0 3px rgba(183,255,50,.14); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-actions { display: flex; align-items: center; gap: 18px; }
.form-actions small { max-width: 180px; color: var(--muted); font-size: 9px; line-height: 1.5; }
.form-success { min-height: 20px; margin: 15px 0 0; color: #16794a; font-size: 11px; font-weight: 700; }

.footer { padding: 58px 0 24px; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr .7fr; align-items: start; gap: 50px; }
.footer-brand { width: 210px; margin: 0; color: white; }
.footer-brand img { width: 210px; height: auto; object-fit: contain; }
.footer-brand small { color: #8794a4; }
.footer-top > p { margin: 0; color: #8794a4; font-size: 12px; }
.footer nav { display: grid; gap: 7px; }
.footer nav a { color: #b4bfcc; font-size: 12px; font-weight: 700; }
.footer nav a:hover { color: white; }
.footer-support-link { width: max-content; margin-top: 8px; padding: 0 0 3px; border: 0; border-bottom: 1px solid rgba(183,255,50,.4); color: var(--blue); background: transparent; cursor: pointer; font-size: 11px; font-weight: 800; }
.footer-support-link:hover { color: white; border-color: white; }
.footer-bottom { margin-top: 40px; padding-top: 20px; display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,.1); color: #697585; font-size: 10px; }
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 45; width: 54px; height: 54px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; color: white; background: #1ec96b; box-shadow: 0 12px 30px rgba(0,0,0,.22); font-size: 10px; font-weight: 900; letter-spacing: .04em; }
.whatsapp-float:hover { transform: translateY(-2px); }

/* Nova direção visual: performance digital */
.site-header { transition: min-height .25s ease, box-shadow .25s ease; }
.site-header.is-scrolled { background: var(--ink); box-shadow: 0 14px 42px rgba(0,0,0,.28); }
.desktop-nav a.is-active { color: var(--blue-dark); }
.desktop-nav a.is-active::after { transform: scaleX(1); }

.solutions { position: relative; }
.solutions::before { content: "BUILD / TEST / EVOLVE"; position: absolute; top: 38px; right: 4vw; color: rgba(7,10,8,.055); font-size: clamp(34px, 7vw, 100px); font-weight: 900; letter-spacing: -.07em; pointer-events: none; }
.solution-card { position: relative; overflow: hidden; border-radius: 8px; }
.solution-card::after { content: ""; width: 130px; height: 130px; position: absolute; top: -70px; right: -70px; border: 1px solid rgba(120,185,0,.17); border-radius: 50%; transition: transform .35s ease; }
.solution-card:hover::after { transform: scale(1.35); }
.solution-card-accent { color: white; border-color: var(--ink); background: var(--ink); box-shadow: 0 28px 70px rgba(7,10,8,.15); }
.solution-card-accent .card-kicker, .solution-card-accent .card-topline, .solution-card-accent .card-link, .solution-card-accent .card-link span { color: var(--blue); }
.solution-card-accent > p, .solution-card-accent li { color: #aab4ac; }
.solution-card-accent .card-link { border-color: rgba(255,255,255,.12); }
.solution-card-accent li::before { border-color: var(--blue); }

.process-grid { border-radius: 8px; }
.process-card { position: relative; overflow: hidden; }
.process-card::after { content: ""; position: absolute; right: 26px; bottom: 25px; width: 34px; height: 5px; background: linear-gradient(90deg, var(--blue) 0 50%, var(--line) 50%); }
.process-card:hover { background: #f9fbf7; }
.process-card h3 { transition: transform .25s ease; }
.process-card:hover h3 { transform: translateX(7px); }

.projects-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.project-card { --mx: 50%; --my: 50%; border-radius: 8px; }
.project-card::before { content: ""; position: absolute; inset: 0; z-index: 0; opacity: 0; background: radial-gradient(circle 260px at var(--mx) var(--my), rgba(183,255,50,.12), transparent 72%); transition: opacity .25s ease; pointer-events: none; }
.project-card:hover::before { opacity: 1; }
.project-card, .project-card:first-child, .project-card:nth-child(2), .project-card:nth-child(n+3) { grid-column: auto; }
.project-card .project-preview, .project-card:first-child .project-preview { aspect-ratio: 16 / 9; }
.project-preview { border-radius: 4px; filter: saturate(.72) contrast(1.03); }
.project-preview::after { content: "ABRIR PROJETO ↗"; position: absolute; inset: 0; display: grid; place-items: center; color: var(--ink); background: rgba(183,255,50,.9); opacity: 0; font-size: 10px; font-weight: 900; letter-spacing: .14em; transition: opacity .25s ease; }
.project-card:hover .project-preview::after { opacity: 1; }
.project-card:hover .project-preview img { transform: scale(1.055); }

.model-grid article { border-radius: 8px; transition: transform .25s ease, border-color .25s ease; }
.model-grid article:hover { transform: translateY(-6px); border-color: rgba(120,185,0,.42); }
.model-grid .model-featured { border-color: rgba(183,255,50,.34); background: linear-gradient(145deg, #111812, #070a08); }
.model-grid .model-featured:hover { transform: translateY(-16px); }

.contact { position: relative; overflow: hidden; }
.contact::after { content: "LET'S BUILD"; position: absolute; right: -2vw; bottom: -4vw; color: rgba(7,10,8,.045); font-size: clamp(76px, 14vw, 210px); font-weight: 900; letter-spacing: -.09em; pointer-events: none; }
.contact-grid { position: relative; z-index: 1; }
.contact-form { border-radius: 8px; }
.expertise-list span { border-radius: 4px; }

.tech-support { padding-block: 84px; border-top: 1px solid var(--line); background: #fafbf9; }
.support-shell { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 80px; }
.support-intro h2 { max-width: 520px; margin: 0; font-size: clamp(31px, 3.5vw, 46px); line-height: 1.12; letter-spacing: -.04em; }
.support-intro > p { max-width: 530px; margin: 21px 0 0; color: var(--muted); font-size: 14px; }
.support-options { border-top: 1px solid var(--line); }
.support-options article { padding: 23px 0; display: grid; grid-template-columns: 105px 1fr 1.25fr; align-items: center; gap: 22px; border-bottom: 1px solid var(--line); }
.support-options article > span { color: var(--blue-dark); font-size: 8px; font-weight: 800; letter-spacing: .13em; }
.support-options h3 { margin: 0; font-size: 17px; letter-spacing: -.02em; }
.support-options p { margin: 0; color: var(--muted); font-size: 12px; }
.support-action { margin-top: 25px; padding: 0 0 5px; border: 0; border-bottom: 1px solid var(--blue-dark); color: var(--ink); background: transparent; cursor: pointer; font-size: 12px; font-weight: 800; }
.support-action span { margin-left: 8px; color: var(--blue-dark); }
.support-action:hover { color: var(--blue-dark); }

.motion-ready .reveal-target { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.motion-ready .reveal-target.in-view { opacity: 1; transform: translateY(0); }
.motion-ready .solution-card.reveal-target.in-view:hover { transform: translateY(-8px); }
.motion-ready .project-card.reveal-target.in-view:hover { transform: translateY(-7px); }
.motion-ready .model-grid .model-featured.reveal-target.in-view { transform: translateY(-10px); }
.motion-ready .model-grid article.reveal-target.in-view:hover { transform: translateY(-6px); }
.motion-ready .model-grid .model-featured.reveal-target.in-view:hover { transform: translateY(-16px); }
.motion-ready .solution-card:nth-child(2),
.motion-ready .process-card:nth-child(2),
.motion-ready .project-card:nth-child(2) { transition-delay: .08s; }
.motion-ready .solution-card:nth-child(3),
.motion-ready .process-card:nth-child(3),
.motion-ready .project-card:nth-child(3) { transition-delay: .16s; }
.performance-panel { animation: panel-float 5.5s ease-in-out infinite; }
.code-line.active { animation: code-pulse 2.4s ease-in-out infinite; }
.status-dot { background: var(--blue); box-shadow: 0 0 0 5px rgba(183,255,50,.12), 0 0 18px rgba(183,255,50,.35); }
@keyframes panel-float { 50% { transform: perspective(1100px) rotateY(-2deg) rotateX(1deg) translateY(-9px); } }
@keyframes code-pulse { 50% { background-color: rgba(183,255,50,.17); } }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .header-brand { margin-right: auto; }
  .mobile-menu { display: block; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; padding-block: 76px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 430px; width: min(600px, 100%); margin-inline: auto; }
  .heading-split { grid-template-columns: 1fr; gap: 24px; }
  .solution-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: auto; }
  .process-grid, .projects-grid, .model-grid { grid-template-columns: 1fr; }
  .project-card, .project-card:first-child, .project-card:nth-child(2), .project-card:nth-child(n+3) { grid-column: auto; }
  .project-card:first-child .project-preview { aspect-ratio: 16 / 9; }
  .process-card { min-height: auto; }
  .process-card h3 { margin-top: 38px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 54px; }
  .support-shell { grid-template-columns: 1fr; gap: 44px; }
  .portrait-wrap { width: min(560px, 100%); }
  .about-statement { min-height: 390px; }
  .model-grid .model-featured { transform: none; }
  .model-grid .model-featured:hover { transform: translateY(-6px); }
  .motion-ready .model-grid .model-featured.reveal-target.in-view { transform: none; }
  .motion-ready .model-grid .model-featured.reveal-target.in-view:hover { transform: translateY(-6px); }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .page-shell, .nav-shell { width: min(100% - 32px, 1180px); }
  .section { padding: 82px 0; }
  .nav-shell { min-height: 70px; }
  .nav-shell { gap: 10px; }
  .header-brand { width: 80px; height: 50px; }
  .header-brand img { width: 100%; height: 100%; }
  .express-trigger { min-height: 40px; padding-inline: 13px; }
  .express-trigger .express-label-full { display: none; }
  .express-trigger .express-label-short { display: inline; }
  .express-dialog { padding: 12px; }
  .express-panel { max-height: calc(100dvh - 24px); padding: 35px 20px 24px; border-radius: 20px; }
  .express-heading { padding-right: 34px; }
  .express-heading h2, .express-result h2 { font-size: 31px; }
  .express-actions { align-items: flex-start; flex-direction: column; }
  .hero-grid { gap: 30px; padding-block: 62px; }
  .hero h1 { font-size: clamp(38px, 12vw, 54px); }
  .hero-copy > p { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-visual { min-height: 320px; }
  .brand-panel { padding: 20px; }
  .signal-one { right: -6px; top: 12px; }
  .signal-two { bottom: 0; left: -4px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid > div { min-height: 100px; padding: 20px 16px; border-bottom: 1px solid var(--line); }
  .proof-grid > div:nth-child(odd) { border-left: 1px solid var(--line); }
  .section-heading h2, .compact-heading h2 { font-size: 36px; }
  .solution-card { padding: 25px; }
  .portrait-caption { right: -5px; bottom: 15px; }
  .projects-grid { gap: 14px; }
  .project-card { min-height: 370px; padding: 25px; }
  .model-grid article { min-height: 350px; padding: 25px; }
  .contact-form { padding: 24px 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .support-options article { grid-template-columns: 1fr; gap: 8px; }
  .form-actions { align-items: flex-start; flex-direction: column; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { gap: 8px; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  .hero-marquee div, .performance-panel, .code-line.active { animation: none !important; }
  .motion-ready .reveal-target { opacity: 1; transform: none; }
}

:focus-visible { outline: 3px solid rgba(120, 185, 0, .48); outline-offset: 4px; border-radius: 5px; }
