:root {
  --bg: #f2f7f7;
  --panel: rgba(255, 255, 255, 0.78);
  --text: #172127;
  --muted: #4f5f66;
  --primary: #0f766e;
  --primary-strong: #0b5d57;
  --accent: #d97706;
  --border: rgba(18, 32, 42, 0.12);
  --shadow: 0 18px 45px rgba(16, 36, 43, 0.12);
  --radius-lg: 24px;
  --radius-md: 16px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #0d1419;
    --panel: rgba(20, 31, 38, 0.76);
    --text: #e8f2f7;
    --muted: #a5bdc9;
    --primary: #21b5a9;
    --primary-strong: #15a197;
    --accent: #f59e0b;
    --border: rgba(156, 198, 217, 0.2);
    --shadow: 0 25px 45px rgba(1, 8, 14, 0.42);
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.bg-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(to right, rgba(127, 127, 127, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(127, 127, 127, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: -3;
}

.bg-orb {
  position: fixed;
  border-radius: 999px;
  filter: blur(70px);
  pointer-events: none;
  z-index: -2;
  animation: float 14s ease-in-out infinite;
}

.orb-1 {
  width: 320px;
  height: 320px;
  left: -80px;
  top: -30px;
  background: rgba(15, 118, 110, 0.28);
}

.orb-2 {
  width: 380px;
  height: 380px;
  right: -110px;
  top: 120px;
  background: rgba(217, 119, 6, 0.24);
  animation-delay: 1.7s;
}

.site-header {
  max-width: 1100px;
  margin: 18px auto 0;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.2px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(140deg, var(--primary), var(--accent));
  box-shadow: 0 0 0 6px rgba(15, 118, 110, 0.15);
}

.nav {
  display: inline-flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
}

.nav a:hover {
  color: var(--primary);
}

.container {
  max-width: 1100px;
  margin: 20px auto 36px;
  padding: 0 20px;
}

.hero {
  padding: 48px;
  background: linear-gradient(155deg, rgba(15, 118, 110, 0.16), rgba(217, 119, 6, 0.11));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
}

h1,
h2,
h3 {
  font-family: "Fraunces", Georgia, serif;
  line-height: 1.15;
}

h1 {
  margin: 14px 0 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.hero-copy {
  margin: 0;
  color: var(--muted);
  max-width: 760px;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.cta-row {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.3);
}

.btn-primary:hover {
  background: var(--primary-strong);
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(255, 255, 255, 0.6);
}

.hero-meta {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.meta-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
}

.meta-card strong {
  display: block;
  font-size: 13px;
  color: var(--muted);
}

.meta-card span {
  display: block;
  margin-top: 4px;
  font-size: 14px;
}

.panel {
  margin-top: 18px;
  padding: 32px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
}

.panel h2 {
  margin: 0 0 8px;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.panel p {
  margin-top: 0;
  color: var(--muted);
}

.cards {
  display: grid;
  gap: 12px;
}

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

.card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.56);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.card ul {
  margin: 8px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.privacy-block + .privacy-block {
  margin-top: 18px;
}

.privacy-block h3 {
  margin: 0 0 7px;
  font-size: 1.2rem;
}

.privacy-block p,
.privacy-block li {
  color: var(--muted);
}

.privacy-block ul {
  margin: 0;
  padding-left: 18px;
}

.updated {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.9rem;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--primary);
  background: rgba(15, 118, 110, 0.12);
}

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

.contact-grid > div {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.58);
}

a {
  color: var(--primary);
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  background: rgba(17, 24, 39, 0.08);
  padding: 2px 6px;
  border-radius: 6px;
}

.site-footer {
  max-width: 1100px;
  margin: 0 auto 22px;
  padding: 0 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.reveal {
  animation: revealUp 700ms ease both;
}

.reveal:nth-of-type(2) {
  animation-delay: 90ms;
}

.reveal:nth-of-type(3) {
  animation-delay: 170ms;
}

.reveal:nth-of-type(4) {
  animation-delay: 250ms;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(12px);
  }
}

@media (max-width: 900px) {
  .hero-meta,
  .contact-grid,
  .two-col {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 28px 22px;
  }

  .panel {
    padding: 24px 20px;
  }
}
