@font-face { font-family: "DM Sans"; font-style: normal; font-weight: 400 700; font-display: swap; src: url("assets/fonts/dm-sans-latin.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 400; font-display: swap; src: url("assets/fonts/poppins-400-latin.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 500; font-display: swap; src: url("assets/fonts/poppins-500-latin.woff2") format("woff2"); }
@font-face { font-family: "Poppins"; font-style: normal; font-weight: 600; font-display: swap; src: url("assets/fonts/poppins-600-latin.woff2") format("woff2"); }

:root {
  --bg: #080b10;
  --bg-deep: #05070a;
  --panel: #10151d;
  --panel-soft: #151b24;
  --blue: #3397ff;
  --blue-light: #91c7ff;
  --white: #f7f9fc;
  --text: #b4bdc9;
  --muted: #747e8c;
  --line: rgba(255, 255, 255, .1);
  --green: #25d366;
  --display: "DM Sans", Arial, sans-serif;
  --body: "Poppins", Arial, sans-serif;
  --container: min(1180px, calc(100% - 64px));
  --radius-lg: 34px;
  --radius-md: 22px;
  --shadow: 0 30px 90px rgba(0, 0, 0, .34);
  --section-space: 64px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 82px; }
body { margin: 0; min-width: 320px; overflow-x: hidden; color: var(--white); background: var(--bg); font: 400 15px/1.7 var(--body); -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { color: var(--bg); background: var(--blue-light); }
:focus-visible { outline: 3px solid var(--blue-light); outline-offset: 4px; }

.container { width: var(--container); margin-inline: auto; }
.section { padding: var(--section-space) 0; }
.skip-link { position: fixed; z-index: 1000; top: 10px; left: 10px; padding: 10px 16px; color: var(--bg); background: var(--white); border-radius: 8px; transform: translateY(-150%); }
.skip-link:focus { transform: none; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0, 0, 0, 0) !important; white-space: nowrap !important; border: 0 !important; }

.site-header { position: fixed; z-index: 100; inset: 0 0 auto; color: var(--white); border-bottom: 1px solid transparent; transition: background-color .25s ease, border-color .25s ease, backdrop-filter .25s ease; }
.site-header.scrolled { background: rgba(8,11,16,.8); border-color: var(--line); backdrop-filter: blur(18px) saturate(140%); }
.header-inner { height: 76px; display: flex; align-items: center; }
.wordmark { font: 500 14px/1 var(--display); letter-spacing: .06em; text-transform: uppercase; }
.wordmark strong { font-weight: 700; }

.hero { padding: 108px 0 var(--section-space); }
.hero-banner { position: relative; isolation: isolate; min-height: 590px; display: grid; grid-template-columns: .96fr 1.04fr; overflow: visible; background: radial-gradient(circle at 76% 34%, rgba(51,151,255,.19), transparent 33%), linear-gradient(135deg, #0e151f, #081423 58%, #0b2037); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.hero-banner::before { content: ""; position: absolute; z-index: -1; inset: 0; pointer-events: none; background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px); background-size: 72px 72px; border-radius: inherit; mask-image: linear-gradient(90deg, black, transparent 72%); }
.hero-banner::after { content: ""; position: absolute; z-index: 5; right: 0; bottom: 0; left: 0; height: 45%; pointer-events: none; background: linear-gradient(180deg, transparent 0%, rgba(8,20,35,.16) 34%, rgba(8,20,35,.64) 72%, rgba(8,20,35,.96) 100%); border-radius: 0 0 var(--radius-lg) var(--radius-lg); }
.hero-copy { position: relative; z-index: 6; min-width: 0; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 68px clamp(42px, 5vw, 76px); }
.hero h1 { max-width: 570px; margin: 0; color: var(--white); font: 600 clamp(44px, 5vw, 62px)/.98 var(--display); letter-spacing: -.055em; }
.hero h1 span { display: block; color: var(--blue-light); }
.hero h1 .hero-title-lead { margin-bottom: .18em; color: var(--white); font-size: .78em; line-height: 1.06; letter-spacing: -.04em; }
.hero-copy > p { max-width: 570px; margin: 26px 0 0; color: var(--text); font-size: 15px; line-height: 1.75; }
.hero-copy strong { color: var(--white); font-weight: 600; }

.button { min-height: 49px; display: inline-flex; align-items: center; justify-content: center; gap: 14px; padding: 12px 19px; border: 1px solid transparent; border-radius: 12px; cursor: pointer; font-size: 12px; font-weight: 600; transition: transform .2s ease, background-color .2s ease, border-color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button svg { width: 17px; }
.button-primary { color: #06101b; background: var(--blue-light); box-shadow: 0 12px 34px rgba(51,151,255,.18); }
.button-primary:hover { background: #b2d8ff; }
.hero .button { width: 340px; max-width: 100%; margin-top: 30px; font-size: 15px; }
.hero .button-primary { color: #06101b; background: var(--blue-light); box-shadow: 0 12px 34px rgba(51,151,255,.18); }
.hero .button-primary:hover { background: #b2d8ff; }

.hero-visual { position: relative; z-index: 1; min-width: 0; margin: 32px 32px 0 0; overflow: visible; background: transparent; border: 0; border-radius: 26px; }
.hero-visual::before { content: ""; position: absolute; z-index: 1; inset: 0 40px; pointer-events: none; background: linear-gradient(90deg, rgba(8,18,30,.62), rgba(8,18,30,.12) 48%, transparent 72%), url("assets/images/hero-office-v3.webp") center / cover no-repeat; background-color: #eaf1f6; border-radius: inherit; box-shadow: 0 20px 42px rgba(45,70,95,.13); }
.hero-visual picture { position: absolute; z-index: 4; inset: 0; display: flex; align-items: flex-end; justify-content: center; overflow: visible; }
.hero-visual img { width: min(116%, 650px); max-height: 119%; object-fit: contain; object-position: bottom center; filter: saturate(.9) contrast(1.02) drop-shadow(0 22px 26px rgba(29,55,78,.2)); transform: translateX(-24px); }

.section-title { margin: 0; font: 500 clamp(38px, 4.2vw, 54px)/1.04 var(--display); letter-spacing: -.045em; }
.section-title span { color: var(--blue-light); }
.mobile-title-break { display: none; }
.mobile-cta-break { display: none; }
.section-heading { display: block; margin-bottom: 44px; }
.section-heading > p { max-width: 520px; margin: 14px 0 0; color: var(--muted); }

.thesis { border-bottom: 1px solid var(--line); }
.thesis-grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(60px, 9vw, 130px); align-items: start; }
.thesis-copy { padding-top: 8px; }
.thesis-copy p { margin: 0 0 24px; color: var(--white); }
.thesis-copy p:last-child { margin: 0; color: var(--white); }

.capabilities { background: var(--bg-deep); }
.bento-grid { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: minmax(245px, auto); gap: 16px; }
.capability-card { position: relative; min-width: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; overflow: hidden; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-md); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.capability-card:hover { transform: translateY(-4px); border-color: rgba(145,199,255,.3); background: var(--panel-soft); }
.capability-featured { grid-column: 1 / -1; min-height: 220px; color: var(--white); background: var(--panel); }
.capability-featured:hover { background: var(--panel-soft); }
.card-icon { position: absolute; top: 22px; right: 22px; width: 54px; height: 54px; display: grid; place-items: center; color: var(--blue-light); background: rgba(145,199,255,.08); border-radius: 15px; }
.card-icon svg { width: 25px; height: 25px; }
.capability-featured .card-icon { color: var(--blue-light); background: rgba(145,199,255,.08); }
.capability-card h3 { margin: 0 0 10px; font: 600 clamp(24px, 2.2vw, 31px)/1.08 var(--display); letter-spacing: -.025em; }
.capability-card p { max-width: 470px; margin: 0; color: var(--white); font-size: 15px; line-height: 1.65; }
.capability-featured p { color: var(--white); }

.about { background: linear-gradient(180deg, var(--bg), #0b0f15); }
.about-panel { position: relative; min-height: 540px; display: grid; grid-template-columns: .8fr 1.2fr; grid-template-rows: auto 1fr; column-gap: clamp(54px, 8vw, 110px); row-gap: 32px; padding: clamp(42px, 6vw, 76px); overflow: hidden; background: linear-gradient(90deg, rgba(8,11,16,.9) 0%, rgba(8,11,16,.72) 43%, rgba(8,11,16,.82) 100%), linear-gradient(180deg, rgba(8,11,16,.1), rgba(8,11,16,.66)), url("assets/images/about-boardroom-v1.webp") center / cover no-repeat; border: 1px solid rgba(145,199,255,.18); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.about-panel::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 18% 28%, rgba(51,151,255,.13), transparent 34%), linear-gradient(180deg, transparent 58%, rgba(5,7,10,.34)); }
.about-panel > * { position: relative; z-index: 1; }
.about-heading { grid-column: 1; grid-row: 1; align-self: start; }
.about-heading .section-title { font-size: clamp(34px, 3.4vw, 46px); }
.about-text { grid-column: 2; grid-row: 1 / 3; }
.insave-lockup { width: 190px; grid-column: 1; grid-row: 2; align-self: end; padding-top: 20px; border-top: 1px solid var(--line); }
.insave-lockup span { display: block; margin-bottom: 10px; color: var(--muted); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.insave-lockup img { width: 145px; height: auto; }
.about-text p { margin: 0; color: var(--text); font-size: 14px; }
.about-text .about-intro { color: var(--white); font-size: 16px; line-height: 1.65; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 26px 0; }
.about-highlights article { padding: 20px; background: rgba(255,255,255,.035); border: 1px solid var(--line); border-radius: 16px; }
.about-highlights span { display: block; margin-bottom: 8px; color: var(--blue-light); font: 600 11px var(--display); letter-spacing: .04em; text-transform: uppercase; }
.about-highlights p { font-size: 12px; line-height: 1.65; }
.about-text .about-emphasis { color: var(--white); font-size: 17px; line-height: 1.45; }

.questions { background: #0b0f15; }
.questions-panel { position: relative; display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 7vw, 96px); padding: clamp(42px, 6vw, 72px); overflow: hidden; background: radial-gradient(circle at 8% 12%, rgba(51,151,255,.18), transparent 34%), linear-gradient(135deg, #142236, #0c1521); border: 1px solid rgba(145,199,255,.2); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.questions-panel::after { content: ""; position: absolute; right: -130px; bottom: -220px; width: 420px; height: 420px; border: 1px solid rgba(145,199,255,.11); border-radius: 50%; pointer-events: none; }
.questions-heading { position: relative; z-index: 1; align-self: center; }
.questions-icon { width: 50px; height: 50px; display: grid; place-items: center; margin-bottom: 28px; color: var(--blue-light); background: rgba(145,199,255,.09); border: 1px solid rgba(145,199,255,.16); border-radius: 15px; }
.questions-icon svg { width: 24px; height: 24px; }
.section-kicker { margin: 0 0 18px; color: var(--blue-light); font: 600 11px var(--display); letter-spacing: .11em; text-transform: uppercase; }
.questions-heading .section-title { max-width: 430px; font-size: clamp(34px, 3.4vw, 48px); }
.questions-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.questions-grid p { min-height: 86px; display: flex; align-items: center; margin: 0; padding: 18px 20px; color: var(--white); background: rgba(255,255,255,.045); border: 1px solid var(--line); border-radius: 15px; font: 500 15px/1.45 var(--display); transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.questions-grid p:hover { transform: translateY(-2px); background: rgba(255,255,255,.065); border-color: rgba(145,199,255,.28); }
.questions-grid p:last-child { grid-column: 1 / -1; min-height: 76px; color: var(--white); }

.services { background: #0b0f15; }
.service-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.service-card { position: relative; min-height: 300px; display: flex; flex-direction: column; align-items: flex-start; padding: 30px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-md); transition: background .25s ease, transform .25s ease; }
.service-card:hover { background: var(--panel-soft); transform: translateY(-3px); }
.service-card > svg { width: 29px; height: 29px; color: var(--blue-light); stroke-width: 1.8; }
.service-card h3 { margin: auto 0 12px; font: 600 30px/1.1 var(--display); letter-spacing: -.03em; }
.service-card p { max-width: 500px; margin: 0; color: var(--muted); font-size: 13px; }
.service-card p strong { display: block; margin-bottom: 4px; color: var(--text); font-weight: 500; }
.service-card .service-link { display: inline-flex; align-items: center; gap: 11px; margin-top: 22px; padding: 14px 19px; color: var(--blue-light); border: 1px solid rgba(145,199,255,.28); border-radius: 999px; font: 600 16px var(--display); transition: background .2s ease, color .2s ease, border-color .2s ease; }
.service-card .service-link:hover { color: var(--bg); background: var(--blue-light); border-color: var(--blue-light); }
.service-card .service-link svg { width: 20px; height: 20px; }

.talks { background: #0b0f15; }
.talks-panel { position: relative; display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(50px, 8vw, 110px); padding: clamp(42px, 6vw, 74px); overflow: hidden; background: radial-gradient(circle at 10% 10%, rgba(51,151,255,.18), transparent 34%), linear-gradient(135deg, #142236, #0c1521); border: 1px solid rgba(145,199,255,.2); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.talks-panel::after { content: ""; position: absolute; right: -120px; bottom: -180px; width: 420px; height: 420px; border: 1px solid rgba(145,199,255,.13); border-radius: 50%; pointer-events: none; }
.talks-heading { display: flex; flex-direction: column; gap: 28px; }
.talks-icon { width: 48px; height: 48px; display: grid; place-items: center; color: var(--blue-light); background: rgba(145,199,255,.09); border: 1px solid rgba(145,199,255,.14); border-radius: 14px; }
.talks-icon svg { width: 22px; }
.talks-copy { position: relative; z-index: 1; }
.talks-copy h3 { max-width: 660px; margin: 0; color: var(--white); font: 600 clamp(27px, 3.2vw, 43px)/1.15 var(--display); letter-spacing: -.035em; }
.talks-copy p { max-width: 660px; margin: 18px 0 0; color: var(--text); }
.talks-copy .button { margin-top: 28px; }

.contact { background: var(--bg-deep); }
.contact-grid { display: grid; grid-template-columns: .76fr 1.24fr; gap: clamp(60px, 9vw, 120px); align-items: start; }
.contact-copy { position: sticky; top: 120px; }
.contact-copy > p { margin: 18px 0 34px; color: var(--blue-light); font: 500 22px var(--display); }
.whatsapp-inline { min-height: 58px; display: inline-flex; align-items: center; gap: 13px; padding: 8px 20px 8px 9px; color: var(--white); background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.55); border-radius: 999px; font: 600 15px var(--display); box-shadow: 0 12px 32px rgba(37,211,102,.08); transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease; }
.whatsapp-inline:hover { color: #06110b; background: var(--green); border-color: var(--green); transform: translateY(-2px); }
.whatsapp-inline .whatsapp-symbol { width: 40px; height: 40px; display: grid; place-items: center; color: var(--white); background: var(--green); border-radius: 50%; }
.whatsapp-inline:hover .whatsapp-symbol { background: rgba(6,17,11,.14); }

.contact-form { padding: 36px; background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; margin-bottom: 7px; color: var(--muted); font-size: 10px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.required-marker { color: #ff627d; font-size: 13px; line-height: 1; }
.field input, .field textarea, .field select { width: 100%; color: var(--white); background: rgba(3,6,10,.48); border: 1px solid var(--line); border-radius: 11px; outline: 0; transition: border-color .2s ease, box-shadow .2s ease; }
.field input, .field select { height: 48px; padding: 0 14px; }
.field textarea { min-height: 100px; padding: 13px 14px; resize: vertical; }
.field select { appearance: none; background-image: linear-gradient(45deg,transparent 50%,var(--muted) 50%),linear-gradient(135deg,var(--muted) 50%,transparent 50%); background-position: calc(100% - 18px) 20px,calc(100% - 13px) 20px; background-size: 5px 5px; background-repeat: no-repeat; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue-light); box-shadow: 0 0 0 3px rgba(51,151,255,.11); }
.field [aria-invalid="true"] { border-color: #ff7895; }
.field-error { display: block; min-height: 15px; margin-top: 4px; color: #ff8da5; font-size: 10px; }
.checkbox-field { display: flex; gap: 9px; align-items: flex-start; color: var(--muted); font-size: 11px; cursor: pointer; }
.checkbox-field input { width: 17px; height: 17px; flex: 0 0 auto; accent-color: var(--blue); }
.inline-button, .footer-links button { padding: 0; border: 0; background: none; cursor: pointer; }
.inline-button { color: var(--blue-light); text-decoration: underline; }
.form-submit { width: 100%; margin-top: 18px; border: 0; }
.form-submit:disabled { opacity: .65; cursor: wait; transform: none; }
.form-honey { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
.form-status { min-height: 20px; margin-top: 10px; text-align: center; font-size: 11px; }
.form-status.success { color: #67e5af; }
.form-status.error { color: #ff8da5; }

.site-footer { padding: 58px 0 26px; background: #030508; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 48px; }
.footer-grid > div:first-child .wordmark { font-size: 16px; }
.footer-grid > div:first-child p { margin: 14px 0 0; color: var(--muted); font-size: 12px; }
.footer-links { display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end; gap: 18px 26px; }
.footer-links a, .footer-links button, .footer-email { width: auto; display: inline-flex; align-items: center; justify-content: flex-start; gap: 8px; padding: 0; color: var(--text); background: none; border: 0; font-size: 12px; line-height: 1.2; white-space: nowrap; }
.footer-links a, .footer-links button { cursor: pointer; transition: color .2s ease; }
.footer-links svg { width: 16px; height: 16px; flex: 0 0 auto; color: var(--blue-light); stroke-width: 1.8; }
.footer-links a:hover, .footer-links button:hover { color: var(--blue-light); }
.copyright { grid-column: 1 / -1; margin: 34px 0 0; padding-top: 20px; color: #5f6875; border-top: 1px solid var(--line); font-size: 10px; }

.whatsapp-float, .back-to-top { position: fixed; z-index: 80; right: 22px; display: grid; place-items: center; padding: 0; color: var(--white); border-radius: 50%; cursor: pointer; box-shadow: 0 12px 32px rgba(0,0,0,.3); transition: opacity .2s ease, transform .2s ease, background .2s ease; }
.whatsapp-float { bottom: 22px; width: 66px; height: 66px; background: var(--green); border: 1px solid rgba(255,255,255,.3); }
.whatsapp-float:hover { background: #20bd5a; transform: translateY(-3px); }
.whatsapp-symbol { display: grid; width: 38px; height: 38px; place-items: center; }
.whatsapp-symbol img { width: 38px; height: 38px; object-fit: contain; }
.whatsapp-inline .whatsapp-symbol img { width: 27px; height: 27px; }
.back-to-top { bottom: 100px; width: 42px; height: 42px; color: var(--text); background: rgba(16,21,29,.9); border: 1px solid var(--line); opacity: 0; pointer-events: none; transform: translateY(8px); }
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: none; }
.back-to-top svg { width: 16px; }

.privacy-dialog { width: min(540px, calc(100% - 32px)); max-height: calc(100dvh - 32px); padding: 38px; overflow: auto; color: #111722; background: #f4f7fb; border: 0; border-radius: 22px; box-shadow: 0 35px 100px rgba(0,0,0,.55); }
.privacy-dialog::backdrop { background: rgba(2,4,7,.82); backdrop-filter: blur(8px); }
.privacy-dialog h2 { margin: 0; font: 600 32px var(--display); }
.privacy-dialog > p { color: #59616c; }
.privacy-dialog a { color: #1769aa; text-decoration: underline; text-underline-offset: 2px; }
.dialog-close { position: absolute; top: 12px; right: 14px; width: 38px; height: 38px; color: #111722; background: none; border: 0; font-size: 27px; cursor: pointer; }

.toast { position: fixed; z-index: 200; left: 50%; bottom: 24px; max-width: calc(100% - 36px); padding: 12px 16px; color: var(--white); background: #19212c; border: 1px solid var(--line); border-radius: 11px; box-shadow: var(--shadow); font-size: 11px; text-align: center; opacity: 0; pointer-events: none; transform: translate(-50%, 16px); transition: opacity .2s ease, transform .2s ease; }
.toast.visible { opacity: 1; transform: translate(-50%, 0); }

.legal-page main { padding: clamp(108px, 12vw, 148px) 0 clamp(56px, 8vw, 96px); }
.legal-card { max-width: 860px; margin-inline: auto; padding: clamp(30px, 6vw, 62px); background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.legal-card h1 { margin: 0 0 16px; font: 600 clamp(38px, 6vw, 58px)/1.02 var(--display); letter-spacing: -.045em; }
.legal-card h2 { margin: 34px 0 10px; color: var(--white); font: 600 clamp(21px, 3vw, 27px)/1.2 var(--display); }
.legal-card p, .legal-card li { color: var(--text); }
.legal-card ul { padding-left: 22px; }
.legal-card a { color: var(--blue-light); text-decoration: underline; text-underline-offset: 3px; }
.legal-meta { margin: 0 0 36px; color: var(--muted) !important; font-size: 12px; }
.legal-back { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 26px; color: var(--blue-light); font-weight: 600; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .65s ease, transform .65s cubic-bezier(.2,.75,.25,1); }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  :root { --container: min(100% - 42px, 820px); }
  .hero-banner { min-height: 540px; grid-template-columns: 1.05fr .95fr; }
  .hero-copy { padding: 48px 34px; }
  .hero h1 { font-size: clamp(40px, 6vw, 56px); }
  .hero-copy > p { font-size: 14px; }
  .hero-halo { width: 360px; height: 360px; }
  .thesis-grid { gap: 60px; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .capability-featured { grid-column: 1 / -1; grid-row: auto; }
  .about-panel { gap: 58px; }
  .service-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  :root { --container: calc(100% - 28px); --radius-lg: 26px; --section-space: 48px; }
  .section { padding: var(--section-space) 0; }
  .header-inner { height: 68px; }
  .hero { padding: 84px 0 var(--section-space); }
  .hero-banner { min-height: 760px; grid-template-columns: 1fr; }
  .hero-copy { min-height: 410px; justify-content: flex-start; padding: 38px 28px 48px; }
  .hero h1 { max-width: 500px; font-size: clamp(42px, 12vw, 56px); }
  .hero-copy > p { margin-top: 20px; }
  .hero .button { margin-top: 48px; }
  .hero .button { width: 100%; }
  .hero-visual { min-height: 350px; }
  .hero-visual { margin: 0 18px; border-radius: 22px; }
  .hero-visual::before { inset-inline: 10px; }
  .hero-visual img { max-height: 112%; transform: none; }
  .hero-halo { width: 330px; height: 330px; }
  .hero-glass { right: 16px; bottom: 16px; min-width: 160px; }
  .section-title { font-size: clamp(34px, 10vw, 46px); }
  .mobile-title-break { display: block; }
  .mobile-cta-break { display: block; }
  .thesis .container { width: calc(100% - 48px); }
  .thesis-grid, .about-panel, .questions-panel, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .section-heading { margin-bottom: 34px; }
  .bento-grid, .service-grid { grid-template-columns: 1fr; }
  .capability-featured { grid-column: auto; }
  .capability-card { min-height: 230px; }
  .about-panel { padding: 34px 26px; }
  .about-heading, .about-text, .about-panel > .insave-lockup { grid-column: auto; grid-row: auto; }
  .about-highlights { grid-template-columns: 1fr; }
  .questions-panel { padding: 36px 28px; }
  .questions-grid { grid-template-columns: 1fr; }
  .questions-grid p, .questions-grid p:last-child { grid-column: auto; min-height: 74px; }
  .service-card { min-height: 270px; }
  .service-card > svg { margin-bottom: 24px; }
  .service-card h3 { margin-top: 0; }
  .service-card [data-track="service_boards"] { width: 100%; justify-content: space-between; white-space: nowrap; font-size: 14px; }
  .talks-panel { grid-template-columns: 1fr; gap: 36px; padding: 36px 28px; }
  .talks-heading { gap: 22px; }
  .talks-copy .button { font-size: 15px; line-height: 1.35; }
  .contact-copy { position: static; }
  .contact-form { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-links { justify-content: flex-start; }
  .copyright { grid-column: auto; margin-top: 0; }
}

@media (max-width: 460px) {
  .hero-banner { min-height: 790px; }
  .hero-copy { min-height: 440px; padding-inline: 22px; }
  .hero h1 { font-size: clamp(40px, 13vw, 50px); }
  .hero-copy > p { font-size: 13px; line-height: 1.65; }
  .hero-visual { min-height: 350px; }
  .service-card [data-track="service_boards"] { padding-inline: 14px; font-size: 13px; }
  .hero-glass { display: none; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 58px; height: 58px; }
}

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