/* =========================================================
   COMMUST Shared Design System CSS
   LP / Terms / Privacy Policy 共通スタイル
   ========================================================= */

/* ---------------------------------------------------------
   Root Variables
--------------------------------------------------------- */
:root{
  --commust-navy:#073764;
  --commust-navy-dark:#082b57;
  --commust-red:#f03333;

  --commust-text:#123a63;
  --commust-text-light:#4c6a86;

  --commust-bg-1:#eef8fa;
  --commust-bg-2:#e8f3f7;
  --commust-bg-3:#f7fbfd;

  --commust-white:#ffffff;

  --commust-line:rgba(7,55,100,.10);
  --commust-border:rgba(7,55,100,.08);

  --commust-card:rgba(255,255,255,.88);
  --commust-glass:rgba(255,255,255,.72);

  --commust-shadow-sm:0 10px 24px rgba(7,55,100,.06);
  --commust-shadow-md:0 18px 45px rgba(7,55,100,.08);
  --commust-shadow-lg:0 28px 80px rgba(7,55,100,.12);

  --commust-radius-sm:14px;
  --commust-radius-md:24px;
  --commust-radius-lg:34px;

  --commust-max-width:1180px;
  --commust-transition:.25s ease;
}

/* ---------------------------------------------------------
   Base
--------------------------------------------------------- */
*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  color:var(--commust-text);
  font-family:
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height:1.9;

  background:
    radial-gradient(circle at 18% 8%, rgba(205,228,244,.9), transparent 28%),
    radial-gradient(circle at 82% 4%, rgba(255,255,255,.92), transparent 30%),
    linear-gradient(
      135deg,
      var(--commust-bg-1) 0%,
      var(--commust-bg-2) 45%,
      var(--commust-bg-3) 100%
    );

  min-height:100vh;
  position:relative;
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:-10%;
  z-index:-2;
  opacity:.32;

  background-image:
    linear-gradient(
      90deg,
      rgba(7,55,100,.10) 1px,
      transparent 1px
    ),
    linear-gradient(
      0deg,
      rgba(7,55,100,.10) 1px,
      transparent 1px
    );

  background-size:80px 80px;
  transform:rotate(-4deg) scale(1.08);

  mask-image:
    radial-gradient(
      circle at 55% 30%,
      black,
      transparent 72%
    );

  -webkit-mask-image:
    radial-gradient(
      circle at 55% 30%,
      black,
      transparent 72%
    );
}

body::after{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;

  background:
    radial-gradient(
      circle at 68% 38%,
      rgba(102,169,229,.16),
      transparent 16%
    ),
    linear-gradient(
      90deg,
      rgba(248,251,253,.86) 0%,
      rgba(248,251,253,.62) 45%,
      rgba(248,251,253,.82) 100%
    );
}

/* ---------------------------------------------------------
   Typography
--------------------------------------------------------- */
h1,h2,h3,h4,h5,h6{
  margin-top:0;
  color:var(--commust-navy);
  line-height:1.35;
}

h1{
  font-size:clamp(42px,6vw,76px);
  letter-spacing:-.055em;
}

h2{
  font-size:clamp(22px,2.4vw,32px);
  letter-spacing:-.02em;
}

p{
  margin:0 0 16px;
  color:var(--commust-text);
}

a{
  color:var(--commust-navy);
  transition:var(--commust-transition);
}

a:hover{
  opacity:.82;
}

/* ---------------------------------------------------------
   Layout Helpers
--------------------------------------------------------- */
.container{
  width:min(
    var(--commust-max-width),
    calc(100% - 48px)
  );
  margin-inline:auto;
}

.section{
  padding:100px 0;
}

.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

/* ---------------------------------------------------------
   Header
--------------------------------------------------------- */
.commust-header{
  position:sticky;
  top:18px;
  z-index:100;

  width:min(
    1120px,
    calc(100% - 32px)
  );

  height:68px;

  margin:18px auto 0;

  padding:10px 18px 10px 22px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;

  border:1px solid var(--commust-border);
  border-radius:999px;

  background:var(--commust-glass);
  backdrop-filter:blur(16px);

  box-shadow:var(--commust-shadow-md);
}



.commust-nav{
  display:flex;
  align-items:center;
  gap:22px;

  font-size:14px;
  font-weight:750;
}

.commust-nav a{
  text-decoration:none;
}

/* ---------------------------------------------------------
   Hero
--------------------------------------------------------- */
.hero{
  text-align:center;
  padding:120px 0 80px;
}

.eyebrow{
  margin:0 0 16px;

  font-size:15px;
  font-weight:850;
  letter-spacing:.14em;

  color:var(--commust-navy);
}

.eyebrow::after{
  content:"";

  display:block;

  width:48px;
  height:3px;

  margin:12px auto 0;

  border-radius:999px;

  background:var(--commust-red);
}

.hero-description{
  max-width:760px;
  margin:28px auto 0;

  font-size:17px;
  font-weight:650;

  color:var(--commust-text);
}

/* ---------------------------------------------------------
   Card
--------------------------------------------------------- */
.card{
  background:var(--commust-card);

  border:1px solid var(--commust-border);
  border-radius:var(--commust-radius-lg);

  backdrop-filter:blur(12px);

  box-shadow:var(--commust-shadow-lg);

  padding:clamp(28px,5vw,64px);
}

.card-sm{
  border-radius:var(--commust-radius-md);
  box-shadow:var(--commust-shadow-sm);
}

/* ---------------------------------------------------------
   Policy / Terms
--------------------------------------------------------- */
.policy-layout{
  display:grid;
  grid-template-columns:260px 1fr;
  gap:28px;
  align-items:start;
}

.sidebar-toc{
  position:sticky;
  top:108px;

  max-height:calc(100vh - 130px);
  overflow:auto;

  padding:24px;

  border-radius:24px;

  background:rgba(255,255,255,.62);

  border:1px solid var(--commust-border);

  backdrop-filter:blur(14px);

  box-shadow:0 18px 48px rgba(7,55,100,.06);
}

.sidebar-toc h2{
  margin-bottom:14px;
  font-size:16px;
  letter-spacing:.08em;
}

.sidebar-toc a{
  display:block;

  padding:8px 10px;

  border-radius:12px;

  color:rgba(7,55,100,.78);

  text-decoration:none;

  font-size:13px;
  line-height:1.45;
  font-weight:700;
}

.sidebar-toc a:hover{
  background:rgba(7,55,100,.06);
  color:var(--commust-navy);
}

.policy-section{
  scroll-margin-top:120px;

  padding-bottom:44px;
  margin-bottom:44px;

  border-bottom:1px solid var(--commust-line);
}

.policy-section:last-child{
  border-bottom:0;
  margin-bottom:0;
  padding-bottom:0;
}

/* ---------------------------------------------------------
   Buttons
--------------------------------------------------------- */
.button{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-height:48px;
  padding:0 22px;

  border-radius:999px;
  border:none;

  text-decoration:none;

  font-weight:800;
  letter-spacing:.02em;

  transition:
    transform var(--commust-transition),
    opacity var(--commust-transition),
    box-shadow var(--commust-transition);

  cursor:pointer;
}

.button:hover{
  transform:translateY(-2px);
}

.button-primary{
  color:#fff;
  background:#e63333;

  box-shadow:
    0 14px 34px rgba(7,55,100,.18);
}

.button-secondary{
  color:var(--commust-navy);

  background:rgba(255,255,255,.82);

  border:1px solid var(--commust-border);
}

/* ---------------------------------------------------------
   Footer
--------------------------------------------------------- */
.commust-footer{
  padding:52px 6vw;

  display:flex;
  justify-content:space-between;
  gap:24px;

  color:#fff;

  background:var(--commust-navy-dark);
}

.commust-footer div{
  display:grid;
  gap:4px;
}

.commust-footer strong{
  font-size:22px;
  letter-spacing:.08em;
}

.commust-footer span,
.commust-footer small{
  color:rgba(255,255,255,.68);
}

/* ---------------------------------------------------------
   Utilities
--------------------------------------------------------- */
.text-center{
  text-align:center;
}

.text-left{
  text-align:left;
}

.mt-0{
  margin-top:0;
}

.mb-0{
  margin-bottom:0;
}

.hidden{
  display:none !important;
}
.hero .hero-inner .hero-lead {
    text-align: left;
}
.section-heading.split div h2 {
    text-align: left;
}
.section-grid .visual-panel img {
}




/* ---------------------------------------------------------
   Responsive
--------------------------------------------------------- */
@media (max-width:900px){

  .container{
    width:calc(100% - 32px);
  }

  .grid-2,
  .grid-3,
  .policy-layout{
    grid-template-columns:1fr;
  }

  .sidebar-toc{
    position:relative;
    top:auto;
    max-height:none;
  }

  .commust-header{
    top:12px;
    width:calc(100% - 24px);
  }

  .commust-nav a:not(:first-child){
    display:none;
  }

  .section{
    padding:72px 0;
  }
}

@media (max-width:560px){

  .container{
    width:calc(100% - 24px);
  }

  .commust-header{
    height:60px;
  }

  .commust-brand{
    font-size:17px;
  }

  h1{
    font-size:40px;
  }

  .card{
    padding:28px 22px;
    border-radius:26px;
  }

  .commust-footer{
    display:grid;
  }
}



/* =========================================================
   COMMUST Start Guide Page Additions
   Add this below the shared CSS, or replace the shared CSS
   with this updated file.
   ========================================================= */

.start-page {
  width: min(var(--commust-max-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 0 110px;
}

.start-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 0 0 44px 44px;
  margin-top: -86px;
  padding: 160px 24px 90px;
}

.start-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      90deg,
      rgba(248, 251, 253, 0.88) 0%,
      rgba(248, 251, 253, 0.58) 48%,
      rgba(248, 251, 253, 0.86) 100%
    ),
    url("hero-map-bg.png");
  background-size: cover;
  background-position: center;
  opacity: 1;
}

.start-hero-inner {
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  text-align: center;
}

.start-hero-logo-slot {
  width: 112px;
  height: 112px;
  margin: 0 auto 28px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(7, 55, 100, 0.08);
  box-shadow: var(--commust-shadow-sm);
  color: rgba(7, 55, 100, 0.42);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.start-hero-logo-slot img {
  width: 92px;
  height: 92px;
  object-fit: contain;
}

.start-hero h1 {
  margin: 0;
  color: var(--commust-navy);
  font-size: clamp(48px, 7vw, 92px);
  line-height: 1.15;
  letter-spacing: -0.06em;
}

.start-hero-lead {
  margin: 30px auto 0;
  max-width: 780px;
  color: var(--commust-navy);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 800;
  line-height: 1.85;
}

.community-pill {
  margin: 42px auto 0;
  width: fit-content;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 14px 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 55, 100, 0.08);
  box-shadow: var(--commust-shadow-md);
  backdrop-filter: blur(12px);
}

.community-pill span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 0 18px;
  color: var(--commust-navy);
  font-size: 15px;
  font-weight: 800;
  border-right: 1px solid rgba(7, 55, 100, 0.14);
}

.community-pill span:last-child {
  border-right: 0;
}

.float-note {
  position: absolute;
  z-index: 1;
  padding: 16px 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(7, 55, 100, 0.08);
  box-shadow: var(--commust-shadow-sm);
  color: var(--commust-navy);
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.float-note.left {
  left: 7vw;
  top: 230px;
}

.float-note.right {
  right: 8vw;
  top: 290px;
}

.float-note.bottom {
  right: 9vw;
  bottom: 94px;
  color: #c83f4a;
}

.access-section {
  padding: 92px 0 36px;
}

.start-section-heading {
  text-align: center;
  margin: 0 auto 46px;
  max-width: 900px;
}

.start-section-heading h2 {
  margin: 0;
  color: var(--commust-navy);
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.25;
  letter-spacing: -0.05em;
}

.start-section-heading p {
  margin: 22px auto 0;
  max-width: 760px;
  color: var(--commust-navy);
  font-size: 18px;
  font-weight: 750;
}

.access-panel {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(7, 55, 100, 0.08);
  box-shadow: var(--commust-shadow-lg);
  backdrop-filter: blur(14px);
}

.access-panel-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.access-panel-head h3 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.6vw, 34px);
  color: var(--commust-navy);
  letter-spacing: -0.03em;
}

.access-panel-head p {
  margin: 0;
  color: var(--commust-navy);
  font-weight: 750;
}

.access-note {
  color: rgba(7, 55, 100, 0.72);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.access-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.access-card {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(7, 55, 100, 0.10);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--commust-shadow-sm);
}

.access-card.active {
  box-shadow: 0 24px 70px rgba(7, 55, 100, 0.16);
}

.access-card-top {
  min-height: 170px;
  padding: 28px;
  display: grid;
  grid-template-columns: 96px 1fr;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, #082b57, #123f7a);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.access-card-top::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -52px;
  width: 210px;
  height: 210px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.access-card.coming .access-card-top {
  background: linear-gradient(135deg, #f2f6fa, #e9f1f7);
  color: var(--commust-navy);
}

.logo-slot {
  position: relative;
  z-index: 1;
  width: 96px;
  height: 96px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  color: rgba(7, 55, 100, 0.34);
  font-size: 12px;
  font-weight: 850;
}
img{
	height:80px;
}

.access-card-title {
  position: relative;
  z-index: 1;
}

.access-card-title strong {
  display: block;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.4;
  letter-spacing: 0.02em;
}

.access-card-title span {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 800;
  opacity: 0.72;
}

.access-card-body {
  padding: 26px 28px 30px;
}

.access-card-body p {
  margin: 0;
  color: var(--commust-navy);
  font-weight: 700;
  line-height: 1.9;
}

.access-button {
  width: 100%;
  margin-top: 26px;
}

.disabled-button {
  width: 100%;
  margin-top: 26px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: rgba(7, 55, 100, 0.46);
  background: rgba(7, 55, 100, 0.08);
  font-weight: 850;
}

.access-help {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: center;
  padding: 26px 32px;
  border-radius: 22px;
  background: rgba(236, 246, 255, 0.72);
  border: 1px solid rgba(7, 55, 100, 0.06);
}

.access-help-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #4f8dea;
  font-size: 26px;
  font-weight: 900;
}

.access-help h3 {
  margin: 0 0 6px;
  color: var(--commust-navy);
  font-size: 22px;
}

.access-help p {
  margin: 0;
  color: var(--commust-navy);
  font-weight: 700;
}

.login-section {
  padding: 42px 0 110px;
}

.login-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  padding: clamp(30px, 4vw, 52px);
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(244,249,255,.88));
  border: 1px solid rgba(7, 55, 100, 0.08);
  box-shadow: var(--commust-shadow-lg);
  backdrop-filter: blur(14px);
}

.login-card h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.25;
  letter-spacing: -0.05em;
}

.login-card p {
  margin: 0;
  font-size: 17px;
  font-weight: 750;
  color: var(--commust-navy);
}

.policy-links {
  margin-top: 22px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.policy-links a {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(7,55,100,.06);
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.login-actions {
  display: grid;
  gap: 12px;
  min-width: 240px;
}

@media (max-width: 980px) {
  .start-hero {
    min-height: 560px;
    margin-top: -78px;
    padding-top: 140px;
  }

  .float-note {
    display: none;
  }

  .access-panel-head {
    display: grid;
    gap: 12px;
  }

  .access-note {
    white-space: normal;
  }

  .access-cards {
    grid-template-columns: 1fr;
  }

  .login-card {
    grid-template-columns: 1fr;
  }

  .login-actions {
    min-width: 0;
  }
}

@media (max-width: 560px) {
  .start-page {
    width: calc(100% - 24px);
    padding-bottom: 80px;
  }

  .start-hero {
    min-height: 540px;
    border-radius: 0 0 28px 28px;
    padding: 132px 18px 70px;
  }

  .start-hero-logo-slot {
    width: 92px;
    height: 92px;
  }

  .start-hero h1 {
    font-size: 44px;
  }

  .start-hero-lead {
    font-size: 19px;
  }

  .community-pill {
    width: 100%;
    border-radius: 24px;
    padding: 14px;
  }

  .community-pill span {
    width: 50%;
    justify-content: center;
    border-right: 0;
    padding: 6px 8px;
  }

  .access-section {
    padding-top: 68px;
  }

  .access-panel {
    border-radius: 26px;
    padding: 22px;
  }

  .access-card-top {
    grid-template-columns: 78px 1fr;
    min-height: 145px;
    padding: 22px;
  }

  .logo-slot {
    width: 78px;
    height: 78px;
  }

  .access-help {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .login-card {
    border-radius: 26px;
    padding: 28px 22px;
  }
}


/* ===== LP legacy styles consolidated ===== */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    margin:0;
    color:#082b57;
    background:#f8fbfd;
    font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    line-height:1.8}a{color:inherit}.site-header{position:fixed;z-index:10;top:18px;left:50%;transform:translateX(-50%);width:min(1120px,calc(100% - 32px));height:70px;padding:10px 16px;display:flex;align-items:center;justify-content:space-between;border:1px solid rgba(8,43,87,.08);border-radius:999px;background:rgba(255,255,255,.72);backdrop-filter:blur(16px);box-shadow:0 18px 45px rgba(8,43,87,.08)}.brand img{width:50px;height:50px;object-fit:contain}.header-nav{display:flex;gap:24px;align-items:center;font-weight:700;font-size:14px}.header-nav a{text-decoration:none}.nav-login{padding:10px 18px;border-radius:999px;background:#082b57;color:#fff}.hero{position:relative;min-height:100svh;display:flex;align-items:center;overflow:hidden;padding:130px 6vw 70px}.hero-bg{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;opacity:.9}.hero:after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(248,251,253,.92) 0%,rgba(248,251,253,.82) 38%,rgba(248,251,253,.26) 100%)}.hero-inner{position:relative;z-index:1;width:min(1180px,100%);margin:auto}.hero-logo{position:absolute;right:0;top:-40px;width:170px;height:170px;object-fit:contain;opacity:.95}.eyebrow,.section-kicker{margin:0 0 16px;text-align: center; font-weight:800;letter-spacing:.12em;color:#082b57}.section-kicker:after{content:"";display:block;width:44px;height:3px;margin-top:10px;background:#f03636;border-radius:999px}.center .section-kicker:after{margin-left:auto;margin-right:auto}.hero h1{
    margin: 0;
    font-size: clamp(72px,10vw,154px);
    line-height: .96;
    letter-spacing: -.065em;
    font-weight: 900;
    color: #082b57;
    text-align: left;
}.hero h1 span{color:#e63333}.hero-lead{margin:34px 0 0;font-size:clamp(20px,2.3vw,30px);font-weight:800;color:#082b57}.hero-actions{margin-top:52px;display:flex;gap:18px;flex-wrap:wrap}.btn{display:inline-flex;align-items:center;justify-content:center;min-height:58px;padding:0 30px;border-radius:999px;text-decoration:none;font-weight:850;letter-spacing:.04em;transition:.2s}.btn:hover{transform:translateY(-2px)}.btn-primary{background:#e63333;color:#fff;box-shadow:0 16px 36px rgba(230,51,51,.22)}.btn-secondary{border:2px solid #082b57;color:#082b57;background:rgba(255,255,255,.58)}.section{padding:110px 6vw}.section-grid{width:min(1180px,100%);margin:auto;display:grid;grid-template-columns:.92fr 1.08fr;gap:60px;align-items:center}.section h2,.final-cta h2{margin:0;font-size:clamp(32px,4.5vw,64px);line-height:1.28;letter-spacing:-.04em;color:#082b57}.body-copy{margin-top:34px;font-size:18px;font-weight:650;color:#113a67}.body-copy p{margin:0 0 22px}.visual-panel img{width:100%;height: 100%; border-radius:30px;display:block}.section-heading{width:min(1180px,100%);margin:0 auto 58px}.section-heading.split{display:grid;grid-template-columns:1.2fr .8fr;gap:56px;align-items:end}.section-heading>p,.section-heading.split>p{font-size:19px;font-weight:750;color:#113a67}.center{text-align:center}.center p{max-width:820px;margin-left:auto;margin-right:auto}.feature-cards,.work-cards{width:min(1180px,100%);margin:auto;display:grid;grid-template-columns:repeat(3,1fr);gap:26px}.feature-card,.work-card,.relationship-grid article{background:rgba(255,255,255,.86);border:1px solid rgba(8,43,87,.08);border-radius:28px;box-shadow:0 22px 60px rgba(8,43,87,.08);overflow:hidden}.feature-card{padding:0 28px 32px}.feature-card img{height: auto; width:calc(100% + 56px);margin:0 -28px 20px;display:block}.num{display:block;font-size:42px;line-height:1;font-weight:900;color:#b7cff1}.feature-card h3,.work-card h3{font-size:28px;line-height:1.35;margin:12px 0 18px;color:#082b57}.feature-card p,.work-card p,.relationship-grid span{font-weight:650;color:#173d68}.works{background:linear-gradient(180deg,#fff,#f3f8fc)}.work-card{padding:32px}.phase{display:inline-flex;align-items:center;gap:16px;font-weight:850;border-radius:999px;padding:8px 18px;background:#edf5ff;color:#407fe0}.phase span{font-size:28px}.work-card.red .phase{background:#fff0f0;color:#e63333}.work-card.green .phase{background:#edf8f4;color:#249b7d}.ui-slot{height: auto;width:100%;margin-top:24px;border-radius:22px;display:block}.relationship-grid{width:min(1180px,100%);margin:0 auto 34px;display:grid;grid-template-columns:repeat(2,1fr);gap:18px}.relationship-grid article{padding:28px 32px;display:grid;gap:12px}.relationship-grid strong{font-size:24px;color:#082b57}.connected-visual{display:block;width:min(1180px,100%);margin:auto;border-radius:30px}.final-cta{margin:50px auto 100px;width:min(1180px,calc(100% - 12vw));padding:54px 58px;border-radius:34px;background:linear-gradient(135deg,#f4f9ff,#fff);box-shadow:0 22px 60px rgba(8,43,87,.09);display:flex;align-items:center;justify-content:space-between;gap:32px}.site-footer{padding:72px 6vw 32px;background:#082b57;color:#fff}.footer-main{width:min(1180px,100%);margin:auto;display:flex;justify-content:space-between;gap:48px}.footer-brand img{width:116px;height:116px;object-fit:contain;background:#fff;border-radius:999px}.footer-brand p{font-weight:750;color:rgba(255,255,255,.82)}.footer-links{display:grid;gap:12px;align-content:start;text-align:right}.footer-links a{color:rgba(255,255,255,.86);text-decoration:none;font-weight:700;text-align:right;}.footer-bottom{width:min(1180px,100%);margin:56px auto 0;padding-top:24px;border-top:1px solid rgba(255,255,255,.18);display:flex;justify-content:space-between;gap:24px;color:rgba(255,255,255,.58)}.site-header .brand img {
}
@media(max-width:900px){.header-nav a:not(.nav-login){display:none}.site-header{top:12px}.hero{padding:120px 24px 64px;align-items:flex-start}.hero:after{background:rgba(248,251,253,.78)}.hero-logo{position:relative;display:block;right:auto;top:auto;width:160px;height:160px;margin:24px auto 54px}.eyebrow{display:none}.hero h1{font-size:clamp(74px,19vw,112px);line-height:1.04}.hero-lead{font-size:22px}.hero-actions{display:grid;gap:16px}.btn{width:100%;min-height:62px}.section{padding:84px 24px}.section-grid,.section-heading.split,.feature-cards,.work-cards,.relationship-grid{grid-template-columns:1fr}.visual-panel{margin-top:20px}.section-heading{margin-bottom:36px}.feature-card,.work-card{border-radius:24px}.final-cta{width:calc(100% - 48px);padding:38px 26px;display:grid}.footer-main,.footer-bottom{display:grid;text-align:left}.footer-links{text-align:left}.connected-visual{display:none}.site-footer{padding:56px 24px 28px}}@media(max-width:520px){.section h2,.final-cta h2{font-size:32px}.feature-card h3,.work-card h3{font-size:24px}.body-copy{font-size:16px}.relationship-grid strong{font-size:20px}.hero h1{letter-spacing:-.075em}}

body {
  margin: 0;
  color: #073764;
  background:
    radial-gradient(circle at 20% 8%, rgba(194, 221, 245, 0.28), transparent 30%),
    linear-gradient(180deg, #fbfdff 0%, #f5f9fd 100%);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.8;
}

.communities-section {
  padding: 88px 6vw 104px;
}

.section-heading {
  width: min(1120px, 100%);
  margin: 0 auto 48px;
  text-align: center;
}

.section-kicker {
  margin: 0 0 18px;
  font-size: 17px;
  font-weight: 850;
  letter-spacing: 0.13em;
  color: #073764;
}

.section-kicker::after {
  content: "";
  display: block;
  width: 46px;
  height: 3px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: #f03333;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.28;
  letter-spacing: -0.045em;
  color: #073764;
}

.section-heading p:last-child {
  margin: 24px auto 0;
  max-width: 820px;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 750;
  letter-spacing: 0.04em;
  color: #073764;
}

.community-cards {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.community-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: center;
  gap: 24px;
  min-height: 220px;
  padding: 28px 30px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(7, 55, 100, 0.06);
  box-shadow: 0 24px 64px rgba(7, 55, 100, 0.09);
}

.community-image {
  width: 220px;
  aspect-ratio: 2 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
}

.community-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.community-text h3 {
  margin: 0;
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.45;
  letter-spacing: -0.025em;
  color: #073764;
}

.accent-line {
  display: block;
  width: 40px;
  height: 3px;
  margin: 14px 0 18px;
  border-radius: 999px;
}

.accent-line.blue { background: #4f8dea; }
.accent-line.green { background: #43b58e; }
.accent-line.yellow { background: #e2a92c; }
.accent-line.purple { background: #7a63d7; }

.community-text p {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.9;
  color: #173d68;
}

@media (max-width: 980px) {
  .community-cards {
    grid-template-columns: 1fr;
  }

  .community-card {
    grid-template-columns: 220px 1fr;
  }
}

@media (max-width: 640px) {
  .communities-section {
    padding: 68px 24px 78px;
  }

  .section-heading {
    text-align: left;
  }

  .section-kicker::after {
    margin-left: 0;
    margin-right: 0;
  }

  .section-heading h2 {
    font-size: 36px;
  }

  .section-heading p:last-child {
    font-size: 16px;
  }

  .community-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
  }

  .community-image {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
  }
}



/* =========================================================
   COMMUST unified overrides
   ========================================================= */
:root{
  --commust-navy:#073764;
  --commust-navy-dark:#082b57;
  --commust-red:#e63333;
  --commust-red-soft:#f03333;
  --commust-text:#123a63;
  --commust-line:rgba(7,55,100,.10);
  --commust-border:rgba(7,55,100,.08);
  --commust-card:rgba(255,255,255,.88);
  --commust-glass:rgba(255,255,255,.72);
  --commust-shadow-sm:0 10px 24px rgba(7,55,100,.06);
  --commust-shadow-md:0 18px 45px rgba(7,55,100,.08);
  --commust-shadow-lg:0 28px 80px rgba(7,55,100,.12);
  --commust-max-width:1180px;
}

/* shared header */
.commust-header{
  position:sticky;
  top:18px;
  z-index:100;
  width:min(1120px,calc(100% - 32px));
  height:70px;
  margin:18px auto 0;
  padding:10px 16px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  border:1px solid rgba(7,55,100,.08);
  border-radius:999px;
  background:rgba(255,255,255,.72);
  backdrop-filter:blur(16px);
  box-shadow:0 18px 45px rgba(7,55,100,.08);
}
.page-lp .commust-header{
  position:fixed;
  left:50%;
  transform:translateX(-50%);
  margin:0;
}
.commust-brand{display:inline-flex;align-items:center;color:#073764;text-decoration:none;font-weight:900;letter-spacing:.07em;font-size:20px}
.commust-brand img{width:50px;height:50px;object-fit:contain;display:block}
.commust-nav{display:flex;gap:24px;align-items:center;font-weight:750;font-size:14px}
.commust-nav a{text-decoration:none;color:#073764}
.commust-nav-cta{padding:10px 18px;border-radius:999px;background:#082b57;color:#fff!important}

/* legal pages unified */
body.page-legal,body.page-start{
  color:#123a63;
  background:radial-gradient(circle at 18% 8%,rgba(205,228,244,.9),transparent 28%),radial-gradient(circle at 82% 4%,rgba(255,255,255,.92),transparent 30%),linear-gradient(135deg,#eef8fa 0%,#e8f3f7 45%,#f7fbfd 100%);
  min-height:100vh;position:relative;overflow-x:hidden;
}
body.page-legal:before,body.page-start:before{content:"";position:fixed;inset:-10%;z-index:-2;opacity:.32;background-image:linear-gradient(90deg,rgba(7,55,100,.10) 1px,transparent 1px),linear-gradient(0deg,rgba(7,55,100,.10) 1px,transparent 1px);background-size:80px 80px;transform:rotate(-4deg) scale(1.08);mask-image:radial-gradient(circle at 55% 30%,black,transparent 72%);-webkit-mask-image:radial-gradient(circle at 55% 30%,black,transparent 72%)}
body.page-legal:after,body.page-start:after{content:"";position:fixed;inset:0;z-index:-1;background:radial-gradient(circle at 68% 38%,rgba(102,169,229,.16),transparent 16%),linear-gradient(90deg,rgba(248,251,253,.86) 0%,rgba(248,251,253,.62) 45%,rgba(248,251,253,.82) 100%)}
.legal-page{width:min(1180px,calc(100% - 48px));margin:0 auto;padding:88px 0 120px}
.legal-hero{max-width:900px;margin:0 auto 48px;text-align:center}
.legal-hero h1{margin:0;color:#073764;font-size:clamp(42px,6vw,70px);line-height:1.18;letter-spacing:-.055em}
.legal-layout{display:grid;grid-template-columns:260px 1fr;gap:28px;align-items:start}
.sidebar-toc{position:sticky;top:108px;max-height:calc(100vh - 130px);overflow:auto;padding:24px;border-radius:24px;background:rgba(255,255,255,.62);border:1px solid rgba(7,55,100,.08);backdrop-filter:blur(14px);box-shadow:0 18px 48px rgba(7,55,100,.06)}
.sidebar-toc h2{margin:0 0 14px;color:#073764;font-size:16px;letter-spacing:.08em}
.sidebar-toc a{display:block;padding:8px 10px;border-radius:12px;color:rgba(7,55,100,.78);text-decoration:none;font-size:13px;line-height:1.45;font-weight:700}
.sidebar-toc a:hover{background:rgba(7,55,100,.06);color:#073764}
.legal-card{padding:clamp(28px,5vw,64px);border-radius:34px;background:rgba(255,255,255,.88);border:1px solid rgba(7,55,100,.08);box-shadow:0 28px 80px rgba(7,55,100,.12);backdrop-filter:blur(12px)}
.legal-section{scroll-margin-top:120px;padding:0 0 44px;margin:0 0 44px;border-bottom:1px solid rgba(7,55,100,.10)}
.legal-section:last-child{border-bottom:0;margin-bottom:0;padding-bottom:0}
.legal-section h2{margin:0 0 22px;color:#073764;font-size:clamp(22px,2.4vw,32px);line-height:1.45;letter-spacing:-.02em}
.legal-section p{margin:0 0 12px;color:#123a63;font-size:15.5px;font-weight:500}

/* common footer unified */
.commust-footer{padding:64px 6vw 36px;display:grid;grid-template-columns:1.2fr 1fr auto;align-items:start;gap:40px;color:#fff;background:#082b57}
.commust-footer-brand{display:grid;gap:6px}.commust-footer strong{font-size:22px;letter-spacing:.08em}.commust-footer span,.commust-footer small{color:rgba(255,255,255,.68)}
.commust-footer-links{display:flex;flex-wrap:wrap;gap:12px 20px;text-align:right;}.commust-footer-links a{color:rgba(255,255,255,.86);text-decoration:none;font-weight:750}

/* keep red CTA consistent */
.button-primary,.btn-primary{background:#e63333;color:#fff;box-shadow:0 16px 36px rgba(230,51,51,.22)}

@media(max-width:900px){
  .commust-header{top:12px;width:calc(100% - 24px)}
  .page-lp .commust-header{top:12px}
  .commust-nav a:not(.commust-nav-cta):not(:first-child){display:none}
  .legal-layout{grid-template-columns:1fr}.sidebar-toc{position:relative;top:auto;max-height:none}.toc-links{grid-template-columns:repeat(2,minmax(0,1fr))}
  .commust-footer{grid-template-columns:1fr}
}
@media(max-width:560px){
  .commust-header{height:60px}.commust-brand img{width:44px;height:44px}.commust-nav{gap:12px}
  .legal-page{width:calc(100% - 24px)}.legal-hero{text-align:left}.legal-hero .eyebrow:after{margin-left:0;margin-right:0}.legal-hero h1{font-size:40px}.dates{justify-content:flex-start}.toc-links{grid-template-columns:1fr}.legal-card{padding:28px 22px;border-radius:26px}.legal-section p{font-size:14.5px}
}
