:root {
  --bg-0: #f9fbfc;
  --bg-1: #edf3f7;
  --brand: #46c1c6;
  --brand-strong: #2e9ca2;
  --secondary: #0b1c31;
  --text-soft: #2e465f;
  --text-main: #0b1c31;
}

* {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
}

body {
  min-height: 100vh;
  color: var(--text-main);
  background:
    radial-gradient(circle at 0% 0%, rgb(70 193 198 / 18%), transparent 34%),
    radial-gradient(circle at 90% 10%, rgb(11 28 49 / 7%), transparent 24%),
    linear-gradient(145deg, var(--bg-0), var(--bg-1));
  font-family: "Segoe UI", "Inter", "Plus Jakarta Sans", sans-serif;
  line-height: 1.5;
}

.page-shell {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.glass {
  background: rgb(255 255 255 / 94%);
  border: 1px solid rgb(11 28 49 / 16%);
  box-shadow: 0 10px 28px rgb(11 28 49 / 11%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.glass-soft {
  background: rgb(255 255 255 / 86%);
  border: 1px solid rgb(11 28 49 / 14%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.hero-grid {
  display: grid;
  align-items: start;
  gap: 1.2rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.link-chip {
  border: 1px solid rgb(11 28 49 / 24%);
  background: rgb(255 255 255 / 96%);
  text-decoration: none !important;
  transition: all 240ms ease;
}

.link-chip:hover {
  border-color: rgb(70 193 198 / 70%);
  background: rgb(70 193 198 / 16%);
}

.link-chip.active-link {
  background: #46c1c6 !important;
  border-color: #46c1c6 !important;
  color: #0b1c31 !important;
}

.btn-brand {
  background: var(--brand);
  border: 1px solid rgb(11 28 49 / 24%);
  color: var(--secondary);
  font-weight: 700;
  text-decoration: none !important;
  transition: background-color 220ms ease, box-shadow 220ms ease;
}

.btn-brand:hover {
  background: var(--brand-strong);
  box-shadow: 0 8px 20px rgb(11 28 49 / 20%);
}

.btn-readmore {
  background: #ffffff;
  border: 1px solid rgb(11 28 49 / 24%);
  color: var(--secondary);
  font-weight: 700;
  text-decoration: none !important;
  transition: background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.btn-readmore:hover {
  background: var(--brand);
  border-color: #46c1c6;
  box-shadow: 0 8px 20px rgb(11 28 49 / 16%);
}

.legal-prose p {
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 0.95rem;
}

/* Tailwind utility overrides for light theme */
.text-white,
.text-slate-100,
.text-slate-200,
.text-slate-300 {
  color: var(--text-main) !important;
}

.text-cyan-100 {
  color: var(--secondary) !important;
}

.bg-cyan-300\/18,
.bg-cyan-300\/20 {
  background-color: rgb(70 193 198 / 24%) !important;
}

.tracking-\[0\.14em\] {
  letter-spacing: 0.08em !important;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

.brand-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 0;
}

.brand-claim {
  font-size: 1rem !important;
  color: var(--text-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 36rem;
}

.brand-logo {
  width: 3.4rem;
  height: 3.4rem;
  object-fit: contain;
  border-radius: 0.55rem;
  box-shadow: 0 4px 12px rgb(11 28 49 / 22%);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-logo {
  width: 2.6rem;
  height: 2.6rem;
  object-fit: contain;
  border-radius: 0.46rem;
}

.partner-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.creon-logo {
  max-width: 12rem;
  width: 100%;
  height: auto;
  object-fit: contain;
}


.hero-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

/* Offline utility classes replacing Tailwind CDN */
.antialiased { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
.sticky { position: sticky; }
.top-3 { top: 0.75rem; }
.z-30 { z-index: 30; }
.hidden { display: none; }
.flex { display: flex; }
.grid { display: grid; }
.inline-block { display: inline-block; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }
.h-52 { height: 13rem; }
.object-cover { object-fit: cover; }
.leading-tight { line-height: 1.2; }
.uppercase { text-transform: uppercase; }
.font-semibold { font-weight: 600; }
.text-xs { font-size: 0.88rem; }
.text-sm { font-size: 1.125rem; }
.text-base { font-size: 1rem; }
.text-lg { font-size: 1.125rem; }
.text-xl { font-size: 1.25rem; }
.text-3xl { font-size: 1.875rem; line-height: 1.2; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-7 { margin-bottom: 1.75rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-16 { margin-top: 4rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-10 { padding-bottom: 2.5rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .md\:hidden { display: none !important; }
  .md\:flex { display: flex !important; }
  .md\:flex-row { flex-direction: row; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:items-center { align-items: center; }
  .md\:justify-between { justify-content: space-between; }
  .md\:mb-12 { margin-bottom: 3rem; }
  .md\:mb-14 { margin-bottom: 3.5rem; }
  .md\:p-7 { padding: 1.75rem; }
  .md\:p-8 { padding: 2rem; }
  .md\:p-9 { padding: 2.25rem; }
  .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .md\:text-base { font-size: 1rem; }
  .md\:text-lg { font-size: 1.125rem; }
  .md\:text-4xl { font-size: 2.25rem; line-height: 1.15; }
  .md\:text-5xl { font-size: 3rem; line-height: 1.1; }
}

@media (max-width: 1023px) {
  .brand-claim { display: none; }
}
