:root {
  --color-primary: #0b625d;
  --color-accent: #0f9b98;
  --color-bg: #f6f4ef;
  --color-surface: #ffffff;
  --color-text: #173432;
  --color-muted: #60716f;
  --shadow-soft: 0 24px 70px rgba(11, 98, 93, 0.12);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  background:
  radial-gradient(circle at top left, rgba(15, 155, 152, 0.14), transparent 36rem),
  linear-gradient(180deg, #ffffff 0%, var(--color-bg) 62%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}

.page-shell {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 72px;
}

.hero {
  text-align: center;
  padding: 28px 0 42px;
}

.logo {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin: 0 auto 34px;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--color-accent);
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin: 0 auto 10px;
  color: var(--color-primary);
  font-size: clamp(2.2rem, 5vw, 2.6rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.coming-soon {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.content-card,
.contact-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(11, 98, 93, 0.12);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.content-card {
  padding: clamp(28px, 5vw, 56px);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 64px);
}

article.wide-section {
  margin-top: 32px;
}

h2 {
  margin-bottom: 14px;
  color: var(--color-primary);
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.18;
  letter-spacing: -0.025em;
}

p {
  color: var(--color-muted);
  font-size: 1.02rem;
}

p:last-child {
  margin-bottom: 0;
}

.contact-card {
  margin-top: 28px;
  padding: 34px;
  text-align: center;
}

.contact-name {
  margin-bottom: 14px;
  color: var(--color-text);
  font-size: 1.2rem;
  font-weight: 800;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  color: #ffffff;
  background: var(--color-primary);
  border-radius: 999px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  background: var(--color-accent);
  box-shadow: 0 12px 28px rgba(15, 155, 152, 0.25);
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 40px, var(--max-width));
    padding-top: 30px;
  }
  
  .hero {
    padding-bottom: 30px;
  }
  
  .intro-grid {
    grid-template-columns: 1fr;
  }
  
  .content-card,
  .contact-card {
    border-radius: 22px;
  }
  
  .contact-card {
    padding: 28px 18px;
  }
  
  .contact-links {
    align-items: stretch;
    flex-direction: column;
  }
}
