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

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #111214;
  background-color: #ffffff;
  line-height: 1.5;
}

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

button {
  font-family: inherit;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: #4c4c4c;
  margin: 0 0 1rem;
}

.muted {
  color: #6d6f73;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #f0f0f0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

.logo {
  font-weight: 700;
  font-size: 1.1rem;
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: #3d3f45;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #111214;
  transition: width 0.2s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
}

.header-note {
  color: #5a5f6a;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}

.button-primary {
  background: #d9f278;
  color: #111214;
}

.button-primary:hover {
  filter: brightness(0.95);
}

.button-dark {
  background: #111214;
  color: #ffffff;
}

.button-dark:hover {
  background: #2a2c31;
}

.button-ghost {
  border-color: #d0d2d6;
  color: #111214;
}

.button-ghost:hover {
  border-color: #111214;
}

.hero {
  position: relative;
  padding: 6.5rem 0 9rem;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#e7e7e7 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.7;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  margin: 0 0 1.4rem;
}

.hero-description {
  max-width: 640px;
  margin: 0 auto 2rem;
  color: #5a5f6a;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-tiles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.tile {
  position: absolute;
  background: #f5f5f7;
  border-radius: 18px;
  border: 1px solid #ececec;
  box-shadow: 0 20px 50px rgba(17, 18, 20, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6a6d75;
  font-size: 0.85rem;
  padding: 1rem;
  text-align: center;
}

.tile-top-left {
  width: 220px;
  height: 200px;
  top: 12%;
  left: 8%;
}

.tile-top-center {
  width: 260px;
  height: 130px;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
}

.tile-top-right {
  width: 210px;
  height: 170px;
  top: 10%;
  right: 8%;
}

.tile-bottom-left {
  width: 240px;
  height: 180px;
  bottom: 8%;
  left: 6%;
}

.tile-bottom-center {
  width: 240px;
  height: 160px;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}

.tile-bottom-right {
  width: 240px;
  height: 160px;
  bottom: 7%;
  right: 5%;
}

.platform {
  padding: 5rem 0;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  align-items: start;
}

.platform-intro h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin: 0 0 1rem;
}

.link-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #1e64f0;
}

.platform-panel {
  background: #f6f7f9;
  border-radius: 20px;
  padding: 1.5rem;
  border: 1px solid #e5e6ea;
}

.platform-tabs {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.tab {
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid transparent;
  text-align: left;
  background: #ffffff;
  color: #72757c;
  font-weight: 600;
}

.tab.active {
  border-color: #cdd8ff;
  color: #1f3ea8;
  background: #eaf0ff;
}

.platform-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.4rem;
  border: 1px solid #e6e7ea;
}

.platform-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.platform-card-header h3 {
  margin: 0 0 0.4rem;
}

.platform-card-header p {
  margin: 0;
  color: #5f646f;
}

.icon-button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #d5d7dc;
  background: #ffffff;
  font-size: 1.1rem;
  cursor: pointer;
}

.platform-media {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin: 1.5rem 0;
}

.media-frame {
  background: #f2f3f5;
  border-radius: 12px;
  border: 1px dashed #cfd2d8;
  padding: 1.2rem;
  color: #6a6d75;
  text-align: center;
}

.platform-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.metric-card {
  background: #f9fafc;
  border-radius: 12px;
  padding: 0.9rem;
  border: 1px solid #e1e3e8;
}

.metric-label {
  font-size: 0.8rem;
  color: #6c707a;
  margin: 0 0 0.2rem;
}

.metric-value {
  margin: 0;
  font-weight: 700;
  font-size: 1.2rem;
}

.section {
  padding: 4.5rem 0;
}

.section-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.pill {
  padding: 0.6rem 1rem;
  border-radius: 999px;
  background: #f4f4f5;
  border: 1px solid #e4e4e7;
  font-weight: 600;
  color: #4c4f57;
}

.muted-section {
  background: #fafbfc;
}

.card-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.info-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.4rem;
  border: 1px solid #e6e7ea;
  box-shadow: 0 20px 40px rgba(17, 18, 20, 0.05);
}

.info-card h3 {
  margin-top: 0;
}

.resource-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.resource-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.4rem;
  border: 1px solid #e6e7ea;
}

.resource-thumb {
  height: 130px;
  border-radius: 12px;
  background: #f0f1f4;
  border: 1px dashed #cbd0d8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c707a;
  margin-bottom: 1rem;
}

.text-link {
  color: #1e64f0;
  font-weight: 600;
}

.cta {
  padding: 4rem 0;
  background: #111214;
  color: #ffffff;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.site-footer {
  padding: 3.5rem 0 2rem;
  background: #0f1012;
  color: #d4d6db;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.footer-links {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}

.footer-links h4 {
  margin: 0 0 0.8rem;
  color: #ffffff;
}

.footer-links a {
  display: block;
  color: #c3c6cc;
  margin-bottom: 0.5rem;
  font-size: 0.92rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid #23252b;
  margin-top: 2.5rem;
  font-size: 0.85rem;
}

@media (max-width: 960px) {
  .main-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero-tiles {
    display: none;
  }

  .hero {
    padding: 5rem 0 6rem;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .header-note {
    display: none;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }
}
