:root {
  --blue-800: #194960;
  --blue-600: #226280;
  --blue-500: #3ab0db;
  --blue-300: #b9e6f4;
  --blue-200: #ceeff8;
  --blue-100: #e3f8fc;
  --yellow-800: #bf9217;
  --yellow-600: #cca31b;
  --yellow-500: #fdd106;
  --yellow-300: #f4e7b9;
  --yellow-200: #f8efce;
  --yellow-100: #fcf7e3;
  --g800: #20272b;
  --g700: #3e494f;
  --g600: #626b6f;
  --g500: #848a8d;
  --g400: #a4a9ab;
  --g300: #c3c6c7;
  --g200: #e1e2e3;
  --g100: #f0f1f1;
  --g0: #ffffff;
  /* Semantic aliases */
  --text-heading: var(--blue-800);
  --text-body: var(--g800);
  --text-muted: var(--g600);
  --link: var(--blue-500);
  --link-hover: var(--blue-600);
  --hero-bg: var(--yellow-500);
  --feature-title: var(--blue-500);
  --section-muted: var(--g100);
  --container: min(1120px, calc(100% - 3rem));
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--text-body);
}

h1, h2, h3 {
  color: var(--text-heading);
}

a {
  color: var(--link);
}

a:hover {
  color: var(--link-hover);
}

#ig-viewer.explore.container {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0;
}

div.segment-content {
  padding-top: 0px !important;
}

/* —— Hero —— */
.hero {
  background: var(--hero-bg);
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(3rem, 7vw, 4.5rem);
}

.hero__inner {
  max-width: 52rem;
}

.hero__eyebrow {
  margin: 0 0 0.75rem;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-heading);
  letter-spacing: 0.01em;
}

.hero__title {
  margin: 0 0 1.75rem;
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  line-height: 1.12;
  font-weight: 800;
  color: var(--text-heading);
}

/* —— Trial section —— */
.trial {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
  background: var(--section-muted);
}

.trial__grid {
  display: grid;
  grid-template-columns: 1fr min(380px, 100%);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (max-width: 900px) {
  .trial__grid {
    grid-template-columns: 1fr;
  }
}

.trial__heading {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--text-heading);
}

.trial__lead {
  margin: 0 0 1rem;
  font-weight: 600;
  color: var(--text-body);
}

.trial__list {
  margin: 0;
  padding-left: 1.25rem;
}

.trial__list li {
  margin-bottom: 0.5rem;
}

.trial__list li:last-child {
  margin-bottom: 0;
}

.trial img {
  box-shadow: #cbcbcb 4px 4px 8px 0;
  max-width: 400px;
}

/* —— Features —— */
.features {
  padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(4rem, 8vw, 5.5rem);
}

.features__title {
  margin: 0 0 2rem;
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: var(--text-heading);
  max-width: 40rem;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 2.5rem;
}

@media (max-width: 900px) {
  .features__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .features__grid {
    grid-template-columns: 1fr;
  }
}

.feature__name {
  margin: 0 0 0.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--feature-title);
  line-height: 1.35;
}

.feature__text {
  margin: 0;
  font-size: 1.3rem;
  color: var(--text-body);
}