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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-md);
  line-height: var(--lh-body);
  color: var(--color-ink);
  background:
    radial-gradient(ellipse 80% 50% at 100% 0%, rgba(160, 196, 223, 0.28), transparent 55%),
    radial-gradient(ellipse 60% 40% at 0% 30%, rgba(226, 241, 255, 0.45), transparent 50%),
    var(--color-sky);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-deep);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--color-deep);
  outline-offset: 3px;
}

::selection {
  background: var(--color-frost);
  color: var(--color-ink);
}

h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

button,
input {
  font: inherit;
}

.gc-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.gc-container {
  width: min(100% - (var(--space-gutter) * 2), var(--container));
  margin-inline: auto;
}

.gc-container--center {
  text-align: center;
}

.gc-container--center .gc-section-head p,
.gc-container--center .gc-waitlist__inner > p {
  margin-inline: auto;
}

.gc-container--center .gc-section-head {
  justify-items: center;
  margin-inline: auto;
}

.gc-section-intro {
  display: block;
  max-width: 36rem;
  margin-bottom: clamp(3rem, 6vw, 4.75rem);
}

.gc-section-intro h2,
.gc-section-head h2,
.gc-waitlist__inner h2,
.gc-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.gc-section-intro h2 {
  font-size: var(--fs-display-md);
  line-height: var(--lh-snug);
}

.gc-section-head {
  display: grid;
  justify-items: start;
  gap: 1rem;
  max-width: 46rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.gc-section-head--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: none;
  text-align: center;
}

.gc-section-head h2 {
  font-size: var(--fs-display-md);
  line-height: var(--lh-title);
  max-width: 42.5rem;
}

.gc-section-head p,
.gc-waitlist__inner > p {
  max-width: 35rem;
  margin-top: 0.25rem;
  font-size: var(--fs-md);
  line-height: var(--lh-loose);
  color: var(--color-ink-muted);
}

.gc-section-rule {
  display: none;
}

.gc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--touch-min);
  padding: 0.875rem 2rem;
  border: 0;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: var(--fs-base);
  letter-spacing: 0.0125em;
  cursor: pointer;
  transition:
    transform var(--duration) var(--ease-out),
    background-color var(--duration) var(--ease-out),
    box-shadow var(--duration) var(--ease-out),
    color var(--duration) var(--ease-out);
}

.gc-btn:active {
  transform: translateY(0) scale(0.99);
  transition-duration: var(--duration-fast);
}

.gc-btn--primary {
  background: var(--color-deep);
  color: var(--color-sky);
  box-shadow: 0 10px 28px rgba(27, 75, 102, 0.18);
}

.gc-btn--primary:hover {
  color: var(--color-sky);
  background: var(--color-ink);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(15, 36, 50, 0.22);
}

.gc-btn--primary:active {
  background: var(--color-deep);
  box-shadow: 0 7px 18px rgba(15, 36, 50, 0.16);
  transform: translateY(0) scale(0.99);
}

.gc-frost-field {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.gc-frost-field__flake {
  position: absolute;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--color-frost);
  opacity: 0.35;
  animation: flake-drift 18s linear infinite;
}

.gc-frost-field__flake:nth-child(1) { left: 8%; top: -5%; animation-duration: 22s; animation-delay: -2s; }
.gc-frost-field__flake:nth-child(2) { left: 22%; top: -8%; width: 0.2rem; height: 0.2rem; animation-duration: 26s; animation-delay: -8s; opacity: 0.22; }
.gc-frost-field__flake:nth-child(3) { left: 48%; top: -4%; animation-duration: 19s; animation-delay: -4s; }
.gc-frost-field__flake:nth-child(4) { left: 67%; top: -10%; width: 0.28rem; height: 0.28rem; animation-duration: 24s; animation-delay: -12s; opacity: 0.28; }
.gc-frost-field__flake:nth-child(5) { left: 81%; top: -6%; animation-duration: 21s; animation-delay: -6s; }
.gc-frost-field__flake:nth-child(6) { left: 93%; top: -9%; width: 0.18rem; height: 0.18rem; animation-duration: 28s; animation-delay: -15s; opacity: 0.2; }

@keyframes flake-drift {
  0% { transform: translate3d(0, 0, 0); opacity: 0; }
  10% { opacity: 0.35; }
  90% { opacity: 0.2; }
  100% { transform: translate3d(-2rem, 110vh, 0); opacity: 0; }
}

.gc-site-header,
.gc-hero,
.gc-waitlist-why,
.gc-product,
.gc-compare,
.gc-features,
.gc-privacy,
.gc-audiences,
.gc-faq,
.gc-waitlist,
.gc-site-footer {
  position: relative;
  z-index: 1;
}

.gc-site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(234, 241, 245, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color var(--duration) var(--ease-out),
    background-color var(--duration) var(--ease-out);
}

.gc-site-header.is-scrolled {
  border-bottom-color: var(--color-deep-line);
  background: rgba(234, 241, 245, 0.92);
}

.gc-site-header__inner {
  width: min(100% - (var(--space-gutter) * 2), var(--container));
  margin-inline: auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.gc-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5625rem;
  color: var(--color-ink);
  min-height: var(--touch-min);
}

.gc-logo__text {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1rem + 0.6vw, 1.3125rem);
  letter-spacing: 0.01875em;
}

.gc-logo__mark {
  width: 1.5rem;
  height: 1.5rem;
  display: block;
  flex-shrink: 0;
  transition: transform var(--duration) var(--ease-out);
  transform-origin: 50% 50%;
}

.gc-logo:hover .gc-logo__mark,
.gc-logo:focus-visible .gc-logo__mark {
  transform: scale(1.06) rotate(-4deg);
}

.gc-nav {
  display: none;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  font-size: var(--fs-base);
  font-weight: 500;
}

.gc-nav a {
  position: relative;
  color: var(--color-ink);
  min-height: var(--touch-min);
  display: inline-flex;
  align-items: center;
}

.gc-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0.5rem;
  left: 0;
  height: 1px;
  background: var(--color-deep);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--duration) var(--ease-out);
}

.gc-nav a:hover::after,
.gc-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.gc-nav-toggle {
  width: var(--touch-min);
  height: var(--touch-min);
  border: 0;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem;
  cursor: pointer;
  border-radius: var(--radius-pill);
  transition: background-color var(--duration-fast) var(--ease-out),
    box-shadow var(--duration-fast) var(--ease-out);
}

.gc-nav-toggle:hover,
.gc-nav-toggle:focus-visible {
  background: var(--color-deep-wash);
  box-shadow: inset 0 0 0 1px var(--color-deep-line);
}

.gc-nav-toggle__bar {
  display: block;
  width: 1.25rem;
  height: 0.125rem;
  background: var(--color-ink);
  border-radius: var(--radius-pill);
  transition: transform var(--duration) var(--ease-out), opacity var(--duration) var(--ease-out);
}

.gc-nav-toggle[aria-expanded="true"] .gc-nav-toggle__bar:first-child {
  transform: translateY(0.26rem) rotate(45deg);
}

.gc-nav-toggle[aria-expanded="true"] .gc-nav-toggle__bar:last-child {
  transform: translateY(-0.26rem) rotate(-45deg);
}

.gc-nav-drawer {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: calc(100dvh - var(--header-h));
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem var(--space-gutter) 1.5rem;
  background: rgba(234, 241, 245, 0.98);
  border-bottom: 1px solid var(--color-deep-line);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-0.75rem);
  transition: opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-out),
    visibility 0s linear var(--duration);
}

.gc-nav-drawer.gc-is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition-delay: 0s;
}

.gc-nav-drawer a {
  display: flex;
  align-items: center;
  min-height: var(--touch-min);
  color: var(--color-ink);
  font-weight: 500;
  font-size: var(--fs-lg);
  opacity: 0;
  transform: translateY(0.5rem);
  transition: color var(--duration-fast) var(--ease-out), opacity var(--duration) var(--ease-out),
    transform var(--duration) var(--ease-out);
}

.gc-nav-drawer.gc-is-open a {
  opacity: 1;
  transform: translateY(0);
}

.gc-nav-drawer.gc-is-open a:nth-child(2) {
  transition-delay: 0s, 45ms, 45ms;
}

.gc-nav-drawer.gc-is-open a:nth-child(3) {
  transition-delay: 0s, 90ms, 90ms;
}

.gc-nav-drawer.gc-is-open a:nth-child(4) {
  transition-delay: 0s, 135ms, 135ms;
}

.gc-nav-drawer .gc-btn {
  margin-top: 0.75rem;
  width: 100%;
  color: var(--color-sky);
  transition: background-color var(--duration) var(--ease-out),
    box-shadow var(--duration) var(--ease-out), color var(--duration-fast) var(--ease-out),
    opacity var(--duration) var(--ease-out), transform var(--duration) var(--ease-out);
}

.gc-nav-drawer.gc-is-open .gc-btn {
  transition-delay: 0s, 0s, 0s, 135ms, 135ms;
}

.gc-nav-drawer.gc-is-open .gc-btn:hover,
.gc-nav-drawer.gc-is-open .gc-btn:active {
  transition-delay: 0s;
}

body.nav-open {
  overflow: hidden;
}

.gc-hero {
  display: grid;
  gap: 2.5rem;
  width: min(100% - (var(--space-gutter) * 2), var(--container));
  margin: 0 auto;
  padding: 1.5rem 0 clamp(4rem, 10vw, 5.25rem);
  align-items: center;
  min-height: min(100vh - var(--header-h), 46rem);
  min-height: min(100dvh - var(--header-h), 46rem);
}

.gc-hero__copy {
  max-width: 28rem;
  padding-bottom: clamp(0rem, 2vw, 2rem);
}

.gc-hero__title {
  font-size: var(--fs-hero);
  line-height: var(--lh-tight);
  margin-bottom: 1.375rem;
}

.gc-hero__lead {
  max-width: 23.75rem;
  margin-bottom: 2rem;
  color: var(--color-ink-soft);
  font-size: var(--fs-md);
  line-height: var(--lh-body);
}

.gc-hero__actions {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  flex-wrap: wrap;
}

.gc-hero__badge {
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--color-deep);
}

.gc-hero__visual {
  position: relative;
  min-height: 22rem;
  overflow: hidden;
}

.gc-blob {
  overflow: hidden;
  background: var(--color-sky-soft);
  will-change: border-radius;
}

.gc-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gc-blob--hero {
  width: min(100%, 38rem);
  aspect-ratio: 4 / 5;
  margin-left: auto;
  border-radius: var(--blob-hero);
  animation: morph-hero var(--duration-morph) ease-in-out infinite alternate;
  box-shadow: 0 30px 80px rgba(15, 36, 50, 0.12);
}

.gc-product-photo {
  width: min(100%, 52rem);
  margin-inline: auto;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius-3xl);
  background: var(--color-sky-soft);
  box-shadow: 0 24px 60px rgba(15, 36, 50, 0.1);
}

.gc-product-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

@keyframes morph-hero {
  0% { border-radius: var(--blob-hero); }
  100% { border-radius: var(--blob-hero-alt); }
}

.gc-waitlist-why,
.gc-product,
.gc-compare,
.gc-features,
.gc-privacy,
.gc-audiences,
.gc-faq,
.gc-waitlist {
  padding-block: var(--space-section);
}

.gc-waitlist-why__grid {
  display: grid;
  gap: clamp(3rem, 5vw, 5.5rem);
  align-items: center;
}

.gc-pass-stage {
  position: relative;
  width: min(100%, 26.25rem);
  height: auto;
  aspect-ratio: 1586 / 992;
}

.gc-pass-shadow {
  position: absolute;
  inset: 14% 7% 4%;
  background: var(--color-ink);
  border-radius: 50%;
  opacity: 0.24;
  filter: blur(1.5rem);
  transform: translateY(1.25rem);
}

.gc-pass-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  background-color: var(--color-ink);
  background-image:
    linear-gradient(90deg, rgba(15, 36, 50, 0.22), rgba(15, 36, 50, 0.02) 58%),
    url("../images/glaciera-pass-surface.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: var(--color-sky);
  border: 1px solid rgba(226, 241, 255, 0.4);
  border-radius: 1.375rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: rotate(-1deg);
  transition: transform var(--duration) var(--ease-out);
  box-shadow: 0 24px 55px rgba(15, 36, 50, 0.18);
}

.gc-pass-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(234, 241, 245, 0.12);
  pointer-events: none;
}

.gc-pass-card:hover,
.gc-pass-card:focus-within {
  transform: rotate(0deg) translateY(-0.5rem);
}

.gc-pass-card__top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.gc-pass-card__label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-frost-light);
  opacity: 0.82;
  text-shadow: 0 1px 12px rgba(15, 36, 50, 0.5);
}

.gc-pass-card__top svg {
  width: 2.25rem;
  height: 2.25rem;
  padding: 0.4rem;
  border: 1px solid rgba(226, 241, 255, 0.34);
  border-radius: var(--radius-pill);
  background: rgba(15, 36, 50, 0.32);
  backdrop-filter: blur(8px);
}

.gc-pass-card__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.125rem);
  font-weight: 400;
  color: var(--color-sky);
  text-shadow: 0 2px 20px rgba(15, 36, 50, 0.72);
}

.gc-benefit-list {
  display: grid;
  gap: 0.25rem;
}

.gc-benefit-item {
  display: grid;
  grid-template-columns: 2.5rem minmax(0, 1fr);
  align-items: start;
  gap: 1.125rem;
  padding: 1rem;
  border-bottom: 1px solid var(--color-deep-line);
  border-radius: var(--radius-sm);
  transition: background-color var(--duration) var(--ease-out);
}

.gc-benefit-item:last-child {
  border-bottom-color: transparent;
}

.gc-benefit-item:hover,
.gc-benefit-item:focus-within {
  background: var(--color-deep-wash);
}

.gc-benefit-item__num {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--color-deep);
  border: 1px solid var(--color-deep-line-strong);
  border-radius: var(--radius-pill);
  background: rgba(234, 241, 245, 0.54);
}

.gc-benefit-item > div {
  min-width: 0;
  padding: 0;
}

.gc-benefit-item h3 {
  font-size: var(--fs-md);
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.gc-benefit-item p {
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--color-ink-faint);
}

.gc-compare__grid {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
  max-width: 73.75rem;
  margin-inline: auto;
}

.gc-compare-panel,
.gc-compare-vault {
  padding: clamp(2.5rem, 5vw, 5.375rem) clamp(1.75rem, 4vw, 4.75rem);
}

.gc-compare-panel {
  background: var(--color-deep-panel);
  border: 1px solid var(--color-deep-line);
  border-radius: 1.125rem;
}

.gc-compare-panel h3,
.gc-compare-vault h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.875rem;
}

.gc-compare-panel ul,
.gc-compare-vault ul {
  display: grid;
  gap: 1rem;
  font-size: var(--fs-base);
  line-height: 1.55;
}

.gc-compare-panel li {
  color: var(--color-ink-faint);
}

.gc-compare__divider {
  display: none;
  width: 1px;
  height: 60%;
  background: var(--color-deep);
  opacity: 0.4;
  justify-self: center;
}

.gc-compare-vault {
  background: var(--color-ink);
  color: var(--color-sky);
  border-radius: 1.125rem;
  box-shadow: 0 18px 44px rgba(15, 36, 50, 0.16);
}

.gc-compare-vault li {
  color: rgba(234, 241, 245, 0.88);
}

.gc-stat-pill {
  display: inline-flex;
  align-items: center;
  margin-top: 2.5rem;
  border: 1px solid var(--color-deep-line-strong);
  border-radius: var(--radius-pill);
  padding: 0.875rem 1.75rem;
  font-size: 0.8125rem;
  color: var(--color-ink-faint);
  background: rgba(234, 241, 245, 0.55);
  backdrop-filter: blur(8px);
}

.gc-features-grid,
.gc-privacy-grid,
.gc-audiences-grid {
  display: grid;
  gap: 1.75rem;
}

.gc-feature-card,
.gc-privacy-card {
  position: relative;
  overflow: hidden;
  padding: 1.875rem 1.75rem 2rem;
  border: 1px solid var(--color-deep-line-mid);
  border-radius: var(--radius-lg);
  background: rgba(234, 241, 245, 0.35);
  text-align: left;
  transition:
    border-color var(--duration) var(--ease-out),
    transform var(--duration) var(--ease-out),
    background-color var(--duration) var(--ease-out);
}

.gc-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 100% 0%, rgba(160, 196, 223, 0.2), transparent 44%);
}

.gc-feature-card:hover,
.gc-privacy-card:hover {
  border-color: var(--color-deep-line-hover);
  transform: translateY(-4px);
  background: rgba(234, 241, 245, 0.7);
}

.gc-feature-card {
  display: flex;
  min-height: 13.5rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: clamp(1.75rem, 3vw, 2.25rem);
}

.gc-feature-card__icon,
.gc-privacy-card__icon {
  display: block;
  flex: 0 0 auto;
  margin-bottom: 1.25rem;
  color: var(--color-deep);
}

.gc-feature-card h3,
.gc-privacy-card h3,
.gc-audience h3 {
  position: relative;
  font-weight: 400;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.gc-feature-card h3 {
  margin-bottom: 0.75rem;
}

.gc-privacy-card h3 {
  font-weight: 600;
  font-size: 1rem;
}

.gc-audience h3 {
  font-weight: 500;
  font-size: 1.1875rem;
}

.gc-feature-card p,
.gc-privacy-card p,
.gc-audience p {
  position: relative;
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--color-ink-faint);
}

.gc-privacy-card {
  background: var(--color-deep-panel-strong);
  border-radius: 1.125rem;
  padding: 2.25rem;
}

.gc-privacy-card svg,
.gc-privacy-card__icon {
  margin-bottom: 1.25rem;
  color: var(--color-deep);
}

.gc-audience {
  display: grid;
  gap: 1.25rem;
  text-align: left;
  min-width: 0;
}

.gc-audience__media {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--color-sky-soft);
}

.gc-audience__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gc-audience__copy h3 {
  margin-bottom: 0.5rem;
}

.gc-faq-list {
  max-width: var(--container-faq);
  margin-inline: auto;
  text-align: left;
  display: grid;
  gap: 0.875rem;
}

.gc-faq-item {
  background: var(--color-white-soft);
  border: 1px solid var(--color-deep-line);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: background-color var(--duration) var(--ease-out),
    border-color var(--duration) var(--ease-out), box-shadow var(--duration) var(--ease-out);
}

.gc-faq-item:hover,
.gc-faq-item:focus-within,
.gc-faq-item.gc-is-open {
  border-color: var(--color-deep-line-hover);
}

.gc-faq-item.gc-is-open {
  background: color-mix(in srgb, var(--color-white-soft) 78%, var(--color-frost-light));
  box-shadow: 0 12px 30px rgba(15, 36, 50, 0.06);
}

.gc-faq-item__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: var(--touch-min);
  padding: 1.375rem 1.5rem;
  border: 0;
  background: transparent;
  color: var(--color-ink);
  text-align: left;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  transition: color var(--duration-fast) var(--ease-out);
}

.gc-faq-item__trigger:hover,
.gc-faq-item__trigger:focus-visible {
  color: var(--color-deep);
}

.gc-faq-item__icon {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-deep);
  font-size: 1.125rem;
  line-height: 1;
  transition: color var(--duration-fast) var(--ease-out), transform 0.35s var(--ease-out);
}

.gc-faq-item.gc-is-open .gc-faq-item__icon {
  transform: rotate(45deg);
}

.gc-faq-item__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease-out);
}

.gc-faq-item.gc-is-open .gc-faq-item__body {
  grid-template-rows: 1fr;
}

.gc-faq-item__body > p {
  overflow: hidden;
  padding: 0 1.5rem;
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--color-ink-muted);
  max-width: 40rem;
  opacity: 0;
  transition: opacity 0.3s var(--ease-out), padding 0.35s var(--ease-out);
}

.gc-faq-item.gc-is-open .gc-faq-item__body > p {
  padding-bottom: 1.375rem;
  opacity: 1;
}

.gc-waitlist__inner {
  max-width: 32rem;
  margin-inline: auto;
}

.gc-waitlist__inner h2 {
  font-size: var(--fs-display-lg);
  line-height: var(--lh-title);
  margin-bottom: 1.25rem;
}

.gc-waitlist-form {
  display: grid;
  gap: 0.875rem;
  margin-top: 2.5rem;
}

.gc-waitlist-form input {
  width: 100%;
  min-height: var(--touch-min);
  font-size: 1rem;
  padding: 0.875rem 1.25rem;
  border: 1px solid var(--color-deep-line-strong);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.55);
  color: var(--color-ink);
  transition: background-color var(--duration-fast) var(--ease-out),
    border-color var(--duration-fast) var(--ease-out), box-shadow var(--duration) var(--ease-out);
}

.gc-waitlist-form input::placeholder {
  color: var(--color-ink-whisper);
}

.gc-waitlist-form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--color-deep);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-frost) 38%, transparent),
    0 10px 28px rgba(27, 75, 102, 0.1);
}

.gc-waitlist-form input:user-invalid {
  border-color: #a73c45;
  box-shadow: 0 0 0 4px rgba(167, 60, 69, 0.1);
}

.gc-waitlist-form .gc-btn {
  width: 100%;
  padding-inline: 2.5rem;
  font-size: var(--fs-md);
}

.gc-waitlist__note {
  margin-top: 1rem;
  font-size: var(--fs-xs);
  color: var(--color-ink-whisper);
}

.gc-waitlist__note.is-success {
  color: var(--color-deep);
  font-weight: 500;
  animation: glaciera-state-in var(--duration) var(--ease-arrive) both;
}

@keyframes glaciera-state-in {
  from {
    opacity: 0;
    transform: translateY(0.375rem);
  }
}

.gc-site-footer {
  border-top: 1px solid var(--color-deep-line);
}

.gc-site-footer__inner {
  width: min(100% - (var(--space-gutter) * 2), var(--container));
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 2rem 0;
  font-size: var(--fs-xs);
  color: var(--color-ink-ghost);
}

.gc-site-footer__brand {
  font-family: var(--font-display);
  color: var(--color-ink);
  opacity: 0.7;
}

.gc-reveal {
  opacity: 1;
  transform: none;
  filter: none;
  clip-path: none;
}

.gc-js .gc-reveal {
  opacity: 0;
  transform: translateY(1.75rem);
  filter: blur(6px);
  transition:
    opacity 0.8s var(--ease-arrive),
    transform 0.8s var(--ease-arrive),
    filter 0.8s var(--ease-arrive);
}

.gc-js .gc-hero .gc-reveal {
  opacity: 1;
  transform: none;
  filter: none;
}

.gc-js .gc-reveal.is-in {
  opacity: 1;
  transform: none;
  filter: none;
}

.gc-js .gc-hero__copy.reveal {
  animation: glaciera-hero-copy 720ms var(--ease-arrive) 50ms both;
}

.gc-js .gc-hero__visual.reveal {
  animation: glaciera-hero-visual 820ms var(--ease-arrive) 140ms both;
}

@keyframes glaciera-hero-copy {
  from {
    opacity: 0;
    transform: translateY(1rem);
    filter: blur(4px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@keyframes glaciera-hero-visual {
  from {
    opacity: 0;
    transform: translateY(0.75rem) scale(0.985);
    filter: blur(5px);
  }
  to {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

.gc-js .gc-feature-card.reveal:nth-child(1) { transition-delay: 0.02s; }
.gc-js .gc-feature-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.gc-js .gc-feature-card.reveal:nth-child(3) { transition-delay: 0.14s; }
.gc-js .gc-feature-card.reveal:nth-child(4) { transition-delay: 0.2s; }
.gc-js .gc-feature-card.reveal:nth-child(5) { transition-delay: 0.26s; }
.gc-js .gc-feature-card.reveal:nth-child(6) { transition-delay: 0.32s; }

.gc-js .gc-privacy-card.reveal:nth-child(1) { transition-delay: 0.04s; }
.gc-js .gc-privacy-card.reveal:nth-child(2) { transition-delay: 0.12s; }
.gc-js .gc-privacy-card.reveal:nth-child(3) { transition-delay: 0.2s; }

.gc-js .gc-audience.reveal:nth-child(1) { transition-delay: 0.04s; }
.gc-js .gc-audience.reveal:nth-child(2) { transition-delay: 0.14s; }
.gc-js .gc-audience.reveal:nth-child(3) { transition-delay: 0.24s; }

.gc-js .gc-section-intro.is-in .gc-section-rule,
.gc-js .gc-section-head.is-in .gc-section-rule {
  animation: rule-draw 0.7s var(--ease-arrive) both;
}

@keyframes rule-draw {
  from { transform: scaleY(0); opacity: 0; }
  to { transform: scaleY(1); opacity: 1; }
}

.gc-js .gc-section-head--center.is-in .gc-section-rule--center {
  animation: rule-draw-x 0.7s var(--ease-arrive) both;
}

@keyframes rule-draw-x {
  from { transform: scaleX(0); opacity: 0; }
  to { transform: scaleX(1); opacity: 1; }
}

@media (min-width: 577px) {
  .gc-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gc-privacy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gc-waitlist-form {
    grid-template-columns: 1fr auto;
    align-items: stretch;
  }

  .gc-waitlist-form .gc-btn {
    width: auto;
  }

  .gc-audience {
    grid-template-columns: minmax(10rem, 14rem) minmax(0, 1fr);
    align-items: center;
    gap: 1.5rem;
  }

  .gc-audience__media {
    aspect-ratio: 1;
  }
}

@media (min-width: 768px) {
  .gc-nav {
    display: flex;
  }

  .gc-nav-toggle {
    display: none;
  }

  .gc-nav-drawer,
  .gc-nav-drawer.gc-is-open {
    display: none;
  }

  .gc-hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2rem;
    padding-top: 0.5rem;
  }

  .gc-hero__visual {
    min-height: 24rem;
  }

  .gc-blob--hero {
    width: min(100%, 32rem);
    margin-left: auto;
  }
}

@media (min-width: 993px) {
  .gc-hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2rem;
    padding-top: 0.5rem;
  }

  .gc-hero__visual {
    min-height: 28rem;
  }

  .gc-blob--hero {
    width: min(100%, 36rem);
    margin-right: -1rem;
  }

  .gc-waitlist-why__grid {
    grid-template-columns: minmax(0, 26.25rem) minmax(0, 1fr);
  }

  .gc-compare__grid {
    grid-template-columns: 1fr 1px 1fr;
    gap: 2.75rem;
  }

  .gc-compare__divider {
    display: block;
  }

  .gc-features-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
  }

  .gc-privacy-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .gc-audiences-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }

  .gc-audience {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 1.25rem;
  }

  .gc-audience__media {
    aspect-ratio: 4 / 3;
  }
}

@media (min-width: 1441px) {
  .gc-container,
  .gc-site-header__inner,
  .gc-site-footer__inner,
  .gc-hero {
    width: min(100% - (var(--space-gutter) * 2), var(--container-ultrawide));
  }

  .gc-hero__copy {
    max-width: 32rem;
  }

  .gc-blob--hero {
    width: min(100%, 38rem);
  }
}

@media (max-width: 576px) {
  .gc-hero {
    min-height: auto;
    padding-top: 1rem;
  }

  .gc-hero__visual {
    min-height: 18rem;
    order: -1;
  }

  .gc-blob--hero {
    width: 100%;
    aspect-ratio: 4 / 5;
    margin-inline: auto;
  }

  .gc-stat-pill {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .gc-pass-stage {
    width: min(calc(100% - 1rem), 26.25rem);
    height: auto;
    margin-inline: auto;
  }

  .gc-pass-card {
    padding: 1.75rem;
  }

  .gc-benefit-item {
    grid-template-columns: 2.5rem minmax(0, 1fr);
  }

  .gc-benefit-item > div {
    padding-left: 0;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .gc-js .gc-reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .gc-frost-field {
    display: none;
  }
}

:where(html) { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
:where(body) { min-width: 320px; line-height: var(--ui-leading-body); }
:where(main, header, footer, section, article, nav, form, .gc-container, .gc-wrap, [class*="grid"], [class*="content"]) { min-width: 0; }
:where(img, svg, video, canvas) { max-inline-size: 100%; }
:where(.gc-logo__mark, .gc-brand__mark, .gc-brand-mark, .gc-logo-mark) { flex: 0 0 auto; display: block; vertical-align: middle; }
:where(h1, h2) { text-wrap: balance; }
:where(h3, h4, h5, h6) { text-wrap: pretty; }
:where(h1:not([class])) { font-size: var(--ui-type-h1); line-height: var(--ui-leading-heading); letter-spacing: var(--ui-tracking-heading); }
:where(h2:not([class])) { font-size: var(--ui-type-h2); line-height: var(--ui-leading-heading); letter-spacing: var(--ui-tracking-heading); }
:where(h3:not([class])) { font-size: var(--ui-type-h3); line-height: 1.2; }
:where(p, li) { overflow-wrap: anywhere; }
:where(a, button, input, select, textarea, summary) { -webkit-tap-highlight-color: transparent; }
:where(a, button) { transition: color var(--ui-duration) var(--ui-ease), background-color var(--ui-duration) var(--ui-ease), border-color var(--ui-duration) var(--ui-ease), box-shadow var(--ui-duration) var(--ui-ease), transform var(--ui-duration) var(--ui-ease), opacity var(--ui-duration) var(--ui-ease); }
:where(a, button, input, select, textarea, summary):focus-visible { outline: 2px solid var(--ui-focus-color); outline-offset: 3px; }
:where(section[id]) { scroll-margin-top: calc(var(--header-height, var(--header-h, 4rem)) + var(--ui-space-4)); }
@media (max-width: 767px) {
  :where(.gc-site-header__inner, .gc-site-header__bar, .gc-header-inner) { gap: var(--ui-space-4); }
  :where(.gc-btn, button, input, select, textarea) { max-inline-size: 100%; }
}
