:root{
  --page-bg: #edf1f7;
  --panel: #ffffff;
  --panel-soft: #f6f8fc;
  --text: #17325f;
  --muted: #5f7397;
  --line: #d5dced;
  --brand: #1d4f97;
  --brand-2: #2f78d2;
  --accent: #ffd54f;
  --accent-deep: #f0be2f;
  --shadow-lg: 0 24px 64px rgba(23, 50, 95, 0.16);
  --shadow-md: 0 10px 30px rgba(23, 50, 95, 0.12);
  --shadow-sm: 0 6px 18px rgba(23, 50, 95, 0.1);
  --radius-lg: 24px;
  --radius-md: 16px;
}

*{ box-sizing:border-box; }
html, body{ height:100%; }

body{
  margin:0;
  color:var(--text);
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(1100px 380px at 50% -120px, rgba(54,124,214,0.26), transparent 72%),
    linear-gradient(180deg, #f2f5fb, var(--page-bg) 460px, #eef2f8 100%);
}

a{ color:inherit; text-decoration:none; }

.container{
  width:min(1180px, calc(100% - 48px));
  margin:0 auto;
}

.site-header{
  position:absolute;
  inset:0 0 auto 0;
  z-index:10;
}

.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:22px 0;
}

.header-left{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.back-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:40px;
  padding:0 16px;
  border-radius:999px;
  background:rgba(255,255,255,0.94);
  border:1px solid rgba(255,255,255,0.95);
  color:#12335f;
  font-weight:700;
  letter-spacing:0.2px;
  box-shadow:0 6px 16px rgba(7, 23, 46, 0.18);
  white-space:nowrap;
}

.back-btn:hover{
  background:#ffffff;
}

.logo{
  width:44px;
  height:44px;
  border-radius:12px;
  background:#fff;
  box-shadow:0 8px 18px rgba(16,37,71,0.16);
}

.brand-title{
  font-size:clamp(16px, 1.4vw, 22px);
  font-weight:800;
  letter-spacing:0.25px;
  text-transform:uppercase;
  color:#12335f;
}

.brand-sub{
  margin-top:2px;
  font-size:13px;
  color:rgba(18,51,95,0.72);
}

.lang{
  display:flex;
  gap:8px;
}

.lang-btn{
  cursor:pointer;
  border:1px solid rgba(255,255,255,0.95);
  background:rgba(255,255,255,0.94);
  color:#12335f;
  border-radius:999px;
  padding:7px 12px;
  font-weight:700;
  letter-spacing:0.2px;
  backdrop-filter: blur(4px);
  box-shadow: 0 6px 16px rgba(7, 23, 46, 0.22);
}

.lang-btn:hover{
  background:#ffffff;
}

.lang-btn.active{
  background:var(--accent);
  color:#142f56;
  border-color:#f7dd7e;
}

.hero{
  position:relative;
  min-height:620px;
  padding-top:102px;
}

.hero-shell{
  position:relative;
  min-height:600px;
  border-radius:30px;
  overflow:hidden;
  box-shadow:var(--shadow-lg);
  background: linear-gradient(115deg, rgba(20,54,101,0.88) 18%, rgba(45,112,198,0.46) 58%, rgba(82,149,227,0.24) 100%);
}

.hero-backdrop{
  position:absolute;
  inset:0;
  background:
    linear-gradient(100deg, rgba(15,41,80,0.82) 14%, rgba(30,86,157,0.45) 52%, rgba(30,86,157,0.12) 100%),
    url("assets/main_banner.png") center center / cover no-repeat;
}

.hero-grid{
  position:relative;
  z-index:1;
  width:100%;
  display:grid;
  grid-template-columns: minmax(0, 1fr) minmax(520px, 560px);
  align-items:end;
  gap:28px;
  padding:74px 44px 56px;
}

.hero-title{
  margin:0;
  color:#fff;
  font-size:clamp(36px, 4.8vw, 68px);
  line-height:1.02;
  letter-spacing:-1.2px;
  max-width:11ch;
  white-space:normal;
  overflow-wrap:normal;
  word-break:normal;
  hyphens:none;
  text-wrap:balance;
}

.hero-lead{
  margin:20px 0 0;
  max-width:56ch;
  color:rgba(255,255,255,0.92);
  font-size:24px;
  line-height:1.35;
}

.callout{
  margin-top:20px;
  width:fit-content;
  max-width:100%;
  background:rgba(255,255,255,0.16);
  border:1px solid rgba(255,255,255,0.42);
  border-radius:14px;
  padding:12px 16px;
}

.callout-title{
  font-size:13px;
  font-weight:700;
  color:rgba(255,255,255,0.86);
  margin-bottom:4px;
}

.callout-text{
  color:#fff;
  font-weight:700;
}

.hero-right{
  display:flex;
  justify-content:flex-end;
  align-items:flex-end;
}

.hero-card{
  width:100%;
  max-width:560px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,0.72);
  background:rgba(255,255,255,0.94);
  backdrop-filter: blur(8px);
  padding:17px 18px;
  box-shadow:0 18px 42px rgba(17,46,89,0.30);
}

.hero-card-title{
  margin:0 0 10px;
  color:#193a6d;
  font-weight:700;
  font-size:clamp(20px, 2vw, 30px);
  line-height:1.12;
  letter-spacing:-0.35px;
}

.hero-bullets{
  margin:0;
  padding-left:30px;
  color:#4f6791;
  line-height:1.42;
  font-size:14px;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-weight:400;
  list-style:disc outside;
}

.hero-bullets li{
  margin-bottom:8px;
}

.hero-bullets li::marker{
  color:#5b769c;
  font-size:0.95em;
}

.hero-note{
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid rgba(0,0,0,0.16);
  color:#111;
  font-weight:700;
}

@media (min-width: 1101px){
  .hero-grid{
    display:block;
    min-height:510px;
    padding:74px 44px 40px;
  }

  .hero-left{
    max-width:56%;
  }

  .hero-right{
    position:absolute;
    right:44px;
    bottom:40px;
    width:min(560px, 42%);
    display:block;
  }

  .hero-card{
    max-width:none;
  }
}

.list{
  margin-top:-26px;
  padding:0 0 22px;
}

.list-shell{
  background:var(--panel-soft);
  border:1px solid #d8dfef;
  border-radius:30px;
  box-shadow:var(--shadow-lg);
  padding:40px 38px 34px;
}

.section-title{
  margin:0;
  color:#1b3e74;
  font-size:56px;
  letter-spacing:-0.9px;
}

.section-sub{
  margin:10px 0 24px;
  color:var(--muted);
  font-size:18px;
}

.units{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap:24px;
}

.unit{
  border:1px solid #dbe3f1;
  background:var(--panel);
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  padding:20px 20px 18px;
  display:flex;
  flex-direction:column;
  gap:14px;
}

.unit-top{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.unit-title{
  margin:0;
  font-size:clamp(20px, 2vw, 30px);
  line-height:1.12;
  letter-spacing:-0.35px;
  color:#193a6d;
  white-space:nowrap;
  overflow-wrap:normal;
  text-wrap:normal;
}

.badges{
  margin:6px 0 0;
  padding-left:30px;
  line-height:1.42;
}

.badge{
  display:list-item;
  border:none;
  border-radius:0;
  background:transparent;
  color:#4f6791;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size:14px;
  font-weight:400;
  padding:0;
  margin:0 0 8px 0;
}

.badge::marker{
  color:#5b769c;
  font-size:0.95em;
}

.badge-key{
  color:#4f6791;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size:14px;
  font-weight:400;
}

.badge-detail{
  color:#4f6791;
  font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size:14px;
  font-weight:400;
}

.unit .unit-images{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:2px;
}

.unit .unit-images .unit-thumb{
  width:152px;
  height:98px;
  position:relative;
  border-radius:12px;
  border:1px solid #d3deef;
  background:#f1f5fc;
  box-shadow:none;
}

.unit .unit-images .unit-thumb:hover{
  filter:brightness(1.03);
}

.unit .unit-images .unit-thumb .ph{
  color:#5e7598;
}

.unit .unit-images .unit-thumb .unit-thumb-more{
  position:absolute;
  right:8px;
  bottom:8px;
  min-width:34px;
  text-align:center;
  padding:4px 8px;
  border-radius:999px;
  background:rgba(16, 34, 63, 0.78);
  color:#fff;
  font-size:13px;
  font-weight:700;
  line-height:1;
  box-shadow:0 4px 10px rgba(0,0,0,0.25);
}

.unit-cta{
  margin-top:auto;
  padding-top:12px;
  border-top:1px solid #dce4f2;
}

.tenants{
  padding:0 0 30px;
}

.tenants-shell{
  background:var(--panel-soft);
  border:1px solid #d8dfef;
  border-radius:30px;
  box-shadow:var(--shadow-lg);
  padding:28px 38px 28px;
}

.tenants-title{
  margin:0 0 16px;
  color:#1b3e74;
  font-size:clamp(24px, 2.1vw, 34px);
  line-height:1.1;
  letter-spacing:-0.4px;
}

.tenants-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:24px;
}

.tenant-card{
  border:1px solid #dbe3f1;
  background:var(--panel);
  border-radius:18px;
  box-shadow:var(--shadow-sm);
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:148px;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.tenant-card:hover{
  transform: translateY(-2px);
  box-shadow:var(--shadow-md);
}

.tenant-card img{
  display:block;
  max-width:100%;
  max-height:84px;
  object-fit:contain;
}

.tenant-card-text{
  background:
    radial-gradient(420px 120px at 12% 0%, rgba(47,120,210,0.11), transparent 62%),
    var(--panel);
}

.tenant-card-name{
  display:block;
  width:100%;
  text-align:center;
  color:#1d4f97;
  font-weight:700;
  font-size:clamp(20px, 2vw, 28px);
  line-height:1.2;
  letter-spacing:-0.2px;
}

.tenant-card-muted{
  cursor:default;
  box-shadow:var(--shadow-sm);
}

.cta-text{
  color:#1e467f;
  font-weight:650;
  line-height:1.25;
}

.cta-btn{
  display:none;
}

.footer{
  margin-top:34px;
  padding-top:22px;
  border-top:1px solid #d3dced;
}

.footer-line{
  color:#2a528d;
  font-weight:700;
}

.footer-meta{
  margin-top:10px;
  color:#556f96;
  line-height:1.7;
}

@media (max-width: 1100px){
  .hero-grid{
    grid-template-columns: 1fr;
    gap:18px;
    padding:64px 18px 30px;
  }

  .hero-right{
    justify-content:flex-start;
    width:100%;
  }

  .hero-card{
    max-width:none;
  }

  .hero-title{
    max-width:unset;
    overflow-wrap:normal;
  }

  .section-title{
    font-size:42px;
  }

  .unit-title{
    font-size:clamp(19px, 3.4vw, 26px);
  }

  .units{
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 760px){
  .site-header{
    position:relative;
    inset:auto;
  }

  .container{
    width:min(1180px, calc(100% - 28px));
  }

  .header-row{
    display:grid;
    grid-template-columns:minmax(0, 1fr) auto;
    align-items:start;
    gap:10px 12px;
    padding:12px 0 14px;
  }

  .header-left{
    min-width:0;
    flex-wrap:wrap;
  }

  .back-btn{
    min-height:36px;
    padding:0 14px;
  }

  .brand{
    min-width:0;
  }

  .brand-title{
    font-size:clamp(14px, 4.6vw, 22px);
  }

  .lang{
    grid-column:1 / -1;
    width:100%;
    justify-content:flex-end;
    gap:8px;
    margin-top:2px;
  }

  .lang-btn{
    min-width:84px;
    text-align:center;
    padding:7px 10px;
  }

  .hero{
    min-height:auto;
    padding-top:0;
  }

  .hero-shell{
    min-height:auto;
    border-radius:20px;
    display:flex;
    flex-direction:column;
    background:var(--panel-soft);
  }

  .hero-backdrop{
    position:relative;
    inset:auto;
    height:220px;
    flex:0 0 220px;
  }

  .hero-grid{
    display:flex;
    flex-direction:column;
    gap:12px;
    padding:18px 18px 22px;
  }

  .hero-title{
    font-size:clamp(26px, 8.6vw, 36px);
    color:#17325f;
    max-width:none;
    line-height:1.06;
  }

  .hero-card{
    width:100%;
    max-width:none;
    background:var(--panel);
    border:1px solid #dbe3f1;
    border-radius:18px;
    box-shadow:var(--shadow-sm);
    padding:20px;
  }

  .hero-card-title{
    font-size:clamp(17px, 6.2vw, 22px);
    line-height:1.12;
    letter-spacing:-0.35px;
    font-weight:700;
    margin-bottom:10px;
    color:#193a6d;
    text-align:left;
  }

  .hero-bullets{
    margin:0;
    font-size:14px;
    line-height:1.42;
    color:#4f6791;
    padding-left:30px;
    font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    list-style:disc outside;
    font-weight:400;
  }

  .hero-bullets li{
    margin-bottom:8px;
  }

  .list{
    margin-top:-18px;
    padding-bottom:16px;
  }

  .list-shell{
    border-radius:20px;
    padding:24px 18px;
  }

  .tenants{
    padding-bottom:24px;
  }

  .tenants-shell{
    border-radius:20px;
    padding:20px 18px;
  }

  .tenants-title{
    margin-bottom:12px;
    font-size:clamp(20px, 6.2vw, 26px);
  }

  .tenants-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .tenant-card{
    min-height:126px;
  }

  .tenant-card img{
    max-height:76px;
  }

  .section-title{
    font-size:34px;
  }

  .unit-title{
    font-size:clamp(17px, 6.2vw, 22px);
    white-space:nowrap;
    overflow-wrap:normal;
  }

  .unit .unit-images{
    flex-direction:column;
    gap:12px;
  }

  .unit .unit-images .unit-thumb{
    width:100%;
    height:148px;
  }
}

.hub-body{
  min-height:100vh;
  margin:0;
  color:#17325f;
  background:
    radial-gradient(1200px 560px at 50% -60px, rgba(54,124,214,0.28), transparent 70%),
    linear-gradient(180deg, #eff4fb, #e7edf8 100%);
}

.hub-main{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:44px 24px;
}

.hub-shell{
  width:min(1240px, 100%);
}

.hub-header{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:18px;
  align-items:center;
  margin-bottom:28px;
}

.hub-logo{
  border-radius:18px;
  background:#fff;
  box-shadow:0 10px 28px rgba(23,50,95,0.14);
}

.hub-eyebrow{
  margin-bottom:8px;
  color:#5977a2;
  font-size:13px;
  font-weight:700;
  letter-spacing:0.16em;
  text-transform:uppercase;
}

.hub-title{
  margin:0;
  color:#183d73;
  font-size:clamp(34px, 4vw, 56px);
  line-height:1;
  letter-spacing:-1px;
}

.hub-copy{
  margin:10px 0 0;
  max-width:52ch;
  color:#587096;
  font-size:18px;
  line-height:1.45;
}

.hub-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.45fr) minmax(280px, 0.7fr);
  gap:24px;
}

.hub-footer{
  margin-top:26px;
}

.hub-tile{
  position:relative;
  overflow:hidden;
  min-height:420px;
  border-radius:30px;
  border:1px solid rgba(206,217,237,0.92);
  background:#fff;
  box-shadow:0 28px 70px rgba(23,50,95,0.16);
}

.hub-tile-primary{
  color:#fff;
}

.hub-tile-image{
  position:absolute;
  inset:0;
  background:url("assets/main_banner.png") center center / cover no-repeat;
  transform:scale(1.02);
}

.hub-tile-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(14,38,72,0.12), rgba(14,38,72,0.78)),
    linear-gradient(120deg, rgba(22,63,117,0.92), rgba(47,120,210,0.12));
}

.hub-tile-content{
  position:relative;
  z-index:1;
  height:100%;
  padding:28px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}

.hub-tile-kicker{
  margin-bottom:10px;
  font-size:13px;
  font-weight:700;
  letter-spacing:0.12em;
  text-transform:uppercase;
  opacity:0.86;
}

.hub-tile-title{
  margin:0;
  font-size:clamp(28px, 3.2vw, 48px);
  line-height:1.02;
  letter-spacing:-0.8px;
}

.hub-tile-text{
  margin:14px 0 0;
  max-width:30ch;
  font-size:17px;
  line-height:1.42;
  color:inherit;
  opacity:0.94;
}

.hub-tile-placeholder{
  background:
    radial-gradient(360px 180px at 0% 0%, rgba(47,120,210,0.14), transparent 65%),
    linear-gradient(180deg, #ffffff, #f2f6fc);
  color:#17325f;
}

.hub-tile-placeholder .hub-tile-content{
  justify-content:center;
}

.hub-tile-placeholder .hub-tile-kicker{
  color:#5a7196;
  opacity:1;
}

.hub-tile-placeholder .hub-tile-text{
  color:#5a7196;
  opacity:1;
}

@media (max-width: 920px){
  .hub-main{
    align-items:flex-start;
    padding:24px 16px 28px;
  }

  .hub-header{
    grid-template-columns:1fr;
    gap:14px;
    margin-bottom:20px;
  }

  .hub-grid{
    grid-template-columns:1fr;
  }

  .hub-tile{
    min-height:300px;
    border-radius:22px;
  }

  .hub-tile-content{
    padding:20px;
  }

  .hub-tile-text{
    font-size:15px;
  }
}
