:root {
  --brand: #148aaf;
  --brand-dark: #0b6f91;
  --brand-soft: #e7f7fc;
  --mint: #55bda6;
  --ink: #20242b;
  --muted: #5f6a76;
  --line: #d7eaf1;
  --surface: #ffffff;
  --surface-soft: #f5fbfd;
  --shadow: 0 18px 42px rgba(11, 111, 145, 0.13);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(150deg, rgba(20, 138, 175, 0.1) 0 18rem, transparent 18.1rem),
    linear-gradient(180deg, #ffffff 0%, #f8fcfe 50%, #ffffff 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: auto 0 0;
  z-index: -1;
  height: 38vh;
  background: linear-gradient(135deg, rgba(85, 189, 166, 0.1), rgba(20, 138, 175, 0.04));
  clip-path: polygon(0 28%, 100% 0, 100% 100%, 0 100%);
  content: "";
}

img,
svg {
  display: block;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(20, 138, 175, 0.35);
  outline-offset: 4px;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max-width), calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  gap: 12px;
}

.brand-mark {
  width: 56px;
  height: 38px;
  flex: 0 0 56px;
  fill: none;
  stroke: var(--brand);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
}

.brand-text {
  color: #575a60;
  font-size: clamp(1.35rem, 1.15rem + 0.8vw, 2rem);
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}

.brand-text strong {
  color: #3e4148;
  font-weight: 800;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.header-cta {
  flex: 0 0 auto;
  gap: 9px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), #119fd0);
  box-shadow: 0 14px 28px rgba(20, 138, 175, 0.24);
}

.header-cta svg,
.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.header-cta:hover,
.button:hover,
.service-card:hover {
  transform: translateY(-2px);
}

.hero,
.services,
.trust,
.contact {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(30px, 5vw, 72px);
  min-height: calc(100vh - 78px);
  padding: clamp(34px, 6vw, 72px) 0 64px;
}

.hero-copy {
  max-width: 700px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.08;
}

h1 {
  max-width: 11.5em;
  font-size: clamp(2.35rem, 1.86rem + 2.35vw, 4.45rem);
}

h2 {
  font-size: clamp(1.9rem, 1.62rem + 1.25vw, 3rem);
}

h3 {
  font-size: 1.03rem;
}

.hero-text {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 0.96rem + 0.18vw, 1.14rem);
}

.launch-note {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin: 28px 0 0;
  padding: 0 14px;
  border: 1px solid rgba(85, 189, 166, 0.34);
  border-radius: var(--radius);
  color: #195e52;
  background: rgba(85, 189, 166, 0.12);
  font-weight: 900;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  gap: 10px;
  border: 1px solid transparent;
}

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), #119fd0);
  box-shadow: 0 16px 34px rgba(20, 138, 175, 0.24);
}

.button-secondary {
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(20, 138, 175, 0.42);
}

.button-primary:hover,
.header-cta:hover {
  box-shadow: 0 18px 36px rgba(20, 138, 175, 0.28);
}

.button-secondary:hover {
  background: #ffffff;
  border-color: var(--brand);
  box-shadow: 0 14px 30px rgba(20, 138, 175, 0.12);
}

.hero-status {
  position: relative;
  display: grid;
  gap: 22px;
  padding: clamp(18px, 4vw, 30px);
  border: 1px solid rgba(215, 234, 241, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(244, 251, 253, 0.88)),
    linear-gradient(150deg, rgba(20, 138, 175, 0.08), transparent 48%);
  box-shadow: var(--shadow);
}

.hero-status::before {
  position: absolute;
  inset: 16px 16px auto auto;
  width: 35%;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--mint));
  content: "";
}

.brand-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 210px;
  padding: 22px;
}

.brand-panel img {
  width: min(280px, 86%);
  height: auto;
  max-height: 190px;
  object-fit: contain;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.time-card {
  display: grid;
  align-content: center;
  min-height: 106px;
  padding: 14px 10px;
  border: 1px solid rgba(215, 234, 241, 0.95);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(11, 111, 145, 0.09);
  text-align: center;
}

.time-card strong {
  color: var(--brand-dark);
  font-size: clamp(1.9rem, 1.55rem + 1.35vw, 3rem);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.time-card span {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.countdown-message {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.services {
  padding: 78px 0 34px;
}

.section-heading {
  max-width: 640px;
  margin: 0 auto 32px;
  text-align: center;
}

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

.service-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid rgba(215, 234, 241, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 32px rgba(11, 111, 145, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.service-card:hover {
  border-color: rgba(20, 138, 175, 0.42);
  box-shadow: 0 18px 36px rgba(11, 111, 145, 0.12);
}

.service-card svg {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  padding: 9px;
  border-radius: 50%;
  color: var(--brand);
  background: var(--brand-soft);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.service-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.trust {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(28px, 5vw, 66px);
  padding: 74px 0;
}

.trust p {
  max-width: 560px;
  margin: 20px 0 0;
  color: var(--muted);
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-self: center;
}

.benefit {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 170px;
  padding: 20px 14px;
  border-left: 1px solid var(--line);
  text-align: center;
}

.benefit:first-child {
  border-left: 0;
}

.benefit svg {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  color: var(--brand);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.benefit span {
  font-weight: 900;
  line-height: 1.25;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  margin-bottom: 40px;
  padding: clamp(24px, 5vw, 42px);
  border-radius: var(--radius);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(9, 93, 122, 0.96), rgba(20, 138, 175, 0.94)),
    var(--brand-dark);
  box-shadow: var(--shadow);
}

.contact .eyebrow,
.contact h2 {
  color: #ffffff;
}

.contact-copy h2 {
  max-width: 10em;
}

.contact .button-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  font-style: normal;
}

.contact-list span {
  display: grid;
  gap: 4px;
  min-height: 108px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.contact-list strong {
  font-size: 0.9rem;
}

.contact-list a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 28px;
  color: var(--muted);
  font-size: 0.94rem;
  text-align: center;
}

@media (max-width: 980px) {
  .hero,
  .trust,
  .contact {
    grid-template-columns: 1fr;
  }

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

  h1 {
    max-width: 12em;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust {
    padding-top: 56px;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 72px;
  }

  .brand-mark {
    width: 46px;
    height: 31px;
    flex-basis: 46px;
  }

  .brand-text {
    font-size: 1.26rem;
  }

  .header-cta {
    width: 48px;
    padding: 0;
    font-size: 0;
  }

  .hero,
  .services,
  .trust,
  .contact,
  .site-header,
  .site-footer {
    width: min(100% - 24px, var(--max-width));
  }

  .hero {
    padding-bottom: 46px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .brand-panel {
    min-height: 160px;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid,
  .benefits,
  .contact-list {
    grid-template-columns: 1fr;
  }

  .benefit {
    min-height: 132px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .benefit:first-child {
    border-top: 0;
  }

  .contact {
    padding: 24px 18px;
  }
}

@media (max-width: 420px) {
  .brand {
    gap: 8px;
  }

  .brand-text {
    font-size: 1.05rem;
  }

  .hero-status {
    padding: 16px;
  }

  .time-card {
    min-height: 92px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
