:root {
  --white: #FEFEFE;
  --gray: #333333;
  --cream: #FAF8F6;
  --beige: #EFEBE7;
  --yellow: #F9D166;
  --pink: #EFBAB6;
  --blue: #84BCE4;

  --text-main: var(--gray);
  --radius-lg: 18px;
  --shadow-soft: 0 24px 60px rgba(0, 0, 0, 0.06);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background: radial-gradient(circle at top, #ffffff 0, #faf8f6 40%, #efebe7 100%);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Layout helpers */

.shell {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 640px) {
  .shell {
    padding: 0 16px;
  }
}

/* Header / nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(250, 248, 246, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(239, 235, 231, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, var(--yellow), var(--blue));
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: radial-gradient(circle at 20% 0, #ffffff, transparent 60%);
  opacity: 0.7;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-size: 0.98rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.76rem;
  color: rgba(51, 51, 51, 0.7);
}

/* Logo integration */

.brand-with-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-icon {
  height: 34px;
  width: auto;
}

.brand-logo-slogan {
  height: 34px;
  width: auto;
}
.brand-logo-icon {
  height: 28px;
  width: auto;
}


@media (max-width: 640px) {
  .brand-logo-icon {
    height: 30px;
  }
  .brand-logo-slogan {
    height: 30px;
  }
}


.nav {
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 0 4px 12px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.9rem;
  color: rgba(51, 51, 51, 0.8);
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--blue), var(--yellow));
  transition: width 180ms ease-out;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  width: 100%;
}

.nav-link-external {
  color: #1f3f5c;
}

@media (max-width: 800px) {
  .header-inner {
    padding-inline: 16px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-list {
    position: absolute;
    right: 16px;
    top: 56px;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(254, 254, 254, 0.98);
    border-radius: 16px;
    padding: 10px 14px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    min-width: 180px;
    display: none;
  }

  .nav-list-open {
    display: flex;
  }

  .nav-link {
    padding: 4px 0;
  }
}

/* Hero */

.hero {
  padding: 64px 0 36px;
}

.hero-inner {
  max-width: 720px;
}

.hero-logo {
  margin-bottom: 14px;
}

.hero-logo img {
  max-width: 460px;
  height: auto;
  display: block;
}

@media (max-width: 480px) {
  .hero-logo img {
    max-width: 210px;
  }
}


.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(51, 51, 51, 0.6);
  margin-bottom: 10px;
}

.hero-title {
  font-size: clamp(2.2rem, 3.2vw + 1rem, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #111111;
  margin: 0 0 14px;
}

.hero-subtitle {
  margin: 0;
  font-size: 1rem;
  color: rgba(51, 51, 51, 0.82);
  max-width: 40rem;
}

.hero-meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(51, 51, 51, 0.7);
}

.hero-meta span {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(254, 254, 254, 0.9);
  border: 1px solid rgba(239, 235, 231, 0.9);
}

.hero-actions {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.link-primary {
  font-size: 0.95rem;
  font-weight: 500;
  color: #102c47;
  padding-bottom: 2px;
  border-bottom: 1.5px solid #102c47;
}

.link-muted {
  font-size: 0.9rem;
  color: rgba(51, 51, 51, 0.7);
  padding-bottom: 1px;
  border-bottom: 1px dashed rgba(51, 51, 51, 0.4);
}

/* Sections */

.section {
  padding: 48px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(51, 51, 51, 0.6);
  margin: 0 0 6px;
}

.section-title {
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  color: #111111;
  margin: 0;
}

.section-subtitle {
  margin: 0;
  max-width: 22rem;
  font-size: 0.95rem;
  color: rgba(51, 51, 51, 0.75);
}

@media (max-width: 800px) {
  .section-header {
    flex-direction: column;
  }
}

/* Cards */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 800px) {
  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.card {
  background: rgba(254, 254, 254, 0.97);
  border-radius: var(--radius-lg);
  padding: 20px 18px 18px;
  border: 1px solid rgba(239, 235, 231, 0.95);
  box-shadow: var(--shadow-soft);
}

.card-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(51, 51, 51, 0.55);
  margin: 0 0 6px;
}

.card-title {
  margin: 0 0 10px;
  font-size: 1.15rem;
  font-weight: 600;
  color: #111111;
}

.card-body {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(51, 51, 51, 0.85);
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: grid;
  gap: 7px;
  font-size: 0.9rem;
  color: rgba(51, 51, 51, 0.8);
}

.card-list li {
  display: flex;
  gap: 8px;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  margin-top: 6px;
  background: linear-gradient(135deg, var(--blue), var(--yellow));
  flex-shrink: 0;
}

.card-footnote {
  margin: 10px 0 0;
  font-size: 0.83rem;
  color: rgba(51, 51, 51, 0.6);
}

.card-pill {
  margin: 12px 0 0;
  display: inline-flex;
  align-items: center;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.82rem;
  background: rgba(239, 186, 182, 0.16);
  color: #7d3a34;
}

/* WACS Product Card */

.section-product {
  padding-bottom: 64px;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 24px;
  border-radius: 22px;
  background: rgba(254, 254, 254, 0.96);
  border: 1px solid rgba(239, 235, 231, 0.96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.06);
  padding: 20px 22px;
}

@media (max-width: 900px) {
  .product-card {
    grid-template-columns: minmax(0, 1fr);
    padding: 18px 16px;
  }
}

.product-card-media {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-tag {
  align-self: flex-start;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(51, 51, 51, 0.65);
  padding: 4px 9px;
  border-radius: 999px;
  border: 1px solid rgba(239, 235, 231, 0.9);
  background: rgba(250, 248, 246, 0.9);
}

.product-image-frame {
  border-radius: 18px;
  overflow: hidden;
  background: radial-gradient(circle at top, var(--blue), var(--gray));
}

.product-image-frame img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.product-card-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-label {
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(51, 51, 51, 0.6);
}

.product-title {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  color: #111111;
}

.product-subtitle {
  margin: 0;
  font-size: 0.96rem;
  color: rgba(51, 51, 51, 0.8);
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  font-size: 0.9rem;
}

.product-features li {
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(250, 248, 246, 0.95);
  border: 1px solid rgba(239, 235, 231, 0.95);
}

.product-features span {
  white-space: nowrap;
}

@media (max-width: 640px) {
  .product-features {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-features span {
    white-space: normal;
  }
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.83rem;
  color: rgba(51, 51, 51, 0.7);
}

.product-meta span {
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(254, 254, 254, 0.9);
  border: 1px solid rgba(239, 235, 231, 0.9);
}

.product-link {
  margin-top: 4px;
  align-self: flex-start;
  font-size: 0.95rem;
  font-weight: 500;
  color: #102c47;
  padding-bottom: 2px;
  border-bottom: 1.5px solid #102c47;
}


/* Footer */

.site-footer {
  border-top: 1px solid rgba(239, 235, 231, 0.9);
  padding: 16px 0 24px;
  background: rgba(250, 248, 246, 0.9);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(51, 51, 51, 0.7);
}

.footer-inner a {
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-style: dotted;
}

.footer-main,
.footer-secondary {
  margin: 0;
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
  }
}
