:root {
  --bg: #08111f;
  --bg-alt: #0f172a;
  --card: #ffffff;
  --text: #0f172a;
  --text-soft: #475569;
  --line: #dbe2ea;
  --brand: #14b8a6;
  --brand-dark: #0f766e;
  --brand-pale: #ccfbf1;
  --white: #ffffff;
  --shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: #f8fafc;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(8, 17, 31, 0.88);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}
.nav-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--white);
}
.brand-mark {
  width: 2.8rem;
  height: 2.8rem;
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.26rem;
  padding: 0.62rem;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), #2dd4bf);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18);
}
.brand-dot {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: #042f2e;
}
.brand-line {
  width: 100%;
  height: 0.22rem;
  border-radius: 999px;
  background: #042f2e;
}
.brand-line.short {
  width: 70%;
}
.brand-name { font-weight: 800; }
.brand-sub { color: rgba(255,255,255,0.72); font-size: 0.92rem; }

.hero {
  background: radial-gradient(circle at top right, rgba(20,184,166,0.18), transparent 28%), linear-gradient(180deg, var(--bg), var(--bg-alt));
  color: var(--white);
  padding: 4.5rem 0 4rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  align-items: center;
}
.eyebrow {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand);
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}
h1, h2, h3 {
  margin: 0 0 0.75rem;
  line-height: 1.1;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: 1.3rem; }
.lead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 60ch;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.25rem;
  border: 0;
  border-radius: 999px;
  background: var(--brand);
  color: #052e2b;
  font-weight: 700;
  box-shadow: var(--shadow);
  cursor: pointer;
}
.button:hover { background: #2dd4bf; }
.button-small {
  min-height: 42px;
  padding: 0.65rem 1rem;
}
.button-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow: none;
}
.button-ghost:hover { background: rgba(255,255,255,0.08); }
.button-ghost-dark {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: none;
}
.button-ghost-dark:hover { background: rgba(255,255,255,0.1); }
.ticks, .hero-card ul, .card ul {
  margin: 0;
  padding-left: 1.2rem;
}
.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 1.6rem;
}
.hero-cta-box {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero-cta-box a {
  font-size: 1.35rem;
  font-weight: 800;
}

.section { padding: 4.5rem 0; }
.section-alt { background: #eef6f8; }
.section-heading {
  margin-bottom: 2rem;
  max-width: 55rem;
}
.section-heading p:last-child { color: var(--text-soft); }
.cards {
  display: grid;
  gap: 1.25rem;
}
.three-up { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.two-up { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.price-card {
  position: relative;
}
.price-card-top {
  min-height: 1.8rem;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin-bottom: 0.6rem;
}
.featured {
  border-color: var(--brand);
  transform: translateY(-6px);
}
.badge {
  display: inline-block;
  margin-bottom: 0;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--brand-pale);
  color: var(--brand-dark);
  font-size: 0.82rem;
  font-weight: 700;
}
.price {
  font-size: 2.4rem;
  font-weight: 800;
  margin: 0.25rem 0;
}
.price-note, .card p { color: var(--text-soft); }
.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.price-list li:last-child { border-bottom: 0; }
.emphasis-card {
  background: linear-gradient(180deg, #ffffff, #f0fdfa);
}
.contact-box {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 1.5rem;
  align-items: start;
}
.enquiry-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
.enquiry-form label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
}
.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  font: inherit;
  background: #fff;
}
.form-note {
  margin-top: 0.9rem;
  font-size: 0.92rem;
  color: var(--text-soft);
}
.contact-card {
  background: var(--bg);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.contact-card p { color: rgba(255,255,255,0.85); }
.contact-actions {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.2rem;
}
.path-block + .path-block {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.audience-grid {
  align-items: stretch;
}
.audience-card {
  display: flex;
  flex-direction: column;
}
.button-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 1rem;
}
.button-outline {
  background: transparent;
  color: var(--brand-dark);
  border: 1px solid var(--brand);
  box-shadow: none;
}
.button-outline:hover {
  background: var(--brand-pale);
}
.latest-update-card {
  margin-bottom: 0.5rem;
}
.daily-link-box {
  margin-top: 1rem;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.daily-link-box p {
  margin: 0 0 0.75rem;
  color: rgba(255,255,255,0.86);
}
.insight-list-card h3 a {
  text-decoration: none;
}
.daily-brief-card ul,
.daily-brief-side ul {
  margin-top: 0.75rem;
}
.brief-date {
  margin-bottom: 0.5rem;
  color: var(--text-soft);
}
.insight-box {
  margin-top: 1.25rem;
  padding: 1.25rem;
  border-radius: 16px;
  background: linear-gradient(180deg, #f0fdfa, #ffffff);
  border: 1px solid var(--line);
}
.insight-box .button {
  margin-top: 0.75rem;
}
.site-footer {
  background: var(--bg);
  color: rgba(255,255,255,0.75);
  padding: 1.2rem 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .hero-grid,
  .three-up,
  .two-up,
  .contact-box {
    grid-template-columns: 1fr;
  }
  .featured { transform: none; }
}

@media (max-width: 640px) {
  .nav {
    flex-direction: column;
    align-items: stretch;
  }
  .nav-actions {
    width: 100%;
  }
  .nav-actions .button {
    flex: 1;
  }
}

@media (max-width: 560px) {
  .brand-sub { display: none; }
  .hero { padding-top: 3.5rem; }
  .section { padding: 3.5rem 0; }
  .price-list li {
    flex-direction: column;
    gap: 0.2rem;
  }
}
