/* ========================================================= LACAK TB - INDEX PAGE File: css/index.css ========================================================= */

/* ---------- Design tokens ---------- */
:root{
  --bg:#EEF2F7; --surface:#EEF2F7; --surface-2:#F4F7FB; --surface-3:#FFFFFF; --ink:#0B1220; --muted:#5B6B84;
  --blue:#0B63FF; --blue-2:#1D7BFF; --blue-3:#3C9CFF; --line:rgba(11, 18, 32, .08); --focus:rgba(11, 99, 255, .25);
  --radius-pill:999px;
  --shadow-out:12px 12px 24px rgba(163, 177, 198, .55), -12px -12px 24px rgba(255, 255, 255, .92);
  --shadow-out-sm:8px 8px 16px rgba(163, 177, 198, .45), -8px -8px 16px rgba(255, 255, 255, .92);
  --shadow-in-sm:inset 7px 7px 12px rgba(163, 177, 198, .30), inset -7px -7px 12px rgba(255, 255, 255, .88);
  --primary-gradient:linear-gradient(145deg, rgba(60, 156, 255, 1) 0%, rgba(11, 99, 255, 1) 55%, rgba(29, 123, 255, 1) 100%);
  --primary-shadow:12px 12px 24px rgba(11, 99, 255, .24), -12px -12px 24px rgba(255, 255, 255, .70);
  --frost-bg:rgba(255, 255, 255, .52); --frost-border:rgba(255, 255, 255, .55);
  --frost-shadow:16px 16px 32px rgba(163, 177, 198, .35), -16px -16px 32px rgba(255, 255, 255, .85);
  --switch-height:44px; --switch-padding:6px; --preview-width:760px; --mobile-footer-height:64px;
  --grant-gold:#D5A90B; --grant-gold-deep:#9B7300; --grant-blue:#145DA0;
  --grant-soft:rgba(213, 169, 11, .10); --grant-line:rgba(213, 169, 11, .30);
}
html[data-theme="dark"]{
  color-scheme:dark; --bg:#0B1220; --surface:#0F172A; --surface-2:#111C34; --surface-3:#182745; --ink:#EAF1FF;
  --muted:#A9B7D6; --blue:#6AA0FF; --blue-2:#86B2FF; --blue-3:#A6D3FF; --line:rgba(255, 255, 255, .10);
  --focus:rgba(106, 160, 255, .30);
  --shadow-out:12px 12px 26px rgba(0, 0, 0, .55), -12px -12px 26px rgba(255, 255, 255, .06);
  --shadow-out-sm:8px 8px 18px rgba(0, 0, 0, .50), -8px -8px 18px rgba(255, 255, 255, .05);
  --shadow-in-sm:inset 7px 7px 12px rgba(0, 0, 0, .55), inset -7px -7px 12px rgba(255, 255, 255, .06);
  --primary-shadow:12px 12px 26px rgba(0, 0, 0, .45), -12px -12px 26px rgba(255, 255, 255, .06);
  --frost-bg:rgba(17, 28, 52, .46); --frost-border:rgba(255, 255, 255, .10);
  --frost-shadow:16px 16px 34px rgba(0, 0, 0, .45), -16px -16px 34px rgba(255, 255, 255, .05);
  --grant-gold:#F2C94C; --grant-gold-deep:#E0B638; --grant-blue:#82B8FF;
  --grant-soft:rgba(242, 201, 76, .10); --grant-line:rgba(242, 201, 76, .28);
}

/* ---------- Base ---------- */
*{
  box-sizing:border-box;
}
html, body{
  min-height:100%;
}
html{
  color:var(--ink); background:var(--bg); overflow-x:clip; scroll-behavior:smooth;
}
body{
  width:100%; min-height:100svh; margin:0; overflow-x:clip; overscroll-behavior-x:none; color:var(--ink);
  background:var(--bg);
  font-family:"Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, "Noto Sans", sans-serif;
  -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; text-rendering:geometricPrecision;
}
@supports not (overflow-x:clip){
  html, body{
    overflow-x:hidden;
  }
}
a{
  color:inherit;
}
button, input, select, textarea{
  font:inherit;
}
.navAnchorOnly{
  position:absolute; top:0; left:0; width:1px; height:1px; overflow:hidden; opacity:0; pointer-events:none;
}
.overlay{
  position:fixed; inset:0; z-index:1; pointer-events:none; opacity:1;
  background:radial-gradient(900px 520px at 18% 18%, rgba(11, 99, 255, .06), transparent 62%), radial-gradient(900px 520px at 82% 22%, rgba(29, 123, 255, .05), transparent 65%), radial-gradient(900px 620px at 50% 88%, rgba(11, 18, 32, .05), transparent 62%);
}
html[data-theme="dark"] .overlay{
  opacity:.85;
  background:radial-gradient(900px 520px at 18% 18%, rgba(106, 160, 255, .10), transparent 65%), radial-gradient(900px 520px at 82% 22%, rgba(106, 160, 255, .06), transparent 70%), radial-gradient(900px 620px at 50% 88%, rgba(0, 0, 0, .45), transparent 60%);
}
.wrap{
  position:relative; z-index:2; min-height:100svh; display:flex; flex-direction:column; color:var(--ink);
  background:var(--bg);
}

/* ---------- Navbar ---------- */
.navwrap{
  position:sticky; top:0; z-index:40; padding:14px 12px 0; pointer-events:none;
}
header{
  width:min(1480px, 100%); height:72px; margin:0 auto; padding:0 16px; display:flex; align-items:center;
  justify-content:flex-start; gap:14px; border:1px solid rgba(255, 255, 255, .35); border-radius:24px;
  background:var(--surface); box-shadow:var(--shadow-out); pointer-events:auto;
}
html[data-theme="dark"] header{
  border-color:rgba(255, 255, 255, .06);
}
.brand{
  min-width:0; flex:0 0 auto; display:flex; align-items:center; gap:12px; color:var(--ink); text-decoration:none;
}
header .brand .mark{
  display:block; width:34px; height:34px; min-width:34px; margin:0; padding:0; border:0; border-radius:0;
  background:transparent; box-shadow:none; object-fit:contain; object-position:center;
}
header .brand .brandText{
  min-width:0; display:flex; flex-direction:column; align-items:flex-start; justify-content:center; line-height:1.06;
  transform:translateX(-10px);
}
header .brand .brandTitle{
  margin:0; padding:0; color:#0B1220; font-size:16px; line-height:1.06; font-weight:800; letter-spacing:-.02em;
  white-space:nowrap;
}
header .brand .brandSubTitle{
  margin:2px 0 0; padding:0; color:var(--muted); font-size:11px; line-height:1.06; font-weight:600;
  letter-spacing:-.01em; white-space:nowrap;
}
html[data-theme="dark"] header .brand .brandTitle{
  color:#EAF1FF;
}
html[data-theme="dark"] header .brand .brandSubTitle{
  color:rgba(234, 241, 255, .60);
}
header nav{
  position:static; min-width:0; flex:1 1 auto; margin-left:6px; display:flex; align-items:center;
  justify-content:flex-start; gap:6px; color:var(--muted); font-size:14px; font-weight:650; white-space:nowrap;
}
.navItem{
  position:relative; display:flex; align-items:center;
}
.navLinkBtn{
  min-height:42px; padding:0 12px; display:inline-flex; align-items:center; justify-content:center; gap:8px;
  border:1px solid rgba(255, 255, 255, .35); border-radius:15px; color:inherit; background:transparent; text-decoration:none;
  cursor:pointer;
  transition:transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease, border-color .16s ease;
}
.navLinkBtn i{
  color:currentColor; font-size:14px;
}
.navLinkBtn:hover{
  color:var(--ink); background:var(--surface-2); border-color:rgba(255, 255, 255, .35);
  box-shadow:var(--shadow-out-sm); transform:translateY(-1px);
}
html[data-theme="dark"] .navLinkBtn{
  border-color:rgba(255, 255, 255, .06);
}
.rightPack{
  min-width:fit-content; flex:0 0 auto; margin-left:auto; display:flex; align-items:center; justify-content:flex-end;
  gap:10px;
}
.rightPack > *{
  flex-shrink:0;
}
.rightPack .loginBtn{
  margin-left:12px;
}

/* ---------- Shared controls ---------- */
.loginBtn, .burger, .drawerClose, .switch{
  border:1px solid rgba(255, 255, 255, .35); color:var(--ink); background:var(--surface);
  box-shadow:var(--shadow-out-sm); -webkit-tap-highlight-color:transparent;
  transition:transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease, border-color .16s ease;
}
html[data-theme="dark"] .loginBtn, html[data-theme="dark"] .burger, html[data-theme="dark"] .drawerClose, html[data-theme="dark"] .switch{
  border-color:rgba(255, 255, 255, .06);
}
.loginBtn:hover, .burger:hover, .drawerClose:hover, .switch:hover{
  transform:translateY(-1px);
}
.loginBtn:active, .burger:active, .drawerClose:active, .switch:active{
  transform:translateY(0); box-shadow:var(--shadow-in-sm);
}
.loginBtn:focus-visible, .burger:focus-visible, .drawerClose:focus-visible, .switch:focus-visible, .navLinkBtn:focus-visible, .getStartedPrimaryBtn:focus-visible, .getStartedGoogleBtn:focus-visible{
  outline:3px solid var(--focus); outline-offset:3px;
}
.loginBtn{
  min-width:120px; height:44px; padding:0 16px; flex:0 0 auto; display:inline-flex; align-items:center;
  justify-content:center; border:0; border-color:transparent; border-radius:var(--radius-pill); color:#FFFFFF;
  background:var(--primary-gradient); box-shadow:var(--primary-shadow); font-size:13px; font-weight:800;
  letter-spacing:.08em; text-transform:uppercase; text-decoration:none; white-space:nowrap; user-select:none;
}
.loginBtn span{
  color:#FFFFFF;
}
.burger, .drawerClose{
  width:44px; height:44px; flex:0 0 auto; display:inline-flex; align-items:center; justify-content:center;
  border-radius:16px; cursor:pointer; user-select:none;
}
.burger{
  display:none;
}
.burger i, .drawerClose i{
  color:currentColor; font-size:16px;
}

/* ---------- Theme switch ---------- */
.switch{
  height:var(--switch-height); padding:0 var(--switch-padding); flex:0 0 auto; display:inline-flex;
  align-items:center; border-radius:var(--radius-pill); white-space:nowrap; cursor:pointer; user-select:none;
}
.switchTrack{
  position:relative; height:calc(var(--switch-height) - (var(--switch-padding) * 2)); min-width:118px; padding:0 12px;
  display:flex; align-items:center; justify-content:space-between; gap:10px; overflow:hidden;
  border:1px solid rgba(255, 255, 255, .35); border-radius:var(--radius-pill); background:var(--surface);
  box-shadow:var(--shadow-in-sm);
}
.switch--theme .switchTrack{
  min-width:92px;
}
html[data-theme="dark"] .switchTrack{
  border-color:rgba(255, 255, 255, .06);
}
.switchLabel{
  position:relative; z-index:1; display:inline-flex; align-items:center; gap:8px; color:rgba(100, 116, 139, .78);
  font-size:12px; font-weight:800; letter-spacing:.06em; text-transform:uppercase;
  transition:color .18s ease, opacity .18s ease;
}
html[data-theme="dark"] .switchLabel{
  color:rgba(169, 183, 214, .74);
}
.switchLabel i{
  color:currentColor; font-size:13px;
}
.switchThumb{
  position:absolute; z-index:0; top:50%; left:6px; width:50%;
  height:calc(var(--switch-height) - (var(--switch-padding) * 2) - 10px); border:1px solid rgba(255, 255, 255, .35);
  border-radius:var(--radius-pill); background:var(--surface-2); box-shadow:var(--shadow-out-sm);
  transform:translateY(-50%); transition:left .22s cubic-bezier(.2, .8, .2, 1);
}
html[data-theme="dark"] .switchThumb{
  border-color:rgba(255, 255, 255, .06);
}
.switch[data-on="1"] .switchThumb{
  left:calc(50% - 6px);
}
.switch[data-on="0"] .switchLabel[data-side="left"], .switch[data-on="1"] .switchLabel[data-side="right"]{
  color:var(--ink); opacity:1;
}
.switch[data-on="0"] .switchLabel[data-side="right"], .switch[data-on="1"] .switchLabel[data-side="left"]{
  opacity:.60;
}
.switch--theme .switchLabel{
  gap:0; letter-spacing:0;
}

/* ---------- Mobile drawer ---------- */
.backdrop{
  position:fixed; inset:0; z-index:40; opacity:0; pointer-events:none; background:rgba(11, 18, 32, .28);
  cursor:pointer; transition:opacity .22s ease;
}
html[data-theme="dark"] .backdrop{
  background:rgba(0, 0, 0, .55);
}
.drawer{
  position:fixed; inset:0 auto 0 0; z-index:50; width:min(420px, 92vw); height:100%; padding:14px 14px 18px;
  display:flex; flex-direction:column; gap:14px; overflow:hidden; opacity:0; pointer-events:auto;
  border-right:1px solid rgba(255, 255, 255, .35); background:var(--surface); box-shadow:var(--shadow-out);
  transform:translate3d(-100%, 0, 0); will-change:transform, opacity;
  transition:transform .28s cubic-bezier(.2, .8, .2, 1), opacity .18s ease;
}
html[data-theme="dark"] .drawer{
  border-right-color:rgba(255, 255, 255, .06);
}
body.nav-open{
  overflow:hidden; touch-action:none;
}
body.nav-open .backdrop{
  opacity:1; pointer-events:auto;
}
body.nav-open .drawer{
  opacity:1; transform:translate3d(0, 0, 0);
}
.drawerHeader{
  display:flex; align-items:flex-start; justify-content:space-between; gap:12px;
}
.drawerBrand{
  min-width:0; display:flex; align-items:center; gap:12px; color:var(--ink); text-decoration:none;
}
.drawerBrand .mark{
  display:block; width:42px; height:42px; min-width:42px; flex:0 0 42px;
  margin:0; padding:0; border:0; background:transparent; box-shadow:none;
  object-fit:contain; object-position:center;
}
.drawerTitle{
  color:var(--blue); font-size:22px; line-height:1.1; font-weight:800; letter-spacing:-.02em;
}
.drawerSub{
  margin-top:3px; color:var(--muted); font-size:13px; line-height:1.35; font-weight:600;
}
.drawerTopToggles{
  display:flex; align-items:center; gap:10px;
}
.drawerNav{
  margin-top:4px; display:flex; flex-direction:column; gap:12px;
}
.drawerItem{
  overflow:hidden; border:1px solid rgba(255, 255, 255, .35); border-radius:24px; background:var(--surface);
  box-shadow:var(--shadow-out-sm);
}
html[data-theme="dark"] .drawerItem{
  border-color:rgba(255, 255, 255, .06);
}
.drawerItemBtn{
  width:100%; appearance:none; padding:14px; display:flex; align-items:center; justify-content:space-between; gap:12px; border:0;
  color:var(--ink); background:transparent; text-decoration:none; cursor:pointer;
}
.drawerItemBtn .left{
  display:inline-flex; align-items:center; gap:12px; font-size:17px; font-weight:800; letter-spacing:-.01em;
}
.drawerItemBtn i{
  color:currentColor; font-size:17px;
}
.drawerItemBtn .chev{
  color:var(--muted); font-size:16px; transition:rotate .16s ease;
}
.drawerItem.is-open .drawerItemBtn .chev{
  rotate:180deg;
}
.drawerLinkOnly .chev{
  rotate:0deg;
}
.drawerSubmenu{
  display:none; padding:0 12px 12px; gap:10px;
}
.drawerItem.is-open .drawerSubmenu{
  display:grid; grid-template-columns:1fr;
}
.drawerSubmenu a{
  padding:10px 12px; display:flex; align-items:center; justify-content:space-between; gap:10px;
  border:1px solid rgba(255, 255, 255, .35); border-radius:16px; color:var(--ink); background:var(--surface-2);
  box-shadow:var(--shadow-in-sm); font-weight:700; text-decoration:none;
}
html[data-theme="dark"] .drawerSubmenu a{
  border-color:rgba(255, 255, 255, .06);
}
.drawerSubmenu a small{
  color:var(--muted); font-size:12px; line-height:1.2; font-weight:600;
}
.drawerFooter{
  margin-top:auto; padding-top:12px;
}
.drawerActions .loginBtn{
  width:100%; min-width:0; height:auto; padding:16px 18px; border-radius:var(--radius-pill); font-size:14px;
  letter-spacing:.12em;
}

/* ---------- Main hero ---------- */
main{
  width:100%; flex:1; display:block; padding:22px 18px 18px; color:var(--ink); background:var(--bg);
}
.getStartedHero{
  position:relative; isolation:isolate; width:min(1360px, 100%); min-height:calc(100svh - 176px); margin:0 auto;
  padding:clamp(26px, 4vw, 52px) clamp(10px, 2vw, 18px); display:grid;
  grid-template-columns:minmax(520px, 1.05fr) minmax(420px, .95fr); align-items:center; gap:clamp(34px, 4vw, 64px);
}
.getStartedContent{
  position:relative; isolation:isolate; z-index:4; width:100%; max-width:650px; justify-self:start;
  display:flex; flex-direction:column; align-items:flex-start; overflow:visible;
  opacity:0; filter:blur(14px); transform:translateX(26px);
  animation:indexFadeRight .82s cubic-bezier(.22, .61, .36, 1) .08s forwards;
}

/* ---------- Hero content glass card ---------- */
.getStartedContent::before{
  content:""; position:absolute; inset:-24px -26px -28px; z-index:-2; pointer-events:none;
  border:1px solid rgba(255, 255, 255, .62); border-radius:32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .60), rgba(238, 242, 247, .76)),
    radial-gradient(circle at 88% 10%, rgba(11, 99, 255, .08), transparent 34%);
  box-shadow:
    18px 18px 36px rgba(163, 177, 198, .36),
    -18px -18px 36px rgba(255, 255, 255, .80);
  backdrop-filter:blur(18px) saturate(1.12);
  -webkit-backdrop-filter:blur(18px) saturate(1.12);
}
.getStartedContent::after{
  content:""; position:absolute; inset:-12px -14px -16px; z-index:-1; pointer-events:none;
  border:1px dashed rgba(11, 99, 255, .14); border-radius:23px;
}
html[data-theme="dark"] .getStartedContent::before{
  border-color:rgba(255, 255, 255, .09);
  background:
    linear-gradient(145deg, rgba(17, 28, 52, .82), rgba(15, 23, 42, .72)),
    radial-gradient(circle at 88% 10%, rgba(106, 160, 255, .12), transparent 36%);
  box-shadow:
    18px 18px 38px rgba(0, 0, 0, .42),
    -18px -18px 38px rgba(255, 255, 255, .035);
}
html[data-theme="dark"] .getStartedContent::after{
  border-color:rgba(106, 160, 255, .16);
}

/* ---------- Hero research eyebrow ---------- */
.heroResearchEyebrow{
  width:fit-content; min-height:32px; margin-bottom:14px; padding:5px 11px 5px 6px;
  display:inline-flex; align-items:center; justify-content:flex-start; gap:8px;
  border:1px solid rgba(11, 99, 255, .13); border-radius:var(--radius-pill);
  color:var(--blue); background:rgba(11, 99, 255, .055);
  font-size:10.5px; line-height:1.2; font-weight:800; letter-spacing:.10em;
  text-transform:uppercase;
}
.heroResearchEyebrowIcon{
  width:22px; height:22px; flex:0 0 auto; display:inline-flex; align-items:center; justify-content:center;
  border-radius:50%; color:#FFFFFF; background:var(--primary-gradient);
  box-shadow:0 5px 10px rgba(11, 99, 255, .18);
}
.heroResearchEyebrowIcon i{
  color:#FFFFFF; font-size:9px;
}
html[data-theme="dark"] .heroResearchEyebrow{
  border-color:rgba(106, 160, 255, .18); color:var(--blue-2);
  background:rgba(106, 160, 255, .08);
}

.getStartedTitle{
  margin:0; padding:0; color:var(--ink); font-size:clamp(48px, 6.2vw, 82px); line-height:.96; font-weight:800;
  letter-spacing:-.060em;
}
.getStartedTitleMain{
  width:auto; max-width:100%; margin:0; padding:0; display:inline-flex; align-items:center;
  justify-content:flex-start; gap:14px; color:var(--ink); font:inherit; text-align:inherit;
}
.getStartedTitleLogo{
  display:block; width:clamp(90px, 8.4vw, 128px); height:clamp(90px, 8.4vw, 128px);
  min-width:clamp(90px, 8.4vw, 128px); flex:0 0 auto; margin:0; padding:0; border:0; background:transparent;
  box-shadow:none; object-fit:contain; object-position:center; transform:translateY(-8px); pointer-events:none;
  user-select:none;
}
.getStartedTitleText{
  width:auto; max-width:none; margin:0; padding:0; display:inline-flex; align-items:center;
  justify-content:flex-start; color:inherit; font:inherit; text-align:inherit; white-space:nowrap;
}
.getStartedTitle > span:not(.getStartedTitleMain){
  display:block; max-width:650px; margin-top:14px; color:#0B63FF; font-size:clamp(22px, 2.38vw, 35px);
  line-height:1.14; font-weight:750; letter-spacing:-.035em; -webkit-text-fill-color:#0B63FF;
}
.getStartedSub{
  max-width:630px; margin:18px 0 0; color:var(--muted); font-size:clamp(14px, 1.02vw, 16.5px); line-height:1.72;
  font-weight:550;
}


/* ---------- Hero funding ecosystem ---------- */
.heroFundingEcosystem{
  width:100%; max-width:617px; margin:0; padding:0;
}
.heroFeatureList + .heroFundingEcosystem{
  margin-top:17px;
}
.heroFundingDivider{
  width:100%; height:1px; margin:0 0 17px;
  background:linear-gradient(
    90deg,
    transparent 0%,
    rgba(91, 107, 132, .16) 8%,
    rgba(91, 107, 132, .28) 50%,
    rgba(91, 107, 132, .16) 92%,
    transparent 100%
  );
}
html[data-theme="dark"] .heroFundingDivider{
  background:linear-gradient(
    90deg,
    transparent 0%,
    rgba(169, 183, 214, .12) 8%,
    rgba(169, 183, 214, .24) 50%,
    rgba(169, 183, 214, .12) 92%,
    transparent 100%
  );
}
.heroFundingHeading{
  display:flex; flex-direction:column; align-items:flex-start; gap:4px;
}
.heroFundingHeading h2{
  margin:0; color:var(--ink); font-size:12px; line-height:1.25; font-weight:800;
  letter-spacing:.13em; text-transform:uppercase;
}
.heroFundingHeading p{
  max-width:570px; margin:0; color:var(--muted); font-size:10.5px; line-height:1.55; font-weight:600;
}
.heroFundingPartnerCard{
  width:auto; max-width:100%; min-height:68px; margin-top:13px; padding:7px 11px;
  display:inline-flex; align-items:center; justify-content:flex-start; vertical-align:top;
  overflow:hidden; border:1px solid rgba(255, 255, 255, .45); border-radius:16px;
  background:var(--surface-2); box-shadow:var(--shadow-out-sm);
}
html[data-theme="dark"] .heroFundingPartnerCard{
  border-color:rgba(255, 255, 255, .08);
}
.heroFundingPartnerLogoWrap{
  width:390px; max-width:100%; height:52px; padding:3px 7px;
  display:flex; align-items:center; justify-content:flex-start;
  overflow:hidden; border:1px solid rgba(15, 23, 42, .05); border-radius:11px; background:#FFFFFF;
  box-shadow:inset 0 0 0 1px rgba(255, 255, 255, .72);
}
.heroFundingPartnerLogo{
  display:block; width:100%; height:100%; object-fit:contain; object-position:left center;
}

/* ---------- Hero preview ---------- */
.getStartedPhoneArea, .getStartedImageArea{
  position:relative; z-index:2; min-height:560px; display:flex; align-items:center; justify-content:center;
  justify-self:center; isolation:isolate;
}
.getStartedPhoneArea::before, .getStartedImageArea::before{
  content:""; position:absolute; z-index:-1; width:min(480px, 70%); aspect-ratio:1; border-radius:50%;
  background:radial-gradient(circle at 50% 50%, rgba(11, 99, 255, .13), rgba(11, 99, 255, .04) 46%, transparent 72%);
  filter:blur(4px);
}
html[data-theme="dark"] .getStartedPhoneArea::before, html[data-theme="dark"] .getStartedImageArea::before{
  background:radial-gradient(circle at 50% 50%, rgba(106, 160, 255, .18), rgba(106, 160, 255, .06) 48%, transparent 72%);
}
.heroPreviewFrame{
  position:relative; isolation:isolate; width:min(var(--preview-width), 100%); padding:12px; overflow:hidden;
  opacity:0; border:1px solid var(--frost-border); border-radius:38px; background:var(--frost-bg);
  box-shadow:var(--frost-shadow); backdrop-filter:blur(18px) saturate(1.2);
  -webkit-backdrop-filter:blur(18px) saturate(1.2); filter:blur(14px); transform:translateY(22px) scale(.985);
  animation:indexFadePreview .86s cubic-bezier(.22, .61, .36, 1) .16s forwards;
}
.heroPreviewFrame::before{
  content:""; position:absolute; inset:0; z-index:2; pointer-events:none;
  background:linear-gradient(90deg, rgba(255, 255, 255, .20) 0%, transparent 28%, transparent 72%, rgba(255, 255, 255, .58) 100%), linear-gradient(180deg, rgba(255, 255, 255, .18) 0%, transparent 38%, rgba(255, 255, 255, .18) 100%);
}
html[data-theme="dark"] .heroPreviewFrame::before{
  background:linear-gradient(90deg, rgba(11, 18, 32, .22) 0%, transparent 28%, transparent 72%, rgba(11, 18, 32, .56) 100%), linear-gradient(180deg, rgba(11, 18, 32, .18) 0%, transparent 38%, rgba(11, 18, 32, .26) 100%);
}
.heroPreviewImage{
  position:relative; z-index:1; display:block; width:100%; height:500px; border-radius:30px;
  background:var(--surface-3); box-shadow:var(--shadow-out-sm); object-fit:cover; object-position:center;
}

/* ---------- Hero service heading ---------- */
.heroServiceHeading{
  width:100%; max-width:617px; margin-top:44px;
  display:flex; flex-direction:column; align-items:flex-start; gap:4px;
}
.heroServiceHeading h2{
  margin:0; color:var(--ink); font-size:12px; line-height:1.25; font-weight:800;
  letter-spacing:.13em; text-transform:uppercase;
}
.heroServiceHeading p{
  max-width:570px; margin:0; color:var(--muted); font-size:10.5px; line-height:1.55; font-weight:600;
}
.heroServiceHeading + .heroFeatureList{
  margin-top:14px;
}

/* ---------- Running cards layanan ---------- */
/*
 * Jeda vertikal ditempatkan pada viewport, bukan wrapper luar.
 * Dengan begitu card dan shadow memiliki ruang terhadap tepi
 * atas-bawah area running card tanpa mengubah jarak antarseksi.
 */
.heroFeatureList{
  position:relative; isolation:isolate; width:100%; max-width:617px; margin-top:14px; padding:0;
  overflow:hidden;
  -webkit-mask-image:linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
  mask-image:linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.heroFeatureViewport{
  width:100%;
  padding:4px 0 15px;
  overflow:hidden;
}
.heroFeatureTrack{
  --heroFeatureHalf:0px;
  --heroFeatureDuration:30s;
  width:max-content; display:flex; align-items:stretch; gap:14px;
  transform:translate3d(0, 0, 0); will-change:transform;
}
.heroFeatureList.is-ready .heroFeatureTrack{
  animation:heroFeatureRun var(--heroFeatureDuration) linear infinite;
}
.heroFeatureList:hover .heroFeatureTrack,
.heroFeatureList:focus-within .heroFeatureTrack,
.heroFeatureList.is-paused .heroFeatureTrack{
  animation-play-state:paused;
}
.heroFeatureItem{
  position:relative; isolation:isolate; width:184px; min-width:184px; min-height:72px; padding:9px 12px 9px 9px;
  display:grid; grid-template-columns:54px minmax(0, 1fr); align-items:center; gap:10px;
  overflow:hidden; border:1px solid rgba(255, 255, 255, .48); border-radius:19px; color:var(--ink);
  background:linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(245, 248, 252, .96));
  box-shadow:var(--shadow-out-sm);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.heroFeatureItem::after{
  content:none;
}
.heroFeatureItem:hover{
  border-color:rgba(255, 255, 255, .64);
  background:linear-gradient(145deg, #FFFFFF, rgba(247, 250, 253, .98));
  box-shadow:var(--shadow-out-sm);
  transform:translateY(-2px);
}
html[data-theme="dark"] .heroFeatureItem{
  border-color:rgba(255, 255, 255, .08);
  background:linear-gradient(145deg, rgba(17, 28, 52, .92), rgba(24, 39, 69, .90));
  box-shadow:var(--shadow-out-sm);
}
html[data-theme="dark"] .heroFeatureItem:hover{
  border-color:rgba(255, 255, 255, .12);
  background:linear-gradient(145deg, rgba(24, 39, 69, .94), rgba(17, 28, 52, .92));
}
.heroFeaturePhotoWrap{
  width:54px; height:54px; min-width:54px; display:flex; align-items:center; justify-content:center;
  overflow:hidden; border:1px solid rgba(11, 99, 255, .08); border-radius:15px;
  background:linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(238, 243, 248, .92));
  box-shadow:inset 0 0 0 1px rgba(255, 255, 255, .72);
}
html[data-theme="dark"] .heroFeaturePhotoWrap{
  border-color:rgba(106, 160, 255, .12);
  background:linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(235, 241, 249, .94));
}
.heroFeaturePhoto{
  position:static; display:block; width:48px; height:48px; min-width:48px; max-width:48px;
  object-fit:contain; object-position:center; pointer-events:none; user-select:none;
  filter:drop-shadow(0 5px 7px rgba(15, 23, 42, .14));
}
.heroFeatureLabel{
  min-width:0; display:block; color:var(--ink); font-size:12px; line-height:1.25; font-weight:800;
  letter-spacing:-.018em; text-align:left; white-space:normal;
}
@keyframes heroFeatureRun{
  from{
    transform:translate3d(0, 0, 0);
  }
  to{
    transform:translate3d(calc(-1 * var(--heroFeatureHalf)), 0, 0);
  }
}

/* ---------- Hero actions ---------- */
.getStartedActions{
  width:auto; margin-top:28px; display:flex; flex-flow:row nowrap; align-items:center; justify-content:flex-start;
  gap:14px; overflow:visible;
}
.getStartedPrimaryBtn, .getStartedGoogleBtn{
  width:220px; min-width:220px; max-width:220px; min-height:56px; height:56px;
  flex:0 0 220px; margin:0; padding:0 24px; display:inline-flex;
  align-items:center; justify-content:center; gap:10px; border-radius:var(--radius-pill); text-align:center;
  text-decoration:none; white-space:nowrap; cursor:pointer; -webkit-tap-highlight-color:transparent;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.getStartedPrimaryBtn{
  border:0; color:#FFFFFF; background:var(--primary-gradient); box-shadow:var(--primary-shadow); font-size:15px;
  line-height:1.2; font-weight:800; letter-spacing:-.01em;
}
.getStartedPrimaryBtn:hover{
  box-shadow:var(--primary-shadow); transform:translateY(-1px);
}
.getStartedPrimaryBtn:active{
  transform:translateY(0);
}
.getStartedPrimaryIconWrap{
  flex:0 0 auto; display:inline-flex; align-items:center; justify-content:center; color:#FFFFFF; line-height:1;
}
.getStartedPrimaryIconWrap i{
  color:#FFFFFF; font-size:22px; line-height:1;
}
.getStartedPrimaryBtnText{
  display:inline-flex; align-items:center; justify-content:center; color:#FFFFFF; font:inherit; white-space:nowrap;
}
.getStartedGoogleBtn{
  border:1px solid rgba(255, 255, 255, .48); color:#202124;
  background:linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(238, 243, 248, .92));
  box-shadow:var(--shadow-out-sm);
}
.getStartedGoogleBtn:hover{
  box-shadow:var(--shadow-out-sm); transform:translateY(-1px);
}
.getStartedGoogleBtn:active{
  box-shadow:var(--shadow-in-sm); transform:translateY(0);
}
html[data-theme="dark"] .getStartedGoogleBtn{
  border-color:rgba(255, 255, 255, .08); color:#EAF1FF;
  background:linear-gradient(145deg, rgba(17, 28, 52, .92), rgba(24, 39, 69, .90));
}
.getStartedGoogleIconWrap{
  width:34px; height:34px; min-width:34px; max-width:34px; flex:0 0 auto; display:inline-flex; align-items:center;
  justify-content:center; overflow:hidden; border-radius:50%; background:#FFFFFF;
  box-shadow:4px 4px 10px rgba(163, 177, 198, .18), -4px -4px 10px rgba(255, 255, 255, .95);
}
.getStartedGoogleSvg, .getStartedGoogleBtn svg{
  display:block; width:20px; height:20px; min-width:20px; max-width:20px; flex:0 0 auto;
}
.getStartedGoogleBtnContent{
  min-width:0; flex:0 0 auto; display:flex; align-items:center; justify-content:center;
}
.getStartedGoogleBtnText{
  display:inline-flex; align-items:center; justify-content:center; color:inherit; font-size:15px; line-height:1.2;
  font-weight:800; letter-spacing:-.01em; white-space:nowrap;
}
.getStartedTrustList, .getStartedTrustItem{
  display:none !important;
}


/* ---------- Footer ---------- */
.siteFooter{
  position:relative; z-index:20; width:100%; margin-top:auto; padding:14px 34px;
  flex:0 0 auto; border-top:1px solid rgba(255, 255, 255, .45);
  color:rgba(15, 23, 42, .65); background:rgba(255, 255, 255, .35);
  box-shadow:inset 0 1px 0 rgba(255, 255, 255, .6), 0 -8px 28px rgba(0, 0, 0, .05); backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px); font-size:12.5px;
}
html[data-theme="dark"] .siteFooter{
  border-top-color:rgba(255, 255, 255, .08); color:rgba(234, 241, 255, .70); background:rgba(15, 23, 42, .45);
  box-shadow:inset 0 1px 0 rgba(255, 255, 255, .06), 0 -10px 34px rgba(0, 0, 0, .35);
}
.footerInner{
  width:100%; max-width:1480px; margin:0 auto; display:flex; align-items:center; justify-content:space-between;
  gap:18px;
}
.footerLeft{
  color:inherit; line-height:1.6; text-align:left;
}
.footerPublicDesc{
  max-width:720px; margin:0 0 6px; color:var(--muted); font-size:12.5px; line-height:1.6;
}
.footerCopyrightLine{
  color:inherit; line-height:1.6;
}
.footerRight{
  display:flex; align-items:center; gap:10px; white-space:nowrap;
}
.footerRight a{
  color:rgba(15, 23, 42, .68); font-weight:600; text-decoration:none; transition:color .18s ease, transform .18s ease;
}
html[data-theme="dark"] .footerRight a{
  color:rgba(234, 241, 255, .74);
}
.footerRight a:hover{
  color:#0B1220; transform:translateY(-1px);
}
html[data-theme="dark"] .footerRight a:hover{
  color:#FFFFFF;
}
.footerRight .sep{
  opacity:.45;
}

/* ---------- Animations ---------- */
@keyframes indexFadeRight{
  0%{
    opacity:0; filter:blur(14px); transform:translateX(26px);
  }
  70%{
    opacity:1; filter:blur(4px); transform:translateX(0);
  }
  100%{
    opacity:1; filter:blur(0); transform:translateX(0);
  }
}
@keyframes indexFadePreview{
  0%{
    opacity:0; filter:blur(14px); transform:translateY(22px) scale(.985);
  }
  70%{
    opacity:1; filter:blur(4px); transform:translateY(0) scale(1);
  }
  100%{
    opacity:1; filter:blur(0); transform:translateY(0) scale(1);
  }
}
@media (prefers-reduced-motion:reduce){
  *, *::before, *::after{
    scroll-behavior:auto !important; animation-duration:.001ms !important; animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
  }
  .getStartedContent, .heroPreviewFrame{
    opacity:1; filter:none; transform:none;
  }
  .heroFeatureList{
    -webkit-mask-image:none;
    mask-image:none;
  }
  .heroFeatureViewport{
    overflow-x:auto;
    scrollbar-width:none;
  }
  .heroFeatureViewport::-webkit-scrollbar{
    display:none;
  }
  .heroFeatureList.is-ready .heroFeatureTrack{
    animation:none;
  }
}


/* ---------- Desktop compact left content card + right photo background ---------- */
@media (min-width:1121px){
  main{
    padding:0;
    overflow:hidden;
  }

  /*
   * Sticky footer desktop:
   * footer tetap berada di dasar viewport tanpa menutupi konten.
   */
  .siteFooter{
    min-height:50px;
  }

  .footerInner{
    min-height:22px;
  }

  .getStartedHero{
    position:relative;
    isolation:isolate;
    width:100%;
    max-width:none;
    min-height:calc(100svh - 140px);
    margin:0;
    padding:clamp(40px, 4vw, 64px) clamp(34px, 4.5vw, 76px);
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:0;
    overflow:hidden;
  }

  /*
   * Foto besar ditempatkan di sisi kanan.
   * Bagian kiri dibuat lebih terang agar card konten mudah dibaca.
   */
  .getStartedHero::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:1;
    pointer-events:none;
    background:linear-gradient(
      90deg,
      var(--bg) 0%,
      rgba(238, 242, 247, .96) 13%,
      rgba(238, 242, 247, .78) 29%,
      rgba(238, 242, 247, .34) 45%,
      rgba(238, 242, 247, .04) 65%,
      rgba(238, 242, 247, .02) 100%
    );
  }

  /*
   * Aksen cahaya biru lembut diletakkan di belakang card kiri.
   */
  .getStartedHero::after{
    content:"";
    position:absolute;
    top:16%;
    left:1%;
    z-index:1;
    width:48%;
    height:64%;
    pointer-events:none;
    border-radius:50%;
    background:radial-gradient(
      ellipse at center,
      rgba(11, 99, 255, .08),
      rgba(11, 99, 255, .025) 48%,
      transparent 72%
    );
    filter:blur(16px);
  }

  /*
   * Foto tidak lagi berupa card.
   * Area foto memenuhi sisi kanan hero dan tetap berada di belakang konten.
   */
  .getStartedPhoneArea,
  .getStartedImageArea{
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:auto;
    z-index:0;
    width:78%;
    height:100%;
    min-height:0;
    display:block;
    overflow:hidden;
    isolation:isolate;
    opacity:1;
    pointer-events:none;
  }

  /*
   * Fade kiri membuat foto menyatu dengan card.
   * Fade atas dan bawah menjaga komposisi tetap formal.
   */
  .getStartedPhoneArea::before,
  .getStartedImageArea::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:3;
    width:auto;
    height:auto;
    aspect-ratio:auto;
    border-radius:0;
    background:linear-gradient(
      90deg,
      var(--bg) 0%,
      rgba(238, 242, 247, .96) 8%,
      rgba(238, 242, 247, .68) 23%,
      rgba(238, 242, 247, .22) 42%,
      rgba(238, 242, 247, .01) 62%,
      rgba(238, 242, 247, 0) 100%
    );
    filter:none;
  }

  /*
   * Shadow atas-bawah dipisahkan dari fade sisi kiri.
   * Mask horizontal membuat shadow masih lembut di area tengah,
   * lalu semakin menghilang menuju sisi kanan layar.
   */
  .getStartedPhoneArea::after,
  .getStartedImageArea::after{
    content:"";
    position:absolute;
    inset:0;
    z-index:4;
    pointer-events:none;
    background:linear-gradient(
      180deg,
      rgba(238, 242, 247, .32) 0%,
      rgba(238, 242, 247, 0) 6%,
      rgba(238, 242, 247, 0) 96%,
      rgba(238, 242, 247, .30) 100%
    );
    -webkit-mask-image:linear-gradient(
      90deg,
      rgba(0, 0, 0, .78) 0%,
      rgba(0, 0, 0, .68) 34%,
      rgba(0, 0, 0, .46) 64%,
      rgba(0, 0, 0, .24) 84%,
      rgba(0, 0, 0, .08) 100%
    );
    mask-image:linear-gradient(
      90deg,
      rgba(0, 0, 0, .78) 0%,
      rgba(0, 0, 0, .68) 34%,
      rgba(0, 0, 0, .46) 64%,
      rgba(0, 0, 0, .24) 84%,
      rgba(0, 0, 0, .08) 100%
    );
  }

  /*
   * Frame foto lama dinetralkan sepenuhnya.
   */
  .heroPreviewFrame{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    max-width:none;
    padding:0;
    overflow:hidden;
    opacity:0;
    border:0;
    border-radius:0;
    background:transparent;
    box-shadow:none;
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
    filter:blur(12px);
    transform:scale(1.035);
    animation:indexFadeDesktopPhoto .92s cubic-bezier(.22, .61, .36, 1) .10s forwards;
  }

  /*
   * Lapisan transisi tambahan di batas atas foto.
   * Membuat sambungan area navbar dan gambar kanan terlihat halus
   * tanpa menutup bagian utama foto.
   */
  .heroPreviewFrame::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:2;
    display:block;
    pointer-events:none;
    background:linear-gradient(
      180deg,
      rgba(238, 242, 247, .72) 0%,
      rgba(238, 242, 247, .52) 2.5%,
      rgba(238, 242, 247, .28) 6%,
      rgba(238, 242, 247, .10) 10%,
      rgba(238, 242, 247, 0) 14%
    );
  }

  /*
   * Penguat lokal sudut kanan atas:
   * area efektif sekitar 80px dari tepi kanan, lalu memudar halus.
   */
  .heroPreviewFrame::after{
    content:"";
    position:absolute;
    top:0;
    right:0;
    z-index:3;
    width:126px;
    height:104px;
    display:block;
    pointer-events:none;
    background:radial-gradient(
      ellipse at 100% 0%,
      rgba(238, 242, 247, 1) 0%,
      rgba(238, 242, 247, .94) 24%,
      rgba(238, 242, 247, .76) 46%,
      rgba(238, 242, 247, .48) 66%,
      rgba(238, 242, 247, .20) 84%,
      rgba(238, 242, 247, 0) 100%
    );
  }

  .heroPreviewImage{
    position:absolute;
    top:0;
    right:-2px;
    bottom:0;
    left:0;
    width:calc(100% + 2px);
    height:100%;
    min-height:100%;
    border-radius:0;
    background:transparent;
    box-shadow:none;
    object-fit:cover;
    object-position:62% 50%;
    filter:saturate(.88) contrast(.98) brightness(1.02);
    transform:scale(1.08);
  }

  /*
   * Card dipindahkan ke sisi kiri dan dibuat lebih compact.
   */
  .getStartedContent{
    position:relative;
    top:-30px;
    z-index:4;
    width:min(530px, 39vw);
    max-width:530px;
    margin-left:clamp(32px, 4.5vw, 72px);
    margin-right:auto;
    justify-self:auto;
  }

  .getStartedContent::before{
    inset:-20px -22px -22px;
    border-color:rgba(255, 255, 255, .72);
    border-radius:27px;
    background:
      linear-gradient(
        145deg,
        rgba(255, 255, 255, .84),
        rgba(238, 242, 247, .72)
      ),
      radial-gradient(
        circle at 12% 10%,
        rgba(11, 99, 255, .09),
        transparent 34%
      );
    box-shadow:
      16px 16px 34px rgba(163, 177, 198, .30),
      -14px -14px 31px rgba(255, 255, 255, .70);
    backdrop-filter:blur(22px) saturate(1.09);
    -webkit-backdrop-filter:blur(22px) saturate(1.09);
  }

  .getStartedContent::after{
    inset:-10px -12px -13px;
    border-color:rgba(11, 99, 255, .14);
    border-radius:20px;
  }

  /* ---------- Compact typography ---------- */
  .heroResearchEyebrow{
    min-height:27px;
    margin-bottom:9px;
    padding:4px 9px 4px 5px;
    gap:6px;
    font-size:8.8px;
    letter-spacing:.088em;
  }

  .heroResearchEyebrowIcon{
    width:19px;
    height:19px;
  }

  .heroResearchEyebrowIcon i{
    font-size:7.5px;
  }

  .getStartedTitle{
    font-size:clamp(45px, 4.55vw, 64px);
    line-height:.965;
  }

  .getStartedTitleMain{
    gap:10px;
  }

  .getStartedTitleLogo{
    width:clamp(76px, 6.2vw, 98px);
    height:clamp(76px, 6.2vw, 98px);
    min-width:clamp(76px, 6.2vw, 98px);
    transform:translateY(-5px);
  }

  .getStartedTitle > span:not(.getStartedTitleMain){
    max-width:515px;
    margin-top:9px;
    font-size:clamp(20px, 1.85vw, 28px);
    line-height:1.14;

    /* Tetap compact, tetapi lebih nyaman dibaca. */
    transform:translateY(-8px);
  }

  .getStartedSub{
    max-width:515px;
    margin-top:12px;
    font-size:13.2px;
    line-height:1.58;

    /* Tetap compact, tetapi lebih nyaman dibaca. */
    transform:translateY(-8px);
  }

  /* ---------- Compact service heading ---------- */
  .getStartedActions + .heroServiceHeading{
    margin-top:32px;
  }

  .heroServiceHeading{
    max-width:510px;
    gap:3px;
  }

  .heroServiceHeading h2{
    font-size:11.8px;
    letter-spacing:.115em;
  }

  .heroServiceHeading p{
    max-width:490px;
    font-size:10.3px;
    line-height:1.47;
  }

  .heroServiceHeading + .heroFeatureList{
    margin-top:11px;
  }

  /* ---------- Compact running cards ---------- */
  .heroFeatureList{
    max-width:510px;
    margin-top:11px;
    padding:0;
  }

  .heroFeatureViewport{
    /*
     * Ruang atas tetap dipertahankan.
     * Ruang bawah diperbesar agar shadow card tidak terpotong
     * oleh batas bawah frame pembungkus.
     */
    padding:7px 0 19px;
  }

  .heroFeatureTrack{
    --heroFeatureDuration:27s;
    gap:11px;
  }

  .heroFeatureItem{
    width:150px;
    min-width:150px;
    min-height:58px;
    padding:7px 8px 7px 7px;
    grid-template-columns:43px minmax(0, 1fr);
    gap:8px;
    border-radius:15px;
  }

  .heroFeaturePhotoWrap{
    width:43px;
    height:43px;
    min-width:43px;
    border-radius:12px;
  }

  .heroFeaturePhoto{
    width:38px;
    height:38px;
    min-width:38px;
    max-width:38px;
  }

  .heroFeatureLabel{
    font-size:9.9px;
    line-height:1.20;
  }

  /* ---------- Compact funding ecosystem ---------- */
  .heroFeatureList + .heroFundingEcosystem{
    margin-top:11px;
  }

  .heroFundingEcosystem{
    max-width:510px;
  }

  .heroFundingDivider{
    margin-bottom:12px;
  }

  .heroFundingHeading{
    gap:3px;
  }

  .heroFundingHeading h2{
    font-size:11.8px;
    letter-spacing:.115em;
  }

  .heroFundingHeading p{
    max-width:490px;
    font-size:10.3px;
    line-height:1.47;
  }

  .heroFundingPartnerCard{
    min-height:55px;
    margin-top:9px;
    padding:5px 7px;
    border-radius:13px;
  }

  .heroFundingPartnerLogoWrap{
    width:320px;
    max-width:100%;
    height:41px;
    padding:2px 6px;
    border-radius:9px;
  }

  /* ---------- Compact action buttons ---------- */
  .getStartedActions{
    margin-top:15px;
    gap:11px;
  }

  .getStartedPrimaryBtn,
  .getStartedGoogleBtn{
    width:208px;
    min-width:208px;
    max-width:208px;
    min-height:47px;
    height:47px;
    flex-basis:208px;
    padding:0 18px;
    gap:9px;
  }

  .getStartedPrimaryBtn{
    font-size:13px;
  }

  .getStartedPrimaryIconWrap i{
    font-size:18px;
  }

  .getStartedGoogleIconWrap{
    width:28px;
    height:28px;
    min-width:28px;
    max-width:28px;
  }

  .getStartedGoogleSvg,
  .getStartedGoogleBtn svg{
    width:17px;
    height:17px;
    min-width:17px;
    max-width:17px;
  }

  .getStartedGoogleBtnText{
    font-size:12.8px;
  }
}

/* ---------- Desktop dark compact left card ---------- */
@media (min-width:1121px){
  html[data-theme="dark"] .getStartedHero::before{
    background:linear-gradient(
      90deg,
      var(--bg) 0%,
      rgba(11, 18, 32, .96) 13%,
      rgba(11, 18, 32, .80) 29%,
      rgba(11, 18, 32, .36) 45%,
      rgba(11, 18, 32, .04) 66%,
      rgba(11, 18, 32, .02) 100%
    );
  }

  html[data-theme="dark"] .getStartedPhoneArea::before,
  html[data-theme="dark"] .getStartedImageArea::before{
    background:linear-gradient(
      90deg,
      var(--bg) 0%,
      rgba(11, 18, 32, .96) 8%,
      rgba(11, 18, 32, .70) 23%,
      rgba(11, 18, 32, .24) 42%,
      rgba(11, 18, 32, .02) 62%,
      rgba(11, 18, 32, 0) 100%
    );
  }

  html[data-theme="dark"] .getStartedPhoneArea::after,
  html[data-theme="dark"] .getStartedImageArea::after{
    background:linear-gradient(
      180deg,
      rgba(11, 18, 32, .34) 0%,
      rgba(11, 18, 32, 0) 6%,
      rgba(11, 18, 32, 0) 96%,
      rgba(11, 18, 32, .34) 100%
    );
  }

  html[data-theme="dark"] .heroPreviewFrame::before{
    background:linear-gradient(
      180deg,
      rgba(11, 18, 32, .74) 0%,
      rgba(11, 18, 32, .54) 2.5%,
      rgba(11, 18, 32, .30) 6%,
      rgba(11, 18, 32, .12) 10%,
      rgba(11, 18, 32, 0) 14%
    );
  }

  html[data-theme="dark"] .heroPreviewFrame::after{
    background:radial-gradient(
      ellipse at 100% 0%,
      rgba(11, 18, 32, 1) 0%,
      rgba(11, 18, 32, .96) 24%,
      rgba(11, 18, 32, .78) 46%,
      rgba(11, 18, 32, .50) 66%,
      rgba(11, 18, 32, .22) 84%,
      rgba(11, 18, 32, 0) 100%
    );
  }

  html[data-theme="dark"] .heroPreviewImage{
    filter:saturate(.82) contrast(1.02) brightness(.78);
  }

  html[data-theme="dark"] .getStartedContent::before{
    border-color:rgba(255, 255, 255, .10);
    background:
      linear-gradient(
        145deg,
        rgba(17, 28, 52, .86),
        rgba(15, 23, 42, .76)
      ),
      radial-gradient(
        circle at 12% 10%,
        rgba(106, 160, 255, .14),
        transparent 36%
      );
    box-shadow:
      16px 16px 35px rgba(0, 0, 0, .43),
      -14px -14px 32px rgba(255, 255, 255, .027);
  }
}

@keyframes indexFadeDesktopPhoto{
  0%{
    opacity:0;
    filter:blur(12px);
    transform:scale(1.055);
  }
  70%{
    opacity:1;
    filter:blur(3px);
    transform:scale(1.04);
  }
  100%{
    opacity:1;
    filter:blur(0);
    transform:scale(1.035);
  }
}

/* ---------- Tablet ---------- */
@media (max-width:1120px){
  .getStartedHero{
    min-height:auto; padding-top:42px; padding-bottom:34px; grid-template-columns:1fr; gap:40px;
  }
  .getStartedContent{
    max-width:780px; justify-self:center; align-items:center; text-align:center;
  }
  .heroResearchEyebrow{
    margin-right:auto; margin-left:auto;
  }
  .getStartedTitleMain{
    margin-right:auto; margin-left:auto; justify-content:center;
  }
  .getStartedSub{
    max-width:700px;
  }
  .heroServiceHeading{
    max-width:617px; align-items:center; text-align:center;
  }
  .heroServiceHeading p{
    margin-right:auto; margin-left:auto;
  }
  .heroFeatureList{
    max-width:617px;
  }
  .getStartedActions{
    justify-content:center;
  }
  .getStartedPhoneArea, .getStartedImageArea{
    min-height:auto; justify-self:center; justify-content:center;
  }
  .heroPreviewFrame{
    width:min(760px, 100%);
  }
  .heroPreviewImage{
    height:440px;
  }
}

/* ---------- Compact navbar ---------- */
@media (max-width:900px){
  header nav{
    display:none;
  }
  .burger{
    display:inline-flex;
  }
  .rightPack{
    width:auto; min-width:0; gap:8px;
  }
  .rightPack #btnTheme, .rightPack .loginBtn{
    display:none;
  }
}

/* ---------- Mobile ---------- */
@media (max-width:740px){
  html, body, .wrap, main{
    width:100%; max-width:100%; overflow-x:hidden;
  }
  body{
    min-height:100svh;
    padding-bottom:0;
  }
  .navwrap{
    padding:10px 10px 0;
  }
  header{
    min-height:64px; height:auto; padding:10px 12px; gap:10px; border-radius:20px;
  }
  header .brand .mark{
    width:32px; height:32px; min-width:32px;
  }
  header .brand .brandText{
    line-height:1.06; transform:translateX(-10px);
  }
  header .brand .brandTitle{
    margin-bottom:3px; font-size:16px; line-height:1.06;
  }
  header .brand .brandSubTitle{
    margin-top:2px; font-size:10.5px; line-height:1.06;
  }
  .drawer{
    inset:0; width:100dvw; max-width:100dvw; height:100dvh;
    padding:max(16px, env(safe-area-inset-top)) 16px max(18px, env(safe-area-inset-bottom)); overflow-y:auto;
    border-right:0; border-radius:0; box-shadow:none; -webkit-overflow-scrolling:touch;
  }
  .drawerHeader{
    align-items:center;
  }
  .drawerTitle{
    font-size:24px;
  }
  .drawerTopToggles{
    flex-direction:column; align-items:stretch; gap:12px;
  }
  .drawerTopToggles .switch{
    width:100%;
  }
  .drawerTopToggles .switchTrack{
    width:100%; min-width:0; flex:1;
  }
  main{
    padding:0 0 18px;
  }
  .getStartedHero{
    position:relative; isolation:isolate; width:100%; max-width:100%; min-height:auto; padding:0 0 34px;
    grid-template-columns:1fr; align-items:start; justify-items:center; gap:0; overflow:hidden;
  }
  .getStartedPhoneArea, .getStartedImageArea{
    position:absolute; top:-74px; left:50%; z-index:1; width:136vw; max-width:none; height:clamp(250px, 76vw, 330px);
    min-height:0; display:flex; align-items:flex-start; justify-content:center; overflow:visible; opacity:1;
    visibility:visible; pointer-events:none; transform:translateX(-50%);
  }
  .getStartedPhoneArea::before, .getStartedImageArea::before{
    content:none;
  }
  .heroPreviewFrame{
    width:136vw; max-width:none; height:clamp(250px, 76vw, 330px); padding:0; overflow:hidden; opacity:.68; border:0;
    border-radius:0 0 34px 34px; background:transparent; box-shadow:none; backdrop-filter:none;
    -webkit-backdrop-filter:none; filter:none; transform:none; animation:none;
  }
  .heroPreviewFrame::before{
    content:""; position:absolute; inset:0; z-index:2; display:block; opacity:1; pointer-events:none;
    background:linear-gradient(
      180deg,
      rgba(255, 255, 255, .02) 0%,
      rgba(255, 255, 255, .07) 40%,
      rgba(255, 255, 255, .48) 74%,
      rgba(255, 255, 255, .93) 100%
    );
  }
  html[data-theme="dark"] .heroPreviewFrame::before{
    background:linear-gradient(
      180deg,
      rgba(11, 18, 32, .04) 0%,
      rgba(11, 18, 32, .10) 40%,
      rgba(11, 18, 32, .52) 74%,
      rgba(11, 18, 32, .94) 100%
    );
  }
  .heroPreviewImage{
    width:100%; height:100%; min-height:0; border-radius:0 0 34px 34px; box-shadow:none; object-fit:cover;
    object-position:center top; filter:saturate(1) contrast(1.02);
  }
  .getStartedContent{
    position:relative; z-index:6; width:100%; max-width:100%; min-width:0;
    padding:calc(clamp(150px, 45vw, 208px) - 30px) 12px 24px;
    align-items:center; opacity:1; text-align:center; filter:none;
    transform:none; animation:none;
  }
  .getStartedContent::before,
  .getStartedContent::after{
    content:none;
  }
  .heroResearchEyebrow{
    display:none !important;
  }
  .getStartedTitle{
    position:relative; z-index:7; width:100%; max-width:100%; padding:0 4px; font-size:clamp(38px, 12.4vw, 58px);
    line-height:.98; letter-spacing:-.052em; text-align:center;
    text-shadow:0 2px 0 rgba(255, 255, 255, .92), 0 10px 28px rgba(255, 255, 255, .82);
    transform:translateY(8px);
  }
  html[data-theme="dark"] .getStartedTitle{
    text-shadow:0 2px 0 rgba(11, 18, 32, .85), 0 10px 28px rgba(11, 18, 32, .72);
  }
  .getStartedTitleMain{
    max-width:calc(100vw - 24px); margin:0 auto; justify-content:center; gap:10px; text-align:center;
    transform:translateY(11px);
  }
  .getStartedTitleLogo{
    width:clamp(66px, 18vw, 92px); height:clamp(66px, 18vw, 92px); min-width:clamp(66px, 18vw, 92px);
    transform:translateY(-9px);
  }
  .getStartedTitleText{
    text-align:center; white-space:nowrap; text-shadow:none;
  }
  .getStartedTitle > span:not(.getStartedTitleMain){
    width:100%; max-width:94vw; margin:12px auto 0; padding:0 6px; font-size:clamp(19px, 5.8vw, 26px);
    line-height:1.20; letter-spacing:-.034em; text-align:center; overflow-wrap:anywhere;
    transform:translateY(3px);
  }
  .getStartedSub{
    position:relative; z-index:7; width:100%; max-width:92vw; margin:16px auto 0; font-size:13.5px; line-height:1.65;
    text-align:center; overflow-wrap:anywhere; transform:translateY(5px);
  }
  .heroFundingEcosystem{
    width:min(320px, 92vw); max-width:320px; margin:22px auto 34px; padding:0;
    transform:translateY(9px);
  }
  .heroFeatureList + .heroFundingEcosystem{
    margin-top:30px;
  }
  .heroFundingDivider{
    margin-bottom:14px;
  }
  .heroFundingHeading{
    align-items:center; padding:0 2px; text-align:center;
  }
  .heroFundingHeading h2{
    font-size:10px; letter-spacing:.11em;
  }
  .heroFundingHeading p{
    max-width:100%; margin-right:auto; margin-left:auto;
    font-size:9.5px; line-height:1.48;
  }
  .heroFundingPartnerCard{
    width:fit-content; max-width:100%; min-height:40px;
    margin:9px auto 0; padding:2px; display:flex;
    justify-content:center; border-radius:9px;
  }
  .heroFundingPartnerLogoWrap{
    width:196px; max-width:100%; height:29px; padding:1px 2px;
    justify-content:center; border-radius:7px;
  }
  .heroFundingPartnerLogo{
    object-position:center;
  }
  .heroServiceHeading,
  .heroFeatureList{
    display:none !important;
  }
  .getStartedActions{
    position:relative; z-index:7; width:100%; max-width:calc(100vw - 24px); margin:26px auto 0; padding-bottom:0;
    flex-direction:column; flex-wrap:nowrap; align-items:center; justify-content:center; gap:12px; overflow:visible;
    transform:translateY(5px);
  }
  .getStartedPrimaryBtn, .getStartedGoogleBtn{
    width:min(296px, 92vw); min-width:0; max-width:296px;
    min-height:52px; height:52px; max-height:52px; margin:0 auto;
    flex:0 0 auto; border-radius:var(--radius-pill);
  }
  .getStartedPrimaryBtn{
    padding:0 18px; gap:9px; font-size:14px;
  }
  .getStartedPrimaryIconWrap i{
    font-size:20px;
  }
  .getStartedGoogleBtn{
    padding:0 18px; gap:9px;
  }
  .getStartedGoogleIconWrap{
    width:30px; height:30px; min-width:30px; max-width:30px;
  }
  .getStartedGoogleSvg, .getStartedGoogleBtn svg{
    width:18px; height:18px; min-width:18px; max-width:18px;
  }
  .getStartedGoogleBtnText{
    font-size:13.5px; line-height:1.15;
  }
  .siteFooter{
    display:none !important;
  }
}

/* ---------- Small mobile ---------- */
@media (max-width:420px){
  .getStartedPhoneArea, .getStartedImageArea{
    top:-72px; width:140vw; height:clamp(235px, 82vw, 305px);
  }
  .heroPreviewFrame{
    top:42px; width:140vw; height:clamp(235px, 82vw, 305px);
  }
  .getStartedContent{
    padding-top:calc(clamp(138px, 45vw, 190px) - 30px);
    padding-right:10px;
    padding-left:10px;
  }
  .getStartedTitle{
    font-size:clamp(34px, 12vw, 48px);
  }
  .getStartedTitleMain{
    max-width:calc(100vw - 20px); gap:9px;
  }
  .getStartedTitleLogo{
    width:clamp(58px, 17vw, 78px); height:clamp(58px, 17vw, 78px); min-width:clamp(58px, 17vw, 78px);
  }
  .getStartedTitle > span:not(.getStartedTitleMain){
    font-size:clamp(17.5px, 5.6vw, 23px);
  }
  .getStartedSub{
    font-size:13px; line-height:1.62;
  }
  .getStartedPrimaryBtn, .getStartedGoogleBtn{
    width:min(276px, 92vw); max-width:276px;
    min-height:50px; height:50px; max-height:50px;
  }
  .getStartedGoogleBtn{
    padding:0 16px; gap:9px;
  }
  .getStartedGoogleIconWrap{
    width:28px; height:28px; min-width:28px; max-width:28px;
  }
  .getStartedGoogleSvg, .getStartedGoogleBtn svg{
    width:17px; height:17px; min-width:17px; max-width:17px;
  }
  .getStartedGoogleBtnText{
    font-size:13px;
  }
}

/* ---------- Extra-small mobile ---------- */
@media (max-width:340px){
  .getStartedPhoneArea, .getStartedImageArea{
    top:-68px; width:146vw; height:226px;
  }
  .heroPreviewFrame{
    top:48px; width:146vw; height:226px;
  }
  .getStartedContent{
    padding-top:100px;
  }
  .getStartedTitle{
    font-size:34px;
  }
  .getStartedTitleLogo{
    width:52px; height:52px; min-width:52px; transform:translateY(-10px);
  }
  .getStartedTitle > span:not(.getStartedTitleMain){
    font-size:18px;
  }
  .getStartedPrimaryBtn, .getStartedGoogleBtn{
    width:min(256px, 92vw); max-width:256px;
  }
  .getStartedGoogleBtn{
    padding:0 14px; gap:8px;
  }
  .getStartedGoogleBtnText{
    font-size:12.5px;
  }
}