
:root {
  --bg: #0f172a;
  --bg-alt: #020617;
  --card: #0b1220;
  --accent: #38bdf8;
  --accent-soft: rgba(56, 189, 248, 0.18);
  --text: #e5e7eb;
  --muted: #9ca3af;
  --border: #1f2937;
  --radius-xl: 1.5rem;
  --radius-lg: 1rem;
  --shadow-soft: 0 18px 45px rgba(15,23,42,0.70);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #0b1120 0, #020617 45%, #020617 100%);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.shell {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(to bottom, rgba(15,23,42,0.95), rgba(15,23,42,0.65), transparent);
  border-bottom: 1px solid rgba(15,23,42,0.8);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0 0.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.brand-badge {
  width: 36px;
  height: 36px;
  border-radius: 1.25rem;
  background: radial-gradient(circle at 20% 0, #38bdf8 0, #0ea5e9 30%, #0369a1 70%, #020617 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 35px rgba(56,189,248,0.45);
}

.brand-badge span {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: #e5f2ff;
}

.brand-text-title {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #f9fafb;
}

.brand-text-sub {
  font-size: 0.75rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-links a {
  position: relative;
  padding-bottom: 0.15rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(to right, #38bdf8, #22c55e);
  transition: width 0.18s ease-out;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: none;
}

main {
  flex: 1;
}

.hero {
  padding: 3.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 2.75rem;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.7rem 0.25rem 0.3rem;
  border-radius: 999px;
  border: 1px solid rgba(148,163,184,0.45);
  background: linear-gradient(to right, rgba(15,23,42,0.9), rgba(15,23,42,0.4));
  color: var(--muted);
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.pill-dot {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: radial-gradient(circle at 25% 0, #22c55e 0, #15803d 40%, #052e16 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 1px rgba(34,197,94,0.4), 0 0 26px rgba(34,197,94,0.65);
  flex-shrink: 0;
}

.pill-dot span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #bbf7d0;
}

.hero-title {
  font-size: clamp(2.4rem, 3.2vw + 1.6rem, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin: 0 0 0.9rem;
}

.hero-title span {
  background: linear-gradient(135deg, #e0f2fe, #7dd3fc, #a7f3d0);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.2rem;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0.85rem;
}

.hero-meta strong {
  color: #e5e7eb;
  font-weight: 500;
}

.hero-text {
  max-width: 36rem;
  font-size: 0.96rem;
  color: #d1d5db;
  margin-bottom: 1.4rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.btn {
  border-radius: 999px;
  padding: 0.7rem 1.3rem;
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  background: transparent;
  color: inherit;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.btn-primary {
  background-image: linear-gradient(135deg, #38bdf8, #22c55e);
  color: #0b1120;
  box-shadow: 0 16px 40px rgba(56,189,248,0.45);
}

.btn-primary span.icon {
  display: inline-flex;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(15,23,42,0.12);
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.btn-ghost {
  border-color: rgba(148,163,184,0.55);
  background: rgba(15,23,42,0.4);
  color: var(--muted);
}

.hero-footnote {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.hero-footnote span.label {
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.hero-media {
  position: relative;
}

.hero-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  background: radial-gradient(circle at top, #020617 0, #020617 30%, #020617 100%);
  box-shadow: var(--shadow-soft);
  position: relative;
  isolation: isolate;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-height: 420px;
}

.hero-chip {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.5rem 0.8rem;
  border-radius: 0.9rem;
  background: rgba(15,23,42,0.92);
  border: 1px solid rgba(148,163,184,0.5);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  color: #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}

.hero-chip span.sub {
  font-size: 0.72rem;
  color: #9ca3af;
}

.hero-badge {
  position: absolute;
  right: 0.6rem;
  top: 0.6rem;
  padding: 0.4rem 0.65rem;
  border-radius: 0.9rem;
  background: rgba(8,47,73,0.96);
  border: 1px solid rgba(56,189,248,0.55);
  font-size: 0.7rem;
  color: #e0f2fe;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 1px rgba(34,197,94,0.4);
}

section {
  padding: 1.5rem 0 0.75rem;
}

.section-inner {
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: radial-gradient(circle at top left, rgba(56,189,248,0.08), transparent 55%),
              radial-gradient(circle at bottom right, rgba(34,197,94,0.06), transparent 55%),
              rgba(15,23,42,0.95);
  box-shadow: var(--shadow-soft);
  padding: 1.7rem 1.6rem 1.4rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.4rem;
}

.section-title {
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.3rem;
}

.section-kicker {
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 0.2rem;
}

.section-summary {
  font-size: 0.88rem;
  color: #d1d5db;
  max-width: 30rem;
}

.section-tag {
  font-size: 0.78rem;
  color: var(--muted);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px dashed rgba(148,163,184,0.7);
  background: rgba(15,23,42,0.7);
}

.grid {
  display: grid;
  gap: 1.3rem;
}

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

.card {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(31,41,55,0.95);
  background: radial-gradient(circle at top left, rgba(148,163,184,0.18), transparent 60%),
              rgba(15,23,42,0.98);
  padding: 1.05rem 1rem;
  font-size: 0.86rem;
  color: #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.card h3 {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.card p {
  margin: 0;
  color: #cbd5f5;
  font-size: 0.84rem;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 0.2rem;
}

.meta-item {
  border-radius: 0.9rem;
  border: 1px solid rgba(31,41,55,0.9);
  background: rgba(15,23,42,0.9);
  padding: 0.6rem 0.7rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.meta-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.68rem;
  color: #6b7280;
  margin-bottom: 0.15rem;
}

.meta-value {
  color: #e5e7eb;
  font-size: 0.82rem;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0.3rem 0 0;
  font-size: 0.84rem;
  color: #d1d5db;
}

.info-list li + li {
  margin-top: 0.28rem;
}

.info-label {
  color: #9ca3af;
}

.info-value {
  color: #e5e7eb;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.9fr);
  gap: 1.3rem;
  align-items: center;
}

.contact-note {
  font-size: 0.86rem;
  color: #d1d5db;
  margin-top: 0.4rem;
}

.contact-pill {
  display: inline-flex;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
  background: rgba(22,163,74,0.13);
  border: 1px solid rgba(34,197,94,0.55);
  font-size: 0.75rem;
  color: #bbf7d0;
  gap: 0.3rem;
  align-items: center;
  margin-top: 0.6rem;
}

.contact-pill span.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #4ade80;
}

.contact-fields {
  list-style: none;
  padding: 0;
  margin: 0.6rem 0 0;
  font-size: 0.86rem;
  color: #d1d5db;
}

.contact-fields li + li {
  margin-top: 0.4rem;
}

.map-card {
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(148,163,184,0.6);
  background: radial-gradient(circle at top left, rgba(56,189,248,0.16), transparent 50%),
              rgba(15,23,42,0.98);
  padding: 0.65rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.8rem;
}

.map-card img {
  border-radius: 1rem;
  border: 1px solid rgba(30,64,175,0.7);
  max-height: 220px;
  object-fit: cover;
}

.map-meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  color: #9ca3af;
  font-size: 0.78rem;
}

.map-meta strong {
  color: #e5e7eb;
  font-weight: 500;
}

footer {
  padding: 1.6rem 0 2rem;
  color: #6b7280;
  font-size: 0.78rem;
}

.footer-inner {
  border-top: 1px solid rgba(31,41,55,0.9);
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-meta {
  display: flex;
  gap: 1.3rem;
  flex-wrap: wrap;
}

.footer-meta span {
  white-space: nowrap;
}

@media (max-width: 880px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero-media {
    order: -1;
  }
  .section-inner {
    padding: 1.3rem 1.1rem 1.1rem;
  }
  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
  .meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 640px) {
  header {
    position: static;
    background: transparent;
    border-bottom: none;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    display: inline-flex;
  }
  .hero {
    padding-top: 2.2rem;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .section-header {
    flex-direction: column;
    gap: 0.7rem;
  }
  .meta-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
