:root {
  --ink: #17323a;
  --muted: #6d7d82;
  --teal: #087a98;
  --teal-dark: #075d74;
  --teal-soft: #e8f5f7;
  --line: #dce9ec;
  --white: #ffffff;
  --bg: #f5f9fa;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 10% 15%, rgba(8,122,152,.10), transparent 28rem),
    radial-gradient(circle at 90% 85%, rgba(8,122,152,.07), transparent 30rem),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }
.page-shell { min-height: 100svh; }
.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  padding: 40px 20px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(8,122,152,.09);
  border-radius: 30px;
  pointer-events: none;
}
.decor {
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(8,122,152,.10);
  border-radius: 50%;
}
.decor::before,
.decor::after {
  content: "";
  position: absolute;
  inset: 38px;
  border: inherit;
  border-radius: inherit;
}
.decor::after { inset: 78px; }
.decor-one { top: -170px; right: -120px; }
.decor-two { bottom: -190px; left: -140px; }

.hero-card {
  width: min(860px, 100%);
  position: relative;
  z-index: 1;
  padding: clamp(34px, 6vw, 68px);
  border: 1px solid rgba(8,122,152,.12);
  border-radius: 28px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 30px 80px rgba(22, 61, 72, .10);
  backdrop-filter: blur(14px);
  text-align: center;
}
.brand-wrap {
  width: min(520px, 82%);
  margin: 0 auto 28px;
}
.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px var(--teal-soft);
}
h1 {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(38px, 6.1vw, 64px);
  line-height: 1.03;
  letter-spacing: -.045em;
  font-weight: 760;
  text-wrap: balance;
}
.intro {
  max-width: 640px;
  margin: 22px auto 34px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.7;
}
.contact-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 690px;
  margin: 0 auto;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #fff;
  text-align: left;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.contact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(8,122,152,.38);
  box-shadow: 0 14px 30px rgba(22,61,72,.08);
}
.icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--teal-soft);
  color: var(--teal-dark);
}
.icon svg { width: 22px; height: 22px; }
.contact-card small {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.contact-card strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: 15px;
  line-height: 1.35;
}
.pulse-line {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 400px;
  margin: 36px auto 14px;
  color: var(--teal);
}
.pulse-line span { height: 1px; flex: 1; background: var(--line); }
.pulse-line svg { width: 110px; height: 24px; }
.footer-note {
  margin: 0;
  color: #829196;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .10em;
  text-transform: uppercase;
}

@media (max-width: 680px) {
  .hero { padding: 14px; }
  .hero::before { inset: 8px; border-radius: 22px; }
  .hero-card { padding: 34px 18px; border-radius: 22px; }
  .brand-wrap { width: min(430px, 96%); margin-bottom: 24px; }
  .contact-panel { grid-template-columns: 1fr; }
  .contact-card { padding: 16px; }
  h1 br { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
