:root{
  --bg:#f6f7f9;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --line:#e2e8f0;
  --primary:#5876cf;
  --primary2:#4164c7;
  --shadow:0 10px 28px rgba(2,6,23,.08);
  --max:1100px;
  --pad:24px;
  --headerH:72px;
  --space-1:8px;
  --space-2:16px;
  --space-3:24px;
  --space-4:32px;
  --space-5:40px;
  --space-6:48px;
  --space-7:56px;
  --radius-sm:4px;
  --radius-md:4px;
  --radius-lg:4px;
  --radius-pill:999px;
  --font:-apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --ease:cubic-bezier(.2,.9,.2,1);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:var(--bg);
  line-height:1.7;
}
h2{ color:#751414; }
a,
a:link,
a:visited{
  color:inherit;
}

a,
a:link,
a:visited,
a:hover,
a:focus,
a:focus-visible,
a:active{
  text-decoration:none;
}
a[target="_blank"]:not(.btn):not(.btn-primary):not(.btn-ghost):not(.site-brand):not(.logo){
  display:inline-flex;
  align-items:center;
  gap:0.28em;
}

a[target="_blank"]:not(.btn):not(.btn-primary):not(.btn-ghost):not(.site-brand):not(.logo)::after{
  content:"↗";
  font-size:.82em;
  line-height:1;
  opacity:.72;
  transform:translateY(-0.05em);
}

img{ max-width:100%; height:auto; display:block; }

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:0 var(--pad);
}

.site-header,
.header{
  position:sticky;
  top:0;
  z-index:50;
  height:var(--headerH);
  border-bottom:1px solid var(--line);
}

.site-header--glass{
  background:rgba(248,251,255,.82);
  backdrop-filter:saturate(180%) blur(12px);
}

.site-header--soft{
  background:rgba(245,247,251,.85);
  backdrop-filter:blur(10px);
}

.site-header__inner,
.header-inner,
.header__inner{
  height:100%;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:var(--space-2);
}

.site-brand,
.logo,
.brand{
  display:flex;
  align-items:center;
  gap:var(--space-1);
  font-weight:900;
  white-space:nowrap;
}

.site-brand > a,
.logo > a,
.brand > a{
  color:inherit;
  font-weight:inherit;
  white-space:nowrap;
}

.site-nav,
nav,
.header__nav{
  display:flex;
  gap:var(--space-1);
  flex-wrap:wrap;
  justify-content:center;
  align-items:center;
}

.site-nav a:not(.btn),
nav a:not(.btn),
.header__nav a:not(.btn){
  color:var(--muted);
  padding:7px 10px;
  border-radius:10px;
  font-size:14px;
  white-space:nowrap;
}

.site-nav a:not(.btn):hover,
nav a:not(.btn):hover,
.header__nav a:not(.btn):hover{
  background:rgba(37,99,235,.10);
  color:var(--primary2);
}

.site-nav a:not(.btn).is-active,
nav a:not(.btn).is-active,
.header__nav a:not(.btn).is-active{
  background:rgba(37,99,235,.12);
  color:var(--primary2);
  font-weight:800;
}

.site-header__actions,
.header-cta{
  display:flex;
  gap:var(--space-1);
  align-items:center;
  white-space:nowrap;
}

.burger{
  display:none;
  width:42px;
  height:42px;
  border-radius:12px;
  border:1px solid var(--line);
  background:var(--card);
  align-items:center;
  justify-content:center;
  cursor:pointer;
}

.burger span,
.burger span:before,
.burger span:after{
  content:"";
  display:block;
  width:18px;
  height:2px;
  background:#0f172a;
  border-radius:2px;
  position:relative;
}

.burger span:before{ position:absolute; top:-6px; left:0; }
.burger span:after{ position:absolute; top:6px; left:0; }

.mobilePanel{
  position:fixed;
  top:var(--headerH);
  left:0;
  right:0;
  z-index:49;
  border-top:1px solid var(--line);
  background:rgba(245,247,251,.95);
  backdrop-filter:blur(10px);
  padding:var(--space-2) var(--pad);
  box-shadow:0 18px 36px rgba(15,23,42,.12);
  max-height:calc(100dvh - var(--headerH));
  overflow:auto;
}

.mobilePanel a{
  display:block;
  padding:10px;
  border-radius:10px;
  color:#475569;
  font-weight:700;
}

.mobilePanel a:hover{
  background:rgba(37,99,235,.10);
  color:var(--primary2);
}

.mobilePanel[hidden]{ display:none !important; }

.link-features{
  margin-top:6px;
  font-weight:900;
  color:var(--primary2);
}

.neo-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  padding:2px 8px;
  border-radius:var(--radius-pill);
  background:#f59e0b;
  color:#fff;
  font-weight:800;
}

.legacy-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
  padding:2px 8px;
  border-radius:var(--radius-pill);
  background:#4164c7;
  color:#fff;
  font-weight:800;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  height:40px;
  padding:0 var(--space-2);
  border-radius:12px;
  font-size:14px;
  font-weight:800;
  border:1px solid var(--line);
  background:var(--card);
  box-shadow:0 1px 0 rgba(2,6,23,.04);
  cursor:pointer;
  transition:transform .08s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}

.btn:hover{ border-color:rgba(37,99,235,.24); }
.btn:active{ transform:translateY(1px); }

.btn-primary,
.btn--primary,
.btn-primary:link,
.btn-primary:visited,
.btn--primary:link,
.btn--primary:visited{
  background:var(--primary2);
  color:#fff;
  border-color:rgba(37,99,235,.35);
}

.btn-light,
.btn-light:link,
.btn-light:visited{
  color:var(--text);
  background:rgba(255,255,255,.90);
  border-color:transparent;
}

.btn-light:hover,
.btn-light:focus-visible{
  color:var(--text);
  border-color:transparent;
}

.btn-ghost,
.btn--ghost,
.btn-ghost:link,
.btn-ghost:visited,
.btn--ghost:link,
.btn--ghost:visited{
  background:transparent;
}

.btn-header-secondary{
  background:#fff;
  border-color:transparent;
}

.btn-header-secondary:hover{
  border-color:transparent;
}

.surface-card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius-sm);
  box-shadow:0 1px 0 rgba(2,6,23,.03);
}

.breadcrumb{
  display:flex;
  align-items:center;
  gap:var(--space-1);
  margin:0 0 18px;
  padding:0;
  list-style:none;
  color:var(--muted);
  font-size:13px;
  font-weight:700;
}

.breadcrumb li{
  display:flex;
  align-items:center;
  gap:var(--space-1);
  min-width:0;
}

.breadcrumb li:not(:last-child)::after{
  content:"/";
  color:#94a3b8;
}

.breadcrumb a:hover{ color:var(--text); }
.breadcrumb [aria-current="page"]{ color:var(--text); }

.subnav-link{
  display:inline-flex;
  align-items:center;
  gap:var(--space-1);
  margin:0 0 var(--space-3);
  padding:6px 10px;
  border-radius:var(--radius-pill);
  background:#eef2f7;
  color:#334155;
  font-size:13px;
  font-weight:800;
}

.subnav-link::before{
  content:"";
  width:8px;
  height:8px;
  border-left:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:rotate(45deg);
  margin-left:2px;
}

section{
  padding:var(--space-6) 0;
  scroll-margin-top:calc(var(--headerH) + 14px);
}

.sectionHead{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:var(--space-2);
  margin-bottom:var(--space-4);
}

.section-title,
.sectionHead h2{
  display:inline-flex;
  align-items:center;
  gap:var(--space-2);
  margin:0;
  font-size:22px;
  letter-spacing:.2px;
  line-height:1.2;
}

.section-title::before,
.sectionHead h2::before{
  content:"";
  display:block;
  width:18px;
  height:8px;
  border-radius:2px;
  background:#8f2d3f;
  flex:0 0 auto;
  transform:translateY(1px);
}

.sectionHead p{
  margin:var(--space-3) 0 0;
  color:var(--muted);
  font-size:14px;
}

.grid2{ display:grid; grid-template-columns:repeat(2, 1fr); gap:var(--space-2); }
.grid3{ display:grid; grid-template-columns:repeat(3, 1fr); gap:var(--space-2); }

.text-note{
  margin:12px 0 0;
  color:var(--muted);
  font-size:12.5px;
}

.text-note-tight{
  margin:10px 0 0;
  color:var(--muted);
  font-size:12.5px;
}

.text-body-sm{
  margin:0;
  color:var(--muted);
  font-size:14px;
}

.title-sm{
  margin:0 0 6px;
  font-size:15px;
}

.heading-tight{ margin:0; }
.heading-gap-sm{ margin:0 0 6px; }
.stack-gap-sm{ margin-top:14px; }

.reveal{
  opacity:0;
  transform:translateY(8px);
  transition:opacity .5s ease, transform .5s ease;
  will-change:opacity, transform;
}

.reveal.is-in{
  opacity:1;
  transform:none;
}

/* Feature detail page shared blocks */
.feature-page-main{ padding:28px 0 56px; }
.feature-page-hero{ display:block; }
.feature-hero-card,
.feature-screen,
.feature-cta,
.feature-panel{
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
  background:#fff;
}
.feature-hero-card{ padding:28px; }
.feature-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-bottom:12px;
  padding:6px 10px;
  border-radius:var(--radius-pill);
  border:none;
  background:#5e7490;
  color:#fff;
  font-size:12px;
  font-weight:900;
  letter-spacing:.04em;
}
.feature-eyebrow--core{ background:#5e7490; }
.feature-eyebrow--recruit{ background:#9a6d52; }
.feature-eyebrow--career{ background:#756188; }
.feature-eyebrow--utility{ background:#587b74; }
.feature-eyebrow--remote{ background:#746487; }
.feature-eyebrow--practice{ background:#8b6672; }
.feature-title{
  display:flex;
  align-items:center;
  gap:var(--space-2);
  margin:0 0 16px;
  font-size:34px;
  line-height:1.2;
  letter-spacing:.02em;
}
.feature-title::before{
  content:"";
  display:block;
  width:24px;
  height:2px;
  background:#8f2d3f;
  flex:0 0 auto;
  transform:translateY(1px);
}
.feature-lead{
  margin:0;
  color:var(--muted);
  font-size:15px;
  max-width:none;
}
.feature-stats{
  margin-top:18px;
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:12px;
}
.feature-stat{
  padding:12px 14px;
  border-radius:var(--radius-md);
  background:#f8fafc;
  border:1px solid var(--line);
}
.feature-stat strong{
  display:block;
  margin-bottom:8px;
  font-size:18px;
  line-height:1.15;
  font-weight:800;
}
.feature-stat span{
  display:block;
  color:var(--muted);
  font-size:12.5px;
  font-weight:500;
  line-height:1.6;
}
.feature-media{
  margin-top:48px;
  display:grid;
  grid-template-columns:minmax(0, 4fr) minmax(0, 6fr);
  gap:32px;
  align-items:start;
}
.feature-media:not(:has(.feature-media__visual)){
  grid-template-columns:minmax(0, 1fr);
}
.feature-media__copy{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.feature-media__copy p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}
.feature-media__meta{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:8px;
}
.feature-media__tag{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:var(--radius-pill);
  background:#eef2f7;
  border:none;
  color:#334155;
  font-size:12px;
  font-weight:800;
}
.feature-media__visual{
  min-width:0;
  aspect-ratio:16 / 9;
  border-radius:var(--radius-sm);
  overflow:hidden;
  margin-top:8px;
}
.feature-media__visual img{
  width:100%;
  height:100%;
  object-fit:contain;
  object-position:center top;
  display:block;
}
.feature-subsection{
  margin-top:24px;
  padding:28px;
  scroll-margin-top:calc(var(--headerH) + 16px);
  background:#fff;
}
.feature-subsection .sectionHead{
  align-items:end;
  margin-bottom:14px;
}
.feature-grid-2{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:14px;
}
.feature-screen{ overflow:hidden; }
.feature-screen__shot{
  min-height:220px;
  overflow:hidden;
  background:#eef2f7;
}
.feature-screen__shot img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}
.feature-subsection--full-image .feature-screen__shot{
  min-height:0;
  padding:16px;
}
.feature-subsection--full-image .feature-screen__shot img{
  height:auto;
  object-fit:contain;
}
.feature-screen__body,
.feature-panel{ padding:18px; }
.feature-screen__body h3,
.feature-panel h3{
  margin:0 0 8px;
  font-size:17px;
}
.feature-screen__body p,
.feature-panel p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}
.feature-related-card{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:18px;
  transition:border-color .2s var(--ease), transform .08s var(--ease), box-shadow .2s var(--ease);
}
.feature-related-card:hover{
  border-color:rgba(37,99,235,.24);
  box-shadow:0 8px 20px rgba(2,6,23,.06);
}
.feature-related-card:active{
  transform:translateY(1px);
}
.feature-related-card h3{
  margin:0;
  font-size:17px;
  color:var(--primary2);
}
.feature-related-card p{
  margin:0;
  color:var(--muted);
  font-size:14px;
}
.feature-related-card .more{
  margin-top:auto;
  align-self:flex-end;
  color:var(--primary2);
  text-align:right;
}
.feature-subsection--topic{
  background:
    radial-gradient(circle at top right, rgba(81,216,255,.22), transparent 34%),
    linear-gradient(135deg, #f5fffb, #eef8ff 55%, #fff5fd);
  border:1px solid rgba(81,216,255,.22);
  box-shadow:0 18px 34px rgba(53,117,255,.10);
}
.feature-topic-head{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.feature-topic-headline{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.feature-topic-kicker{
  display:inline-flex;
  align-items:center;
  gap:8px;
  width:fit-content;
  padding:6px 12px;
  border-radius:999px;
  background:linear-gradient(135deg, #00c2ff, #4f7cff);
  color:#fff;
  font-size:11px;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  box-shadow:0 10px 18px rgba(79,124,255,.22);
}
.feature-topic-kicker::before{
  content:"";
  width:9px;
  height:9px;
  border-radius:999px;
  background:#d9fff5;
  box-shadow:0 0 0 4px rgba(217,255,245,.22);
}
.feature-topic-title{
  display:block;
  margin:0;
  font-size:28px;
  line-height:1.2;
  color:#183b74;
}
.sectionHead .feature-topic-title::before{
  content:none;
  display:none;
}
.feature-topic-card{
  position:relative;
  padding:24px 20px 20px;
  border:1px solid rgba(79,124,255,.16);
  background:rgba(255,255,255,.86);
  box-shadow:0 14px 26px rgba(79,124,255,.10);
}
.feature-topic-card::before{
  content:"";
  position:absolute;
  top:-12px;
  left:34px;
  width:22px;
  height:22px;
  background:rgba(255,255,255,.92);
  border-top:1px solid rgba(79,124,255,.16);
  border-left:1px solid rgba(79,124,255,.16);
  transform:rotate(45deg);
}
.feature-topic-card h3{
  margin:0 0 8px;
  font-size:20px;
  color:#214a93;
}
.feature-topic-card p{
  margin:0;
  color:#54627a;
  font-size:14px;
}
.feature-topic-shell{
  display:grid;
  grid-template-columns:minmax(0, 1.15fr) minmax(240px, .85fr);
  grid-template-rows:auto 1fr;
  gap:18px;
  align-items:stretch;
}
.feature-topic-shell .sectionHead{
  grid-column:1;
  grid-row:1;
  margin-bottom:0;
}
.feature-topic-shell .feature-topic-card{
  grid-column:1;
  grid-row:2;
}
.feature-topic-phone{
  grid-column:2;
  grid-row:1 / span 2;
  display:flex;
  justify-content:center;
  align-items:stretch;
  min-width:0;
}
.feature-topic-phone__frame{
  position:relative;
  width:min(100%, 180px);
  height:100%;
  min-height:320px;
  padding:8px;
  border-radius:32px;
  background:linear-gradient(180deg, #1f2937, #0f172a 72%);
  box-shadow:0 24px 40px rgba(15,23,42,.22), inset 0 1px 0 rgba(255,255,255,.16);
}
.feature-topic-phone__frame::before{
  content:"";
  position:absolute;
  top:10px;
  left:50%;
  width:34%;
  height:16px;
  transform:translateX(-50%);
  border-radius:0 0 14px 14px;
  background:rgba(15,23,42,.92);
  z-index:2;
}
.feature-topic-phone__frame img{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;
  object-position:center;
  border-radius:22px;
  background:#fff;
}
.feature-pill-row{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-top:14px;
}
.feature-pill{
  padding:6px 10px;
  border-radius:var(--radius-pill);
  border:none;
  background:#d8e9e5;
  color:#476760;
  font-size:12px;
  font-weight:900;
}
.feature-cta{
  margin-top:56px;
  padding:36px 32px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:24px;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:var(--shadow);
  background:#fff;
  text-align:center;
}
.feature-cta h2{
  margin:0 0 16px;
  font-size:24px;
}

.feature-cta .section-title{
  color:var(--primary2);
  justify-content:center;
}
.feature-cta .section-title::before{ content:none; }
.feature-cta p{
  margin:0;
  color:var(--muted);
  font-size:14px;
  max-width:48ch;
  width:100%;
  text-align:center;
  margin-left:auto;
  margin-right:auto;
}
.feature-cta__actions{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}

.feature-cta__actions .btn{
  min-width:190px;
  min-height:48px;
  padding:0 20px;
}

.feature-cta__actions .btn-ghost{
  background:#fff;
  border-color:rgba(15,23,42,.08);
}

.footer-company{ font-weight:900; color:var(--text); }
.footer-copy{ margin-top:8px; }
.footer-links{ display:flex; gap:12px; flex-wrap:wrap; }

footer{
  padding:var(--space-4) 0 var(--space-5);
  border-top:1px solid var(--line);
  color:var(--muted);
  font-size:13px;
  background:rgba(255,255,255,.35);
}

.footerRow{
  display:flex;
  justify-content:space-between;
  gap:var(--space-2);
  flex-wrap:wrap;
}

@media (max-width: 980px){
  .grid2,
  .grid3,
  .feature-grid-2,
  .feature-cta{ grid-template-columns:1fr; }
  .feature-stats{ grid-template-columns:1fr; }
  .feature-cta{ display:grid; }
  .feature-media{ grid-template-columns:1fr; }
  .feature-topic-shell{ grid-template-columns:1fr; grid-template-rows:auto auto auto; }
  .feature-topic-shell .sectionHead,
  .feature-topic-shell .feature-topic-card,
  .feature-topic-phone{
    grid-column:auto;
    grid-row:auto;
  }
  .feature-topic-phone{
    justify-content:flex-start;
  }
  .feature-topic-phone__frame{
    width:min(100%, 160px);
    height:auto;
    min-height:0;
    aspect-ratio:9 / 19.5;
  }
}

@media (max-width: 900px){
  .header-cta .btn{ display:none; }
  .burger{ display:flex; }
}

@media (max-width: 640px){
  :root{
    --pad:16px;
    --headerH:66px;
  }
  .feature-eyebrow{
    margin-bottom:16px;
  }
  .feature-page-main{ padding-top:20px; }
  .feature-title{ font-size:28px; }
  .feature-hero-card{ padding:20px; }
  .feature-subsection{ padding:20px 16px; }
  .feature-cta{ padding:24px 18px; }
  .feature-media{ gap:20px; }
  .feature-media__visual{ margin-top:0; }
  .feature-screen__shot img{ height:200px; }
  .feature-subsection--full-image .feature-screen__shot img{ height:auto; }
}
