:root {
  --bg: #09070d;
  --bg-soft: #110d18;
  --surface: #17121f;
  --surface-light: #201728;
  --text: #f7f2fa;
  --muted: #b9afbf;
  --purple: #9d00ff;
  --magenta: #d937e9;
  --cyan: #72e7f2;
  --line: rgba(255,255,255,.11);
  --gradient: linear-gradient(125deg, #8b00ff 0%, #d834e8 62%, #72e7f2 120%);
  --shadow: 0 24px 80px rgba(0,0,0,.35);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Manrope", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { position: relative; padding: 120px 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; z-index: 999; left: 20px; top: -100px; padding: 12px 18px;
  color: #fff; background: var(--purple); border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed; z-index: 100; inset: 0 0 auto; height: 84px;
  border-bottom: 1px solid transparent; transition: .3s ease;
}
.site-header.scrolled {
  background: rgba(9,7,13,.84); border-color: var(--line);
  backdrop-filter: blur(18px);
}
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; }
.brand { width: 280px; height: 62px; display: flex; align-items: center; overflow: hidden; }
.brand img { width: 140%; height: auto; transform: none; }
.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a { color: #ded7e2; font-size: .88rem; font-weight: 600; transition: .2s; }
.main-nav a:hover { color: #fff; }
.main-nav .nav-cta { padding: 11px 18px; border: 1px solid rgba(217,55,233,.55); border-radius: 999px; }
.menu-toggle { display: none; width: 44px; height: 44px; background: transparent; border: 0; }
.menu-toggle > span:not(.sr-only) { display: block; width: 23px; height: 2px; margin: 5px auto; background: #fff; transition: .25s; }

.hero {
  position: relative; min-height: 790px; height: 100svh; display: grid; align-items: center;
  overflow: hidden; background:
    linear-gradient(rgba(255,255,255,.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.024) 1px, transparent 1px);
  background-size: 58px 58px;
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0; height: 28%;
  background: linear-gradient(transparent, var(--bg));
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: 80px; align-items: center; }
.eyebrow { margin: 0 0 20px; color: #d8cedd; font-size: .72rem; font-weight: 800; letter-spacing: .19em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 26px; height: 1px; margin: 0 10px 3px 0; background: var(--magenta); }
.hero h1, .section-heading h2, .contact-copy h2 {
  margin: 0; font-family: "Space Grotesk", sans-serif; font-weight: 600;
  letter-spacing: -.055em; line-height: .98;
}
.hero h1 { max-width: 740px; font-size: clamp(3.4rem, 6.2vw, 6.4rem); }
em { color: transparent; font-style: normal; background: var(--gradient); background-clip: text; -webkit-background-clip: text; }
.hero-text { max-width: 650px; margin: 28px 0 34px; color: var(--muted); font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.button {
  display: inline-flex; min-height: 50px; align-items: center; justify-content: center;
  padding: 13px 22px; border: 1px solid transparent; border-radius: 999px;
  font-size: .87rem; font-weight: 800; transition: transform .2s, background .2s, border-color .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--gradient); box-shadow: 0 10px 32px rgba(157,0,255,.24); }
.button-ghost { color: #eee8f0; background: rgba(255,255,255,.035); border-color: var(--line); }
.button-ghost:hover { border-color: rgba(217,55,233,.55); background: rgba(217,55,233,.08); }
.trust-row { display: flex; align-items: center; gap: 13px; margin-top: 44px; color: #847a89; font-size: .67rem; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.trust-row i { width: 3px; height: 3px; background: var(--magenta); border-radius: 50%; }
.hero-visual { position: relative; height: 520px; }
.tech-core {
  position: absolute; left: 50%; top: 50%; width: 250px; height: 250px;
  transform: translate(-50%,-50%); display: grid; place-items: center;
  border-radius: 50%; background: radial-gradient(circle at 35% 30%, #2d1a3c, #0e0914 68%);
  box-shadow: 0 0 85px rgba(157,0,255,.28), inset 0 0 0 1px rgba(255,255,255,.09);
}
.tech-core::before {
  content: ""; position: absolute; inset: 15px; border: 1px solid rgba(217,55,233,.28); border-radius: inherit;
}
.tech-core img { width: 160px; filter: drop-shadow(0 0 22px rgba(217,55,233,.3)); }
.orbit { position: absolute; left: 50%; top: 50%; border: 1px solid rgba(217,55,233,.22); border-radius: 50%; transform: translate(-50%,-50%); }
.orbit::before, .orbit::after { content: ""; position: absolute; width: 7px; height: 7px; background: var(--magenta); border-radius: 50%; box-shadow: 0 0 14px var(--magenta); }
.orbit-one { width: 360px; height: 360px; animation: spin 16s linear infinite; }
.orbit-two { width: 465px; height: 465px; border-style: dashed; animation: spin 30s linear infinite reverse; }
.orbit-one::before { left: 28px; top: 58px; } .orbit-one::after { right: 5px; bottom: 115px; }
.orbit-two::before { right: 63px; top: 34px; } .orbit-two::after { left: 8px; bottom: 142px; background: var(--cyan); }
@keyframes spin { to { transform: translate(-50%,-50%) rotate(360deg); } }
.floating-card {
  position: absolute; z-index: 4; display: flex; gap: 12px; align-items: center;
  padding: 13px 18px; border: 1px solid var(--line); border-radius: 16px;
  background: rgba(22,16,29,.82); box-shadow: var(--shadow); backdrop-filter: blur(12px);
}
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { font-family: "Space Grotesk"; font-size: .9rem; }
.floating-card small { color: var(--muted); font-size: .7rem; }
.card-icon { display: grid; place-items: center; width: 35px; height: 35px; color: var(--magenta); background: rgba(217,55,233,.12); border-radius: 10px; font-size: .68rem; font-weight: 800; }
.card-top { right: -16px; top: 65px; }.card-bottom { left: -10px; bottom: 74px; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .17; }
.hero-glow-one { width: 520px; height: 520px; right: 5%; top: 10%; background: var(--purple); }
.hero-glow-two { width: 350px; height: 350px; left: -10%; bottom: -5%; background: var(--magenta); }
.scroll-hint { position: absolute; z-index: 5; left: 50%; bottom: 25px; transform: translateX(-50%); color: #7e7483; font-size: .63rem; letter-spacing: .18em; text-transform: uppercase; }
.scroll-hint span { display: block; width: 1px; height: 35px; margin: 0 auto 8px; background: linear-gradient(var(--magenta), transparent); }

.section-heading { max-width: 760px; }
.section-heading h2, .contact-copy h2 { font-size: clamp(2.55rem, 4.5vw, 4.7rem); }
.section-heading > p:last-child { max-width: 650px; margin: 26px 0 0; color: var(--muted); }
.services { background: var(--bg); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 62px; }
.service-card {
  position: relative; min-height: 370px; padding: 30px 26px; overflow: hidden;
  background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
  border: 1px solid var(--line); border-radius: var(--radius); transition: .35s;
}
.service-card::after { content: ""; position: absolute; width: 150px; height: 150px; right: -80px; bottom: -80px; background: var(--purple); filter: blur(70px); opacity: 0; transition: .35s; }
.service-card:hover { transform: translateY(-7px); border-color: rgba(217,55,233,.36); }
.service-card:hover::after { opacity: .35; }
.service-number { color: #625969; font-size: .66rem; font-weight: 800; letter-spacing: .15em; }
.service-icon { display: grid; place-items: center; width: 52px; height: 52px; margin: 52px 0 22px; color: #e78df0; border: 1px solid rgba(217,55,233,.32); border-radius: 15px; font-size: 1.3rem; }
.service-card h3 { margin: 0 0 12px; font-family: "Space Grotesk"; font-size: 1.25rem; }
.service-card p { margin: 0; color: var(--muted); font-size: .88rem; }
.service-card a { position: absolute; z-index: 2; left: 26px; bottom: 28px; color: #e5dce8; font-size: .78rem; font-weight: 800; }
.service-card a span { margin-left: 6px; color: var(--magenta); }
.pricing-note { margin: 24px 0 0; color: #8f8594; font-size: .75rem; text-align: right; }

.talks { background: var(--bg-soft); }
.talks-intro { display: grid; grid-template-columns: 1.4fr .6fr; gap: 60px; align-items: end; margin-bottom: 58px; }
.talks-intro > p { margin: 0 0 8px; color: var(--muted); }
.talk-list { border-top: 1px solid var(--line); }
.talk-card { display: grid; grid-template-columns: 70px 1fr 58px; gap: 20px; align-items: center; min-height: 150px; padding: 25px 18px; border-bottom: 1px solid var(--line); transition: .3s; }
.talk-card:hover { padding-left: 29px; background: rgba(255,255,255,.025); }
.talk-index { color: #665c6b; font-family: "Space Grotesk"; font-size: .72rem; }
.tag { display: inline-block; margin-bottom: 8px; color: #db82e7; font-size: .62rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.talk-content h3 { margin: 0 0 7px; font-family: "Space Grotesk"; font-size: clamp(1.25rem, 2.2vw, 1.85rem); }
.talk-content p { margin: 0; color: var(--muted); font-size: .85rem; }
.circle-link { display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 50%; transition: .25s; }
.talk-card:hover .circle-link, .circle-link:hover { color: #fff; background: var(--gradient); border-color: transparent; transform: rotate(45deg); }
.more-talks { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin: 36px 0; padding: 30px; border: 1px solid var(--line); border-radius: 20px; }
.more-talks h3 { max-width: 700px; margin: 0; font-family: "Space Grotesk"; font-size: 1.25rem; }
.custom-talk { display: grid; grid-template-columns: 100px 1fr auto; gap: 32px; align-items: center; margin-top: 70px; padding: 43px; background: linear-gradient(120deg, rgba(139,0,255,.18), rgba(217,55,233,.08)); border: 1px solid rgba(217,55,233,.28); border-radius: 28px; }
.custom-symbol { display: grid; place-items: center; width: 78px; height: 78px; border: 1px solid rgba(255,255,255,.17); border-radius: 50%; color: var(--magenta); font-family: "Space Grotesk"; font-size: 2.5rem; }
.custom-talk h3 { margin: 0 0 8px; font-family: "Space Grotesk"; font-size: 1.6rem; }
.custom-talk p { max-width: 680px; margin: 0; color: var(--muted); font-size: .9rem; }

.products { overflow: hidden; }
.products::before { content: ""; position: absolute; width: 420px; height: 420px; right: -260px; top: 20%; background: var(--purple); filter: blur(150px); opacity: .14; }
.product { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; margin-top: 76px; padding: 42px; border: 1px solid var(--line); border-radius: 30px; background: rgba(255,255,255,.025); }
.product + .product { margin-top: 30px; }
.product-media { position: relative; overflow: hidden; border-radius: 20px; box-shadow: var(--shadow); }
.product-media img { width: 100%; aspect-ratio: 1.45; object-fit: cover; object-position: top; }
.product-media::after { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.12); border-radius: inherit; pointer-events: none; }
.award-badge { position: absolute; right: 16px; bottom: 16px; padding: 12px 16px; color: #fff; background: rgba(10,7,14,.83); border: 1px solid rgba(255,255,255,.15); border-radius: 13px; backdrop-filter: blur(10px); font-size: .64rem; line-height: 1.35; text-transform: uppercase; }
.award-badge strong { color: #e8a2ef; }
.product-copy h3 { margin: 0 0 18px; font-family: "Space Grotesk"; font-size: clamp(2rem, 3.5vw, 3.4rem); line-height: 1; letter-spacing: -.04em; }
.product-copy > p:not(.eyebrow) { margin: 0; color: var(--muted); }
.feature-list { display: grid; gap: 10px; margin: 26px 0 30px; padding: 0; list-style: none; color: #d8d0dc; font-size: .84rem; }
.feature-list li::before { content: "âœ“"; margin-right: 10px; color: var(--magenta); font-weight: 800; }
.product-library { grid-template-columns: .95fr 1.05fr; }
.library-visual { position: relative; min-height: 410px; overflow: hidden; background: #075759; border-radius: 20px; box-shadow: var(--shadow); }
.library-visual img { width: 100%; height: 100%; min-height: 410px; object-fit: cover; object-position: center; }
.library-screen { position: absolute; width: 70%; height: 56%; left: 15%; top: 15%; padding: 15px; transform: perspective(700px) rotateX(5deg); background: #f6f2f8; border-radius: 12px; box-shadow: 0 35px 55px rgba(0,0,0,.45); }
.screen-bar { display: flex; gap: 5px; padding-bottom: 10px; border-bottom: 1px solid #ded8e1; }
.screen-bar i { width: 6px; height: 6px; background: #bcaec1; border-radius: 50%; }
.screen-content { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 9px; padding-top: 15px; }
.screen-content span { height: 38px; background: linear-gradient(130deg,#8d00fa,#d937e9); border-radius: 5px; opacity: .8; }
.screen-chart { grid-column: 1 / -1; height: 95px; margin-top: 5px; background: linear-gradient(to top, rgba(157,0,255,.2), transparent), linear-gradient(125deg, transparent 40%, #ad28d4 41%, #ad28d4 43%, transparent 44%); border-bottom: 1px solid #bdaec3; }
.book { position: absolute; left: 11%; bottom: 9%; height: 32px; border-radius: 4px; transform: rotate(-4deg); box-shadow: 0 8px 14px rgba(0,0,0,.3); }
.book-one { width: 35%; background: #d938e7; }.book-two { width: 41%; bottom: 18%; left: 8%; background: #7b0bc5; }.book-three { width: 32%; bottom: 26%; left: 12%; background: #72e7f2; }

.about { background: var(--bg-soft); }
.founders-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 62px; }
.founder-card { display: grid; grid-template-columns: 215px 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: 26px; background: rgba(255,255,255,.025); }
.founder-photo { position: relative; min-height: 410px; overflow: hidden; background: #e8e3e8; }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-card:first-child .founder-photo img { object-position: 50% 25%; }
.founder-photo span { position: absolute; left: 14px; bottom: 14px; padding: 7px 10px; background: rgba(9,7,13,.82); border-radius: 999px; font-size: .58rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; backdrop-filter: blur(8px); }
.founder-copy { padding: 30px 27px; }
.founder-copy h3 { margin: 0 0 7px; font-family: "Space Grotesk"; font-size: 1.32rem; line-height: 1.15; }
.founder-role { color: #dc83e7 !important; font-size: .75rem !important; font-weight: 800; }
.founder-copy p { color: var(--muted); font-size: .82rem; }
.achievement { margin-top: 20px; padding-top: 17px; color: #e8e0ec; border-top: 1px solid var(--line); font-size: .72rem; font-weight: 700; }
.award-strip { display: grid; grid-template-columns: 82px 280px 1fr; gap: 25px; align-items: center; margin-top: 28px; padding: 25px 30px; border: 1px solid rgba(217,55,233,.28); border-radius: 20px; background: linear-gradient(110deg,rgba(157,0,255,.12),transparent); }
.award-mark { display: grid; place-items: center; width: 58px; height: 58px; color: #e797ef; border: 1px solid rgba(217,55,233,.38); border-radius: 50%; font-family: "Space Grotesk"; }
.award-strip span, .award-strip strong { display: block; }.award-strip span { color: #968b9c; font-size: .64rem; text-transform: uppercase; letter-spacing: .12em; }.award-strip strong { font-family: "Space Grotesk"; }.award-strip p { margin: 0; color: var(--muted); font-size: .82rem; }

.contact { background: radial-gradient(circle at 15% 40%, rgba(157,0,255,.13), transparent 34%), var(--bg); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; }
.contact-copy > p:not(.eyebrow) { max-width: 540px; color: var(--muted); }
.contact-links { display: grid; margin-top: 38px; border-top: 1px solid var(--line); }
.contact-links a { display: flex; justify-content: space-between; gap: 15px; padding: 17px 0; border-bottom: 1px solid var(--line); font-size: .8rem; }
.contact-links span { color: #827889; }.contact-links strong { font-weight: 700; }
.contact-form { padding: 38px; background: rgba(255,255,255,.045); border: 1px solid var(--line); border-radius: 28px; box-shadow: var(--shadow); }
.form-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 30px; }
.form-head span { font-family: "Space Grotesk"; font-size: 1.35rem; font-weight: 700; }.form-head small { color: #8e8493; font-size: .68rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: grid; gap: 7px; margin-bottom: 17px; color: #cec4d2; font-size: .7rem; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; color: #fff; background: rgba(0,0,0,.22); border: 1px solid var(--line); border-radius: 11px; outline: 0; padding: 12px 14px; font-size: .82rem; transition: .2s; }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form select option { color: #111; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--magenta); box-shadow: 0 0 0 3px rgba(217,55,233,.1); }
.privacy-check { grid-template-columns: 18px 1fr !important; align-items: start; font-weight: 500 !important; line-height: 1.45; }
.privacy-check input { width: 15px; height: 15px; margin: 2px 0 0; accent-color: var(--magenta); }
.privacy-check a { text-decoration: underline; }
.submit-button { width: 100%; border: 0; }
.form-status { min-height: 20px; margin: 12px 0 0; color: #cfc5d3; font-size: .75rem; text-align: center; }
.form-status.success { color: #85f2bd; }.form-status.error { color: #ff96a3; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.site-footer { padding: 28px 0 18px; background: #070509; border-top: 1px solid var(--line); }
.footer-main { display: grid; grid-template-columns: .8fr 1.5fr; align-items: center; gap: 48px; }
.footer-brand { display: flex; align-items: center; }
.footer-brand img { display: block; width: 230px; margin-left: -20px; }
.footer-brand p { margin: -10px 0 0; color: #8d8392; font-size: .8rem; }
.footer-links { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.footer-links div { display: grid; align-content: start; gap: 9px; }
.footer-links strong { margin-bottom: 7px; color: #fff; font-size: .7rem; text-transform: uppercase; letter-spacing: .1em; }
.footer-links a, .footer-links span { color: #918696; font-size: .75rem; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-top: 26px; padding-top: 16px; color: #685f6d; border-top: 1px solid var(--line); font-size: .65rem; }
.whatsapp-float { position: fixed; z-index: 90; right: 24px; bottom: 24px; display: flex; align-items: center; gap: 10px; padding: 10px 11px 10px 17px; color: #fff; background: #201627; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; box-shadow: var(--shadow); font-size: .7rem; font-weight: 800; }
.whatsapp-float b { display: grid; place-items: center; width: 30px; height: 30px; background: var(--gradient); border-radius: 50%; }

.legal-page { min-height: 100vh; padding: 130px 0 90px; background: var(--bg); }
.legal-content { max-width: 820px; }
.legal-content h1 { margin: 0 0 12px; font-family: "Space Grotesk"; font-size: clamp(2.5rem,6vw,4.7rem); letter-spacing: -.05em; line-height: 1; }
.legal-content h2 { margin-top: 42px; font-family: "Space Grotesk"; }
.legal-content p, .legal-content li { color: var(--muted); }
.legal-content a { color: #df83e8; text-decoration: underline; }
.back-link { display: inline-block; margin-bottom: 34px; color: #d7cedb; font-size: .78rem; }

.reveal { opacity: 0; transform: translateY(25px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }.delay-2 { transition-delay: .2s; }.delay-3 { transition-delay: .3s; }

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr .75fr; gap: 30px; }
  .hero-visual { transform: scale(.82); transform-origin: center; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .founder-card { grid-template-columns: 175px 1fr; }
  .founder-photo { min-height: 390px; }
}
@media (max-width: 820px) {
  .section { padding: 90px 0; }
  .menu-toggle { position: relative; z-index: 3; display: block; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav { position: fixed; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 28px; background: rgba(9,7,13,.97); opacity: 0; visibility: hidden; transition: .25s; }
  .main-nav.open { opacity: 1; visibility: visible; }
  .main-nav a { font-family: "Space Grotesk"; font-size: 1.3rem; }
  .hero { min-height: 830px; height: auto; padding: 150px 0 100px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy .eyebrow, .hero-actions, .trust-row { justify-content: center; }
  .hero-text { margin-left: auto; margin-right: auto; }
  .hero-visual { height: 380px; margin-top: -15px; transform: scale(.76); }
  .scroll-hint { display: none; }
  .talks-intro, .contact-grid { grid-template-columns: 1fr; gap: 38px; }
  .product, .product-library { grid-template-columns: 1fr; gap: 36px; }
  .product-library .library-visual { order: 0; }.product-library .product-copy { order: 1; }
  .founders-grid { grid-template-columns: 1fr; }
  .award-strip { grid-template-columns: 70px 1fr; }.award-strip p { grid-column: 1 / -1; }
  .custom-talk { grid-template-columns: 75px 1fr; }.custom-talk .button { grid-column: 2; justify-self: start; }
  .site-footer { padding: 28px 0 18px; }
  .footer-main { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { margin-top: 26px; }
}
@media (max-width: 580px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 76px 0; }
  .hero { min-height: 760px; padding-top: 130px; }
  .hero h1 { font-size: clamp(3rem, 14vw, 4.4rem); }
  .hero-visual { height: 300px; transform: scale(.62); margin: -30px -60px -50px; }
  .hero-actions { display: grid; }
  .trust-row { gap: 8px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 330px; }
  .talk-card { grid-template-columns: 35px 1fr 42px; padding-left: 4px; padding-right: 4px; }
  .talk-card:hover { padding-left: 4px; }
  .circle-link { width: 39px; height: 39px; }
  .talk-content p { display: none; }
  .more-talks { align-items: flex-start; flex-direction: column; }
  .custom-talk { grid-template-columns: 1fr; padding: 28px 23px; }.custom-talk .button { grid-column: 1; }
  .custom-symbol { width: 58px; height: 58px; }
  .product { padding: 18px; margin-top: 48px; }
  .product-copy { padding: 8px 4px 12px; }
  .library-visual { min-height: 300px; }
  .founder-card { grid-template-columns: 1fr; }
  .founder-photo { min-height: 390px; }
  .founder-card:first-child .founder-photo img { object-fit: contain; }
  .award-strip { padding: 22px 20px; }
  .contact-form { padding: 25px 19px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-head { align-items: flex-start; flex-direction: column; gap: 5px; }
  .contact-links a { align-items: flex-start; flex-direction: column; gap: 2px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; margin-top: 22px; padding-top: 14px; }
  .whatsapp-float span { display: none; }.whatsapp-float { padding: 8px; }
}
@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; }
}