:root {
  --navy: #102a43;
  --navy-soft: #193b57;
  --green: #159478;
  --mint: #50d6b1;
  --pale-green: #e9faf5;
  --pale-blue: #e8f4ff;
  --ink: #172d3d;
  --text: #607888;
  --border: #dce7ed;
}

* { box-sizing: border-box; }

html {
  min-width: 320px;
  width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  background: #f7fafb;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

svg { display: block; }

.coming-soon {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.site-header {
  position: relative;
  z-index: 10;
  min-height: 84px;
  padding: 0 clamp(22px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 1.25rem;
  font-weight: 800;
  text-decoration: none;
}

.brand strong { color: var(--green); }

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--navy);
  color: var(--mint);
  transform: rotate(-4deg);
}

.brand-mark svg { width: 25px; fill: currentColor; }

.build-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--text);
  font-size: .8rem;
  font-weight: 750;
}

.build-status i,
.panel-heading i {
  width: 8px;
  height: 8px;
  display: block;
  border-radius: 50%;
  background: #24bc79;
  box-shadow: 0 0 0 5px #dcf6ec;
}

.hero {
  width: min(100%, 1460px);
  min-height: 680px;
  margin: auto;
  padding: clamp(60px, 8vw, 105px) clamp(22px, 6vw, 90px);
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  align-items: center;
  gap: clamp(46px, 7vw, 105px);
}

.hero > *,
.service-card > div {
  min-width: 0;
}

.hero-copy { position: relative; z-index: 1; }

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .15em;
}

h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(3.5rem, 5.2vw, 5.15rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
}

h1 span {
  color: var(--green);
}

.introduction {
  max-width: 650px;
  margin: 28px 0 32px;
  color: var(--text);
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.72;
}

.notice {
  max-width: 610px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid #bcebdd;
  border-radius: 17px;
  background: var(--pale-green);
  color: var(--navy);
}

.notice-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #d0f3e7;
  color: var(--green);
}

.notice-icon svg { width: 20px; fill: currentColor; }
.notice strong { font-size: .95rem; }
.notice p { margin: 5px 0 0; color: #467064; font-size: .86rem; line-height: 1.55; }

.service-panel {
  position: relative;
  padding: clamp(25px, 4vw, 42px);
  overflow: hidden;
  border-radius: 34px;
  background: var(--navy);
  box-shadow: 0 30px 80px rgba(16, 42, 67, .22);
}

.panel-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  top: -225px;
  right: -165px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 65px rgba(255, 255, 255, .025), 0 0 0 130px rgba(255, 255, 255, .025);
}

.panel-heading {
  position: relative;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--mint);
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .14em;
}

.service-card {
  position: relative;
  margin-top: 14px;
  padding: 23px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, .65);
  border-radius: 19px;
  background: var(--pale-green);
}

.service-card.blue { background: var(--pale-blue); }

.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: #fff;
  color: var(--green);
  box-shadow: 0 8px 25px rgba(16, 42, 67, .08);
}

.service-card.blue .service-icon { color: #246fa4; }
.service-icon svg { width: 25px; fill: currentColor; }
.service-card small { color: var(--green); font-size: .65rem; font-weight: 850; letter-spacing: .11em; }
.service-card.blue small { color: #246fa4; }
.service-card h2 { margin: 6px 0 7px; color: var(--navy); font-size: 1.15rem; letter-spacing: -.025em; }
.service-card p { margin: 0; color: var(--text); font-size: .86rem; line-height: 1.55; }

.secure-line {
  position: relative;
  margin: 23px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #bed1db;
  font-size: .75rem;
  text-align: center;
}

.secure-line svg { width: 18px; flex: 0 0 auto; fill: var(--mint); }

footer {
  min-height: 80px;
  padding: 24px clamp(22px, 5vw, 76px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-size: .78rem;
}

footer p { margin: 0; }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 70px; padding-bottom: 80px; }
  .service-panel { max-width: 650px; width: 100%; margin: 0 auto; }
}

@media (max-width: 600px) {
  .site-header { min-height: 72px; }
  .brand { font-size: 1rem; }
  .brand strong { display: none; }
  .brand-mark { width: 39px; height: 39px; }
  .build-status { max-width: 100px; text-align: right; font-size: .68rem; }
 h1 {
  font-size: clamp(2.45rem, 10.5vw, 3rem);
  line-height: 1;
  letter-spacing: -0.055em;
  white-space: nowrap;
}
  .hero {
    width: 100%;
    padding: 52px 20px 68px;
    gap: 38px;
  }
  .eyebrow {
    font-size: .7rem;
    line-height: 1.6;
  }
  .introduction {
    margin-top: 23px;
    font-size: 1rem;
  }
  .notice {
    width: 100%;
    padding: 16px;
  }
  .service-panel { padding: 23px 17px; border-radius: 25px; }
  .service-card { padding: 18px 16px; grid-template-columns: 1fr; gap: 12px; }
  .service-icon { width: 45px; height: 45px; }
  .secure-line { align-items: flex-start; }
  footer { align-items: flex-start; flex-direction: column; gap: 7px; }
}

@media (max-width: 370px) {
  .site-header { padding-right: 16px; padding-left: 16px; }
  .brand-name { font-size: .94rem; }
  .build-status { max-width: 88px; }
  .hero { padding-right: 16px; padding-left: 16px; }
  h1 { font-size: 2.25rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; }
}
