:root {
  --green: #166534;
  --green-soft: #22a35a;
  --blue: #114b8b;
  --text: #17324d;
  --card: rgba(255,255,255,0.86);
  --line: rgba(22,101,52,0.12);
  --shadow: 0 24px 80px rgba(17, 75, 139, 0.12);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(166, 229, 189, 0.45), transparent 30%),
    radial-gradient(circle at top right, rgba(163, 219, 255, 0.35), transparent 28%),
    linear-gradient(180deg, #eaf7ff 0%, #f9fff7 52%, #f0f7ee 100%);
  overflow: hidden;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  z-index: 2;
}

.card {
  width: min(100%, 740px);
  text-align: center;
  background: var(--card);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 28px;
  padding: 30px 24px 34px;
  box-shadow: var(--shadow);
}

.logo {
  width: min(100%, 520px);
  height: auto;
  display: block;
  margin: 0 auto 10px;
}

.eyebrow {
  margin: 4px 0 8px;
  font-size: 0.95rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blue);
  opacity: 0.9;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 5vw, 4.3rem);
  line-height: 1.04;
  color: var(--green);
}

.lead {
  margin: 14px auto 0;
  max-width: 540px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.65;
  color: #35516a;
}

.contact {
  margin: 26px auto 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  color: var(--blue);
  text-decoration: none;
  font-weight: 700;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(34, 163, 90, 0.10);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(34, 163, 90, 0.16);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(34,163,90,0.12);
  color: var(--green);
  font-size: 1.05rem;
}

.bg {
  position: fixed;
  inset: auto;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(8px);
}

.bg-one {
  width: 420px;
  height: 420px;
  left: -90px;
  bottom: -120px;
  background: radial-gradient(circle, rgba(111, 214, 138, 0.25) 0%, rgba(111, 214, 138, 0.04) 70%, transparent 72%);
}

.bg-two {
  width: 420px;
  height: 420px;
  right: -110px;
  top: -120px;
  background: radial-gradient(circle, rgba(100, 185, 255, 0.22) 0%, rgba(100, 185, 255, 0.04) 70%, transparent 72%);
}

.leaf {
  position: fixed;
  width: 22px;
  height: 22px;
  background: linear-gradient(180deg, #73d489 0%, #38a35c 100%);
  border-radius: 0 100% 0 100%;
  opacity: 0.7;
  z-index: 1;
  pointer-events: none;
}

.leaf-1 { top: 10%; left: 8%; transform: rotate(18deg); }
.leaf-2 { top: 16%; right: 10%; transform: rotate(62deg); }
.leaf-3 { bottom: 13%; left: 14%; transform: rotate(-26deg); }
.leaf-4 { bottom: 11%; right: 16%; transform: rotate(36deg); }

@media (max-width: 680px) {
  body { overflow: auto; }
  .page { padding: 14px; }
  .card {
    padding: 22px 16px 26px;
    border-radius: 22px;
  }
  .eyebrow {
    font-size: 0.8rem;
    letter-spacing: 0.18em;
  }
  .contact {
    width: 100%;
    justify-content: center;
    font-size: 0.98rem;
  }
  .leaf { opacity: 0.45; }
}
