.home-page main {
  padding-bottom: clamp(4rem, 8vw, 6rem);
}

.home-page .site-header {
  width: 100vw;
  max-width: 100vw;
  margin: 0;
  margin-left: calc(50% - 50vw);
  padding: 0;
}

.site-header-shell {
  width: var(--content-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-5);
  padding: 1rem 0;
  position: relative;
}

.home-page .site-nav {
  margin-left: auto;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-strong);
  backdrop-filter: blur(14px);
  transition:
    border-color 0.25s ease,
    background-color 0.25s ease,
    transform 0.2s ease;
}

.nav-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle-line {
  position: absolute;
  left: 50%;
  width: 1.15rem;
  height: 2px;
  border-radius: var(--radius-pill);
  background: currentColor;
  transform-origin: center;
  transition:
    transform 0.24s ease,
    opacity 0.18s ease,
    width 0.18s ease;
}

.nav-toggle-line:nth-of-type(2) {
  transform: translate(-50%, -0.36rem);
}

.nav-toggle-line:nth-of-type(3) {
  transform: translate(-50%, 0);
}

.nav-toggle-line:nth-of-type(4) {
  transform: translate(-50%, 0.36rem);
}

.site-header[data-menu-open="true"] .nav-toggle-line:nth-of-type(2) {
  transform: translate(-50%, 0) rotate(45deg);
}

.site-header[data-menu-open="true"] .nav-toggle-line:nth-of-type(3) {
  opacity: 0;
  width: 0.72rem;
}

.site-header[data-menu-open="true"] .nav-toggle-line:nth-of-type(4) {
  transform: translate(-50%, 0) rotate(-45deg);
}

.ambient {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
}

.ambient-a {
  inset: 10% auto auto -12%;
  width: 28rem;
  height: 28rem;
  background: rgba(144, 184, 255, 0.18);
}

.ambient-b {
  inset: auto -10% 10% auto;
  width: 24rem;
  height: 24rem;
  background: rgba(143, 230, 193, 0.14);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: clamp(0.35rem, 1.8vw, 0.9rem) 0 clamp(4.5rem, 8vw, 6rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(8, 10, 16, 0.26), rgba(8, 10, 16, 0.26)),
    url("/assets/images/vpnphoto.png") center center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at center, rgba(7, 8, 13, 0.08) 0%, rgba(7, 8, 13, 0.45) 44%, rgba(7, 8, 13, 0.88) 100%),
    linear-gradient(180deg, rgba(7, 8, 13, 0.46) 0%, rgba(7, 8, 13, 0.18) 20%, rgba(7, 8, 13, 0.9) 100%);
}

.hero-shell {
  width: min(1260px, calc(100vw - 2rem));
  min-height: calc(100svh - var(--header-offset));
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.hero-copy {
  max-width: 52rem;
  display: grid;
  gap: var(--space-3);
  justify-items: center;
  text-align: center;
  padding: clamp(1.1rem, 2.8vw, 2rem) 0 clamp(3rem, 7vw, 5rem);
}

.hero-copy h1 {
  max-width: 15ch;
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  line-height: 1.04;
  text-wrap: balance;
  text-shadow: 0 14px 40px rgba(0, 0, 0, 0.36);
}

.hero-title-seo {
  width: fit-content;
  max-width: 100%;
  font-size: clamp(2.45rem, 5.45vw, 4.55rem);
  line-height: 1.02;
}

.hero-title-line {
  display: block;
  font-family: inherit;
  font-weight: inherit;
  white-space: nowrap;
}

.hero-brandline {
  color: var(--text-faint);
  font-size: 0.88rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-text {
  max-width: 32rem;
  margin-top: var(--space-1);
  font-size: clamp(1.03rem, 1.3vw, 1.15rem);
  line-height: 1.72;
  color: rgba(245, 243, 239, 0.86);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-top: var(--space-5);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 0;
  margin: var(--space-6) 0 0;
  list-style: none;
  position: relative;
  z-index: 1;
  width: min(52rem, 100%);
}

.hero-meta li {
  min-height: 4.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 1.1rem;
  border-radius: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(11, 13, 20, 0.56), rgba(11, 13, 20, 0.2));
  backdrop-filter: blur(12px);
  color: var(--text-strong);
  font-size: 0.92rem;
  line-height: 1.4;
}

.hero-meta li:nth-child(2) {
  background: linear-gradient(180deg, rgba(143, 230, 193, 0.14), rgba(255, 255, 255, 0.02));
}

.hero-meta li:nth-child(3) {
  background: linear-gradient(180deg, rgba(240, 196, 138, 0.12), rgba(255, 255, 255, 0.02));
}

.story-block {
  padding-top: clamp(3rem, 8vw, 5.5rem);
}

.story-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.story-head {
  margin-bottom: 0;
}

.story-head h2 {
  max-width: 11ch;
}

.story-title-seo {
  max-width: 16.5ch;
  font-size: clamp(1.85rem, 3.4vw, 2.8rem);
  line-height: 1.08;
}

.timeline-list {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: var(--space-5);
}

.timeline-list article {
  min-height: 11.5rem;
  display: grid;
  gap: var(--space-3);
  padding: var(--space-5);
  border-radius: 1.65rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
}

.timeline-list article:first-child {
  grid-row: span 2;
  gap: var(--space-2);
  align-content: center;
  padding: clamp(1.5rem, 3vw, 2rem);
  background: linear-gradient(180deg, rgba(24, 30, 43, 0.94), rgba(13, 16, 24, 0.98));
}

.timeline-list article:first-child span {
  margin-bottom: 0.2rem;
}

.timeline-list article:first-child p {
  max-width: 24rem;
}

.timeline-list article:nth-child(2) {
  background: linear-gradient(180deg, rgba(13, 27, 28, 0.86), rgba(10, 14, 18, 0.96));
  border-color: rgba(143, 230, 193, 0.15);
}

.timeline-list article:nth-child(3) {
  min-height: auto;
  align-self: end;
  padding: var(--space-3) 0 var(--space-3) var(--space-5);
  border-radius: 0;
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
}

.timeline-list span {
  display: inline-block;
  margin-bottom: var(--space-2);
  color: var(--accent-strong);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
}

.countries-section {
  padding-top: clamp(4rem, 8vw, 6rem);
}

.countries-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.countries-head {
  margin-bottom: 0;
}

.section-note {
  max-width: 28rem;
  font-size: 0.98rem;
  color: var(--text-faint);
}

.countries-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.countries-strip span {
  min-height: 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.15rem 1.2rem;
  border-radius: 1.45rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  text-align: center;
}

.countries-strip span strong {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1;
}

.countries-strip span small {
  color: var(--text-strong);
  font-size: 0.98rem;
}

.countries-strip span:first-child,
.countries-strip span:last-child {
  grid-column: span 2;
}

.countries-strip span:nth-child(2),
.countries-strip span:nth-child(5) {
  background: linear-gradient(180deg, rgba(143, 230, 193, 0.14), rgba(255, 255, 255, 0.02));
}

.countries-strip span:nth-child(4) {
  background: linear-gradient(180deg, rgba(240, 196, 138, 0.12), rgba(255, 255, 255, 0.02));
}

.trial-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: var(--space-6);
  align-items: center;
  margin-top: clamp(1rem, 4vw, 2rem);
  padding: clamp(1.75rem, 4vw, 2.6rem);
  border-radius: clamp(1.8rem, 4vw, 2.5rem);
  background:
    radial-gradient(circle at left top, rgba(240, 196, 138, 0.18), transparent 36%),
    radial-gradient(circle at right center, rgba(143, 230, 193, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(26, 20, 15, 0.9), rgba(10, 12, 18, 0.98));
  border: 1px solid rgba(240, 196, 138, 0.18);
}

.trial-copy {
  display: grid;
  gap: var(--space-3);
}

.trial-copy .eyebrow {
  color: var(--accent-warm);
}

.trial-copy h2 {
  max-width: 13ch;
}

.trial-details {
  display: grid;
  gap: var(--space-4);
  justify-items: start;
  max-width: 27rem;
}

.pricing-section {
  padding-top: clamp(4.5rem, 8vw, 6.5rem);
}

.pricing-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.pricing-head {
  margin-bottom: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4);
}

.price-row {
  display: grid;
  gap: var(--space-4);
  align-content: start;
  min-height: 100%;
  padding: clamp(1.4rem, 3vw, 2rem);
  border-radius: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
}

.price-row-calm {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.015));
}

.price-row-featured {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, rgba(12, 27, 31, 0.96), rgba(9, 12, 18, 0.98));
  border-color: rgba(143, 230, 193, 0.2);
  box-shadow: 0 22px 55px rgba(7, 21, 22, 0.28);
  transform: translateY(-0.4rem);
}

.price-row-featured::before {
  content: "";
  position: absolute;
  inset: auto -18% 64% 40%;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 230, 193, 0.18), transparent 62%);
  pointer-events: none;
}

.plan-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 2rem;
  padding: 0 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(143, 230, 193, 0.2);
  background: rgba(143, 230, 193, 0.12);
  color: #d5f7e4;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.price-header {
  display: grid;
  gap: 0.45rem;
}

.price-name {
  font-size: 1.35rem;
  color: var(--text-strong);
}

.price-note {
  margin-top: 0;
  max-width: 22rem;
}

.price-figure {
  display: grid;
  gap: 0.1rem;
  text-align: left;
}

.price-figure strong {
  font-size: clamp(2rem, 3vw, 2.45rem);
  color: var(--text-strong);
}

.price-row ul {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1.1rem;
}

.price-row li {
  list-style: disc;
}

.price-row .button {
  margin-top: auto;
}

.extension-strip {
  position: relative;
  z-index: 2;
  isolation: isolate;
  padding-top: clamp(3.5rem, 7vw, 5rem);
}

.extension-strip-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.9fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(1.5rem, 4vw, 2.35rem);
  border-radius: 2rem;
  border: 1px solid rgba(144, 184, 255, 0.16);
  background:
    radial-gradient(circle at left top, rgba(144, 184, 255, 0.18), transparent 34%),
    radial-gradient(circle at right center, rgba(143, 230, 193, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(17, 22, 33, 0.96), rgba(8, 11, 18, 0.98));
  box-shadow: var(--shadow-soft);
}

.extension-copy {
  position: relative;
  z-index: 3;
  display: grid;
  gap: var(--space-4);
  max-width: 34rem;
}

.extension-copy h2 {
  max-width: 14ch;
}

.extension-text {
  max-width: 30rem;
}

.extension-actions {
  position: relative;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

.extension-actions .button {
  position: relative;
  z-index: 5;
}

.extension-visual {
  justify-self: end;
  width: min(100%, 24rem);
  padding: 0.8rem;
  border-radius: 1.8rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(14px);
}

.extension-window {
  display: grid;
  gap: 0.9rem;
  padding: 1rem;
  border-radius: 1.3rem;
  background: linear-gradient(180deg, rgba(12, 16, 25, 0.96), rgba(9, 12, 18, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.extension-window-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.extension-dots {
  display: flex;
  gap: 0.35rem;
}

.extension-dots span {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.extension-dots span:first-child {
  background: rgba(255, 154, 144, 0.8);
}

.extension-dots span:nth-child(2) {
  background: rgba(240, 196, 138, 0.86);
}

.extension-dots span:last-child {
  background: rgba(143, 230, 193, 0.92);
}

.extension-signal {
  position: relative;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 230, 193, 0.82), rgba(143, 230, 193, 0.12));
  box-shadow: 0 0 0 0 rgba(143, 230, 193, 0.32);
  animation: extension-pulse 2.8s ease-out infinite;
}

.extension-country-list {
  display: grid;
  gap: 0.7rem;
}

.extension-country-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 0.85rem 0.95rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.extension-country-item span {
  color: var(--text-faint);
  font-size: 0.84rem;
  text-align: right;
}

.extension-country-item-active {
  border-color: rgba(143, 230, 193, 0.18);
  background: rgba(143, 230, 193, 0.09);
}

.extension-strip-shell:hover .extension-country-item:first-child {
  transform: translateX(0.2rem);
}

.extension-strip-shell:hover .extension-country-item:nth-child(2) {
  transform: translateX(-0.15rem);
}

.extension-strip-shell:hover .extension-country-item:nth-child(3) {
  transform: translateX(0.28rem);
}

.partner-section {
  position: relative;
  z-index: 2;
  isolation: isolate;
  padding-top: clamp(4rem, 8vw, 6rem);
}

.partner-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.partner-copy {
  display: grid;
  gap: var(--space-4);
  padding-right: var(--space-4);
}

.partner-head {
  margin-bottom: 0;
}

.partner-head h2 {
  max-width: 15ch;
}

.partner-text {
  max-width: 35rem;
}

.partner-rail {
  position: relative;
  z-index: 3;
  display: grid;
  gap: var(--space-4);
  padding: clamp(1.3rem, 3vw, 1.75rem);
  border-radius: 1.8rem;
  background: linear-gradient(180deg, rgba(19, 24, 36, 0.94), rgba(10, 12, 19, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-soft);
}

.partner-card {
  display: grid;
  gap: var(--space-3);
}

.partner-note {
  color: var(--text-faint);
}

.partner-actions {
  display: grid;
  gap: var(--space-3);
}

.partner-actions .button {
  width: 100%;
  position: relative;
  z-index: 4;
}

.faq-section {
  padding-top: clamp(4rem, 8vw, 6rem);
}

.faq-shell {
  display: grid;
  gap: var(--space-5);
}

.faq-head {
  max-width: 34rem;
  margin-bottom: 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.85fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-list details {
  padding: 1.15rem 0;
}

.faq-list details + details {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.faq-list details[open] {
  padding-bottom: 1.35rem;
}

.faq-list summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  list-style: none;
  color: var(--text-strong);
  font-weight: 600;
  cursor: pointer;
}

.faq-list summary::after {
  content: "+";
  color: var(--accent-strong);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.faq-answer > div {
  overflow: hidden;
}

.faq-list details[open] .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  margin-top: var(--space-3);
  margin-bottom: 0;
  max-width: 46rem;
  opacity: 0.82;
  transform: translateY(-0.2rem);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}

.faq-list details[open] .faq-answer p {
  opacity: 1;
  transform: translateY(0);
}

.faq-cta {
  display: grid;
  gap: var(--space-4);
  padding: clamp(1.4rem, 3vw, 1.85rem);
  border-radius: 1.8rem;
  background: linear-gradient(180deg, rgba(23, 27, 38, 0.95), rgba(10, 12, 18, 0.98));
  border: 1px solid rgba(144, 184, 255, 0.16);
  box-shadow: var(--shadow-soft);
}

.faq-cta p:last-of-type {
  max-width: 23rem;
}

@media (max-width: 1120px) {
  .story-layout,
  .countries-layout,
  .pricing-shell,
  .extension-strip-shell,
  .partner-shell,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .timeline-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-4);
  }

  .timeline-list article:first-child {
    grid-row: auto;
    grid-column: 1 / -1;
  }

  .timeline-list article:nth-child(3) {
    min-height: 11.5rem;
    padding: var(--space-5);
    border-radius: 1.65rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.025);
  }

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

@media (max-width: 900px) {
  .site-header-shell {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: var(--space-4);
    margin: 0;
    padding: 0.85rem 0.5rem;
    box-sizing: border-box;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .home-page .site-nav {
    display: none;
    grid-column: 1 / -1;
    width: 100%;
    justify-self: stretch;
    margin-left: 0;
    margin-top: 0.15rem;
    padding: var(--space-4);
    border-radius: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(18, 22, 32, 0.96), rgba(10, 12, 18, 0.98));
    box-shadow: var(--shadow-soft);
  }

  .home-page .site-header[data-menu-open="true"] .site-nav {
    display: grid;
  }

  .home-page .site-nav a {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-start;
    padding: 0.75rem 0.15rem;
  }

  .home-page .site-nav .button {
    margin-top: 0.4rem;
    justify-content: center;
  }

  .trial-band {
    grid-template-columns: 1fr;
  }

  .timeline-list {
    grid-template-columns: 1fr;
  }

  .timeline-list article:first-child,
  .timeline-list article:nth-child(3) {
    grid-column: auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .extension-visual {
    justify-self: stretch;
    width: 100%;
  }

  .price-row-featured {
    transform: none;
  }

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

@media (max-width: 640px) {
  .hero {
    padding-bottom: var(--space-8);
  }

  .hero-shell {
    width: min(100vw - 1rem, 100%);
    min-height: auto;
  }

  .hero-brandline {
    font-size: 0.82rem;
  }

  .hero-meta,
  .countries-strip {
    grid-template-columns: 1fr;
  }

  .extension-country-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .extension-country-item span {
    text-align: left;
  }

  .countries-strip span:first-child,
  .countries-strip span:last-child {
    grid-column: auto;
  }

  .countries-strip span {
    min-height: auto;
  }

  .story-head h2,
  .trial-copy h2,
  .extension-copy h2,
  .partner-head h2 {
    max-width: none;
  }

  .story-title-seo {
    font-size: clamp(1.55rem, 5.4vw, 2.1rem);
  }

  .hero-copy .hero-title-seo {
    width: min(100%, calc(100vw - 1rem));
    max-width: calc(100vw - 1rem);
    font-size: clamp(1.15rem, 5.1vw, 1.38rem);
    line-height: 1.06;
    letter-spacing: -0.03em;
    text-wrap: initial;
  }

}

@keyframes extension-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(143, 230, 193, 0.28);
  }

  70% {
    box-shadow: 0 0 0 1rem rgba(143, 230, 193, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(143, 230, 193, 0);
  }
}
