:root {
  --navy: #063b70;
  --blue: #0878c9;
  --cyan: #19a8e3;
  --green: #29aa58;
  --yellow: #ffd21c;
  --red: #e31e2d;
  --ink: #09375f;
  --muted: #5f7890;
  --line: #dcebf5;
  --white: #ffffff;
  --soft: #f5fbff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 10%, rgba(25,168,227,.13), transparent 27%),
    radial-gradient(circle at 90% 22%, rgba(41,170,88,.11), transparent 22%),
    linear-gradient(180deg, #ffffff 0%, #f4faff 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .22;
  background-image: linear-gradient(rgba(8,120,201,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(8,120,201,.06) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

.site-shell { min-height: 100vh; display: flex; flex-direction: column; }
.topbar {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand img {
  display: block;
  width: 185px;
  height: auto;
}

.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border: 1px solid #cce6f6;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  color: var(--navy);
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 10px 28px rgba(5, 62, 111, .08);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(41,170,88,.12);
}

.hero {
  position: relative;
  overflow: hidden;
  width: min(1180px, calc(100% - 40px));
  margin: auto;
  padding: 68px 66px;
  border-radius: 34px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96) 0 53%, rgba(235,248,255,.96) 53% 100%);
  border: 1px solid rgba(8,120,201,.15);
  box-shadow: 0 35px 90px rgba(6,59,112,.16);
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 54px;
  align-items: center;
}

.hero-content { position: relative; z-index: 2; }
.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 900;
  color: var(--blue);
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(40px, 6vw, 70px);
  line-height: .98;
  letter-spacing: -.045em;
  color: var(--navy);
}

.lead {
  max-width: 700px;
  margin: 24px 0 0;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}

.service-row {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}

.service-card {
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px;
  border: 1px solid rgba(8,120,201,.11);
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 10px 28px rgba(6,59,112,.07);
}
.service-card strong { display:block; font-size: 16px; }
.service-card small { display:block; margin-top: 4px; color: var(--muted); line-height: 1.35; }
.service-icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 20px;
}
.service-blue .service-icon { background: rgba(8,120,201,.12); color: var(--blue); }
.service-green .service-icon { background: rgba(41,170,88,.13); color: var(--green); }
.service-yellow .service-icon { background: rgba(255,210,28,.21); color: #c89900; }

.notice {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
}
.notice p { margin: 0; line-height: 1.5; }
.notice-mark {
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: white;
  font-weight: 900;
  font-family: Georgia, serif;
}

.visual-card {
  position: relative;
  min-height: 480px;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 15%, rgba(255,210,28,.85), transparent 18%),
    radial-gradient(circle at 15% 88%, rgba(41,170,88,.9), transparent 28%),
    linear-gradient(145deg, #0b88d1 0%, #075fa5 48%, #063b70 100%);
  box-shadow: 0 28px 60px rgba(6,59,112,.25);
}
.visual-card::after {
  content: "";
  position: absolute;
  left: -15%; right: -15%; bottom: -18%; height: 48%;
  border-radius: 50% 50% 0 0;
  background: linear-gradient(180deg, rgba(255,255,255,.17), rgba(255,255,255,.03));
  transform: rotate(-6deg);
}
.visual-inner {
  position: relative;
  z-index: 3;
  min-height: 480px;
  padding: 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: white;
}
.visual-inner h2 {
  margin: 16px 0 12px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.04;
  letter-spacing: -.035em;
}
.visual-inner p { margin: 0; color: rgba(255,255,255,.78); font-weight: 700; }
.coming {
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.26);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
}
.flame {
  width: 78px;
  height: 92px;
  position: relative;
  margin-bottom: 14px;
}
.flame span {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 20px;
  height: 70px;
  border-radius: 75% 15% 75% 25%;
  background: var(--red);
  transform-origin: bottom center;
  box-shadow: 0 10px 24px rgba(227,30,45,.28);
}
.flame span:nth-child(1){ transform: translateX(-36px) rotate(28deg) scale(.82); }
.flame span:nth-child(2){ transform: translateX(-10px) rotate(9deg) scale(1); }
.flame span:nth-child(3){ transform: translateX(14px) rotate(-18deg) scale(.72); }

.orbit { position:absolute; border:1px solid rgba(255,255,255,.18); border-radius:50%; }
.orbit-a { width: 290px; height: 290px; right:-110px; top:-70px; }
.orbit-b { width: 410px; height: 410px; right:-220px; top:-135px; }

.decor { position:absolute; border-radius:50%; filter: blur(2px); pointer-events:none; }
.decor-one { width: 160px; height: 160px; left:-78px; bottom:-72px; background: rgba(25,168,227,.13); }
.decor-two { width: 86px; height: 86px; left: 49%; top:-40px; background: rgba(255,210,28,.16); }
.decor-three { width: 100px; height: 100px; right: 28%; bottom:-52px; background: rgba(41,170,88,.14); }

footer {
  width: min(1180px, calc(100% - 40px));
  margin: 26px auto 0;
  padding: 0 4px 26px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #6c879d;
  font-size: 13px;
}
footer p { margin: 0; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 48px 34px; }
  .visual-card, .visual-inner { min-height: 380px; }
  .service-row { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .topbar { width: min(100% - 28px, 1180px); min-height: 78px; }
  .brand img { width: 145px; }
  .status-chip { font-size: 11px; padding: 8px 10px; }
  .hero { width: min(100% - 24px, 1180px); padding: 38px 22px 22px; border-radius: 24px; gap: 32px; }
  h1 { font-size: clamp(38px, 12vw, 54px); }
  .lead { font-size: 16px; }
  .visual-inner { padding: 28px; }
  footer { width: min(100% - 28px, 1180px); flex-direction: column; }
}

@media (prefers-reduced-motion: no-preference) {
  .status-dot { animation: pulse 2s infinite; }
  @keyframes pulse {
    0%,100% { box-shadow: 0 0 0 5px rgba(41,170,88,.11); }
    50% { box-shadow: 0 0 0 9px rgba(41,170,88,.03); }
  }
}
