:root {
  --fr-black: #010101;
  --fr-orange: #FE3400;
  --fr-cyan: #00FFFF;
  --fr-green: #00FF00;
  --fr-text: #000000;

  --fr-font-primary: "antipoda-variable", sans-serif;
  --fr-font-secondary: "Satoshi", sans-serif;
  --fr-font-display: "mencken-std-head-narrow", sans-serif;
}

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

html,
body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: clip;
}

body {
  background: var(--fr-black);
  color: var(--fr-text);
  font-family: var(--fr-font-primary);
}

.fr-site {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -68px; 
  overflow-x: clip;
}

/* =========================
   HEADER
   ========================= */

.fr-header {
  width: 100vw;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  background: var(--fr-black);
  color: #ffffff;
  overflow: hidden;
  min-height: calc(100vh + 24px);
}

.fr-header__main {
  display: grid;
  grid-template-columns: 90% 10%;
  width: 100vw;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

/* LEFT BLACK AREA */

.fr-header__left {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

/* Top row: logo + strapline */

.fr-header__top {
  display: grid;
  grid-template-columns: 46% 54%;
  align-items: end;
  margin: 0;
  padding: 0 0 0.8em 0;
}

.fr-header__logo-link {
  display: block;
  padding-left: 2em;
}

.fr-header__logo {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin: 0;
  transform: translateY(7px);
}

.fr-header__strapline {
  margin: 0 210px 12px 0;
  padding-right: 0.6em;
  color: #ffffff;
  font-family: var(--fr-font-secondary);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 3.7px;
  text-align: right;
  text-transform: uppercase;
}

/* Hero row: office image + cloud/text column */

.fr-hero-grid {
  display: grid;
  grid-template-columns: 85% 15%;
  flex: 1;
  width: 100%;
  min-height: 593px;
  margin: 0;
  padding: 0;
}

.fr-hero-card {
  position: relative;
  height: 593px;
  min-height: 593px;
  margin-left: 2em;
  margin-right: 2em;
  border-radius: 12px;
  overflow: hidden;
}

.fr-hero-card--image {
  background-image: url("/uploads/website/RETRO-OFFICE.webp");
  background-size: cover;
  background-position: calc(50% - 95px) calc(50% + 0px);
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.fr-hero-card--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/uploads/website/OVERLAY.webp");
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  mix-blend-mode: overlay;
  opacity: 1;
  pointer-events: none;
}

.fr-hero-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 593px;
  min-height: 575px;
  margin-right: 0.75em;
  padding: 0;
  overflow: visible;
}

.fr-cloud-card {
  width: 168%;
  max-width: none;
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
}

.fr-cloud-card__image {
  display: block;
  width: 100%;
  height: 225px;
  object-fit: cover;
  border-radius: 12px;
}

.fr-hero-copy {
  margin: 0;
  padding: 0;
  overflow: visible;
}

.fr-hero-copy h1 {
  margin: 0;
  width: max-content;
  max-width: none;
  white-space: nowrap;
  color: var(--fr-cyan);
  font-family: var(--fr-font-secondary);
  font-size: 36px;
  font-weight: 900;
  line-height: 33px;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.fr-hero-button {
  display: inline-block;
  position: relative;
  margin-top: 43px !important;
  padding: 2px 3px;
  overflow: hidden;
  color: #000000;
  background: #ffffff;
  font-family: var(--fr-font-secondary);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.6px;
  text-transform: uppercase;
  text-decoration: none;
}

.fr-hero-button__content {
  position: relative;
  z-index: 2;
}

.fr-hero-button__text {
  white-space: nowrap;
}

.ticker-hover-button::after {
  content: "SIGN ME UP     SIGN ME UP     SIGN ME UP     SIGN ME UP     SIGN ME UP     SIGN ME UP";
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 3;
  transform: translateY(-50%);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  font-size: 29px;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  letter-spacing: inherit;
  color: inherit;
  line-height: 1;
  animation: none;
}


.ticker-hover-button:hover {
  background: #ffff00;
}

.ticker-hover-button:hover .fr-hero-button__content {
  opacity: 0;
}

.ticker-hover-button:hover::after {
  opacity: 1;
  animation: tickerInsideButton 3s linear infinite;
}

.ticker-hover-button.is-ticker-active .fr-hero-button__content {
  opacity: 0;
}

.ticker-hover-button.is-ticker-active::after {
  opacity: 1;
  animation: tickerInsideButton 3s linear infinite;
}

@keyframes tickerInsideButton {
  from {
    transform: translate(0, -50%);
  }

  to {
    transform: translate(-248px, -50%);
  }
}

.fr-hero-mobile-cloud-row {
  display: contents;
}


/* RIGHT HEADER TEXT COLUMN */

.fr-header__menu-strip {
  position: relative;
  display: block;
  width: 100%;
  min-height: 100vh;
  height: 100vh;
  margin: 0;
  padding: 0;
  background: transparent;
  border-bottom-left-radius: 0;
  overflow: visible;
}

.fr-hero-tags {
  font-family: var(--fr-font-primary);
  font-size: 13px;
  font-weight: 900;
  line-height: 16px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.fr-hero-tags span {
  display: block;
}

.fr-hero-tags--desktop {
  position: absolute;
  right: 0.35em;
  bottom: 0.15em;
  transform: translateY(0);
  margin: 0;
  width: max-content;
  max-width: none;
  white-space: nowrap;
  color: #D1E231;
  font-family: var(--fr-font-secondary);
  font-size: 24px;
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -1px;
  text-align: right;
  text-transform: uppercase;
}

.fr-hero-tags--desktop span {
  display: block;
  white-space: nowrap;
}

.fr-hero-tags--desktop span + span {
  margin-top: 0.05em;
}

.fr-hero-tags--mobile {
  display: none;
  color: var(--fr-green);
  padding: 8px;
}

/* TEMPORARY NEXT SECTION */

.fr-placeholder-section {
  min-height: 400px;
  padding: 4rem 2rem;
  background: #ffffff;
}



/* =========================
   MODULES SECTION
   ========================= */

.fr-modules-section {
  width: 100vw;
  margin: 0;
  padding: 0 0 5em 0;
  background: #ffffff;
  color: #303031;
  overflow: hidden;
}

.fr-modules-grid {
  display: grid;
  grid-template-columns: 12% 43% 5% 40%;
  width: 100%;
}

/* Side labels: MENU / FIN */

.fr-modules-side-label {
  font-family: var(--fr-font-primary);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #303031;
}

.fr-modules-side-label--menu {
  padding: 225px 35px 0 20px; /* TWEAK: moves MENU down/right */
  text-align: right;
}

.fr-modules-side-label--fin {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 0 35px 70px 20px;
}

/* Large Mencken module list */

.fr-modules-list {
  padding-top: 225px; /* TWEAK: first item position */
  text-align: center;
  overflow: visible;
}

.fr-module-item {
  margin: 0 -200px 70px -200px; /* TWEAK: width/spread + vertical spacing */
  font-family: var(--fr-font-display);
  font-size: 92px;
  font-weight: 400;
  line-height: 0.2;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: #303031;
}

.fr-module-tooltip-trigger {
  position: relative;
  display: inline-block;
  cursor: default;
}

/* Tooltip image */

.fr-module-tooltip {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 20;
  width: 430px;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.fr-module-tooltip img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.fr-module-tooltip-trigger:hover .fr-module-tooltip {
  opacity: 1;
  visibility: visible;
}

/* Right column */

.fr-modules-info {
  padding: 0 20px;
}

.fr-modules-info__image {
  display: block;
  width: 33%;
  max-width: 260px;
  height: auto;
  margin: 7em 0 0 1em;
  border-radius: 12px;
  transform: translate(60px, -30px);
}

.fr-modules-info__copy {
  margin: 130px 0 0 190px; /* TWEAK: right column text position */
  color: #303031;
}

.fr-modules-info__copy h2 {
  margin: 0 0 15px 0;
  font-family: var(--fr-font-primary);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.fr-modules-info__copy p {
  margin: 0;
  font-family: var(--fr-font-secondary);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.6;
  letter-spacing: 0.3px;
}

.fr-modules-info__copy a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fr-indent {
  display: inline-block;
  padding-left: 44px;
}

.fr-modules-more-wrap {
  margin: 3em 0 0 0; /* TWEAK: space under the topics list */
  text-align: center;
}

.fr-more-ticker-button {
  position: relative;
  display: inline-block;
  overflow: hidden;

  /* CHANGED: header-button style */
  padding: 3px 6px;
  border: 3px solid black;
  border-radius: 0;
  background: #ffffff;
  color: #000000;

  font-family: var(--fr-font-secondary);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1.6px;
  text-transform: uppercase;
  text-decoration: none;
}

.fr-more-ticker-button__content {
  position: relative;
  z-index: 2;
}

.fr-more-ticker-button__text {
  white-space: nowrap;
}

.fr-more-ticker-button::after {
  content: attr(data-ticker);
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 3;
  transform: translateY(-50%);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  font-size: 29px;
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: inherit;
  line-height: 1;
  animation: none;
}

.fr-more-ticker-button:hover {
  background: #00ffff;
}

.fr-more-ticker-button:hover .fr-more-ticker-button__content {
  opacity: 0;
}

.fr-more-ticker-button:hover::after {
  opacity: 1;
  animation: frMoreTickerInsideButton 3s linear infinite;
}

@keyframes frMoreTickerInsideButton {
  from {
    transform: translate(0, -50%);
  }

  to {
    transform: translate(-248px, -50%); /* CHANGED */
  }
}


/* =========================
   CAT + VIDEO SECTION
   ========================= */

.fr-cat-video-section {
  --fr-cat-video-progress: 0;

  width: 100vw;
  margin: -1em 0 0 0;
  padding: 4px 0 0 0;
  background: #ffffff;
  color: #303031;
  overflow: hidden;
  position: relative;
  z-index: 600;
}

.fr-cat-video-grid {
  display: grid;
  grid-template-columns: 34% 2% 17.752% 46.248%;
  width: 100%;
}

/* Cat column */

.fr-cat-video-cat-col {
  position: relative;
  z-index: 30;
  padding-top: 238px;
}

.fr-cat-video-cat {
  display: block;
  width: 100%;
  max-width: 530px;
  height: auto;
}

/* Empty spacer column */

.fr-cat-video-spacer-col {
  min-height: 1px;
}

/* Video/fish column */

.fr-cat-video-centre-col {
  position: relative;
  z-index: 10;
  padding-top: 153px;
  min-height: 620px;
}

/* Temporary black video circle */

.fr-cat-video-disc {
  width: clamp(120px, 16vw, 320px);
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 999px;
  background: #000000;

  transform: scale(var(--fr-cat-video-disc-scale, 0.35));
  transform-origin: center center;
}

/* Fish */


.fr-cat-video-fish {
  position: absolute;

  /*
    TWEAK:
    This is the fish's starting anchor point near the video circle.
    Smaller top = fish starts higher.
    Larger top = fish starts lower.
  */
  top: 320px;
  left: 50%;

  display: block;
  width: 38%;
  max-width: 150px;
  height: auto;
  margin: 0;

  transform:
    translateX(calc(-50% + var(--fr-cat-video-fish-x, 0px)))
    translateY(var(--fr-cat-video-fish-y, 0px))
    rotate(var(--fr-cat-video-fish-rotate, -20deg));

  transform-origin: 50% 55%;
}



/* Right note */

.fr-cat-video-copy-col {
  padding-top: 283px; /* 78px column padding + 205px spacer */
}

.fr-cat-video-note {
  display: grid;
  grid-template-columns: 32% 68%;
  align-items: center;
  width: 100%;
}

.fr-cat-video-arrow {
  display: block;
  justify-self: end;
  width: 28px;
  height: auto;
  margin-right: 12px;
  transform: scaleX(-1);
}

.fr-cat-video-text {
  display: block;
  font-family: var(--fr-font-primary);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}



/* =========================
   PRODUCT SUMMARY CARDS
   ========================= */

.fr-product-summary-section {
  position: relative;
  z-index: 700;
  width: 100vw;
  margin: -20px 0 0 0;
  padding: 0 3em 5em 3em;
  background: transparent;
  color: #303031;
  overflow: visible;
}

.fr-product-summary-gradient {
  position: absolute;
  inset: 0 0 auto 0;
  height: 60%;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    #ffffff 0%,
    #ffffff 17%,
    rgba(255, 255, 255, 0) 64%
  );
}

.fr-product-summary-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  width: 100%;
  align-items: stretch;
}

.fr-product-card {
  display: flex;
  flex-direction: column;
  min-height: 325px; /* TWEAK: card height */
  padding: 8px 14px 42px 14px;
  background: #ffffff;
  border: 2px solid #080808;
  border-radius: 14px;
  overflow: hidden;
}

.fr-product-card__image {
  display: block;
  width: 100%;
  height: 210px; /* TWEAK: image height */
  object-fit: cover;
  border-radius: 12px;
  margin: 0 0 25px 0;
}

.fr-product-card__title {
  margin: 0 0 18px 0;
  color: #303031;
  font-family: var(--fr-font-primary);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.fr-product-card__text {
  margin: 0 auto;
  max-width: 260px;
  color: #000000;
  font-family: var(--fr-font-primary);
  font-size: 15px; /* TWEAK: body text size */
  font-weight: 400;
  line-height: 1.55;
  text-align: center;
}

.fr-product-summary-smiley-wrap {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 50% 50%;
  width: 100%;
}

.fr-product-summary-smiley {
  display: block;
  width: 25%;
  max-width: 220px;
  min-width: 130px;
  height: auto;
  margin: -57px auto 0 auto; /* TWEAK: smiley overlap */
  grid-column: 1 / 2;
}


/* =========================
   SUBSCRIPTIONS TEXT SECTION
   ========================= */

.fr-subscriptions-section {
  position: relative;
  z-index: 710;
  width: 100vw;
  margin: 0;
  padding: 7em 0 5em 0;
  background: transparent;
  color: #303031;
  overflow: visible;
  text-align: center;
}

.fr-subscriptions-kicker {
  display: inline-block;
  color: #303031;
  font-family: var(--fr-font-secondary);
  font-size: 23px;
  font-weight: 400;
  line-height: 1.6;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fr-subscriptions-lines {
  width: 100%;
  margin: 3.2em auto 0;
  overflow: visible;
}

.fr-subscriptions-line {
  margin: 0 -550px 12px -550px;
  color: #303031;
  font-family: var(--fr-font-display);
  font-size: 103px;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.fr-subscriptions-tooltip-trigger {
  position: relative;
  display: inline-block;
  cursor: default;
}

.fr-subscriptions-tooltip {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 30;
  width: 280px;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.fr-subscriptions-tooltip img {
  display: block;
  width: 100%;
  height: auto;
}

.fr-subscriptions-tooltip-trigger:hover .fr-subscriptions-tooltip {
  opacity: 1;
  visibility: visible;
}

.fr-subscriptions-explain {
  position: relative;
  left: 18%;
  display: inline-block;
  margin-top: 3.3em;
  margin-bottom: 6rem;
  color: #303031;
  font-family: var(--fr-font-primary);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* Individual subscription line spacing tweaks */

.fr-subscriptions-line--1 {
  letter-spacing: 0px; /* elevate your presence */
}

.fr-subscriptions-line--2 {
  letter-spacing: 0px; /* influence your people */
}

.fr-subscriptions-line--3 {
  letter-spacing: -0.4px;
}

.fr-subscriptions-line--4 {
  letter-spacing: -0.9px;
}

/* =========================
   PRICING TABLE
   ========================= */

.fr-pricing-section {
  width: 100vw;
  margin: 0;
  padding: 0;
  background: transparent;
  color: #303031;

  /* IMPORTANT: sticky breaks if this is hidden */
  overflow: visible;
}

.fr-pricing-table,
.fr-pricing-sticky-parent {
  position: relative;
  width: 100%;
  overflow: visible;
  padding-bottom: 35vh; 
}

/* Shared pricing grid */

.fr-pricing-heading-row,
.fr-pricing-row,
.fr-pricing-price-layer,
.fr-pricing-keep-layer {
  display: grid;
  grid-template-columns: 20% repeat(4, 20%);
  width: 100%;
}

/* =========================
   LAYER 1: PACKAGE NAMES
   Elementor: sticky top, sticky parent yes
   ========================= */

.fr-pricing-heading-row {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 5000;

  align-items: stretch;
  min-height: 360px; 
  margin-top: 0px; 
  background: transparent;
}

.fr-pricing-cat-cell {
  position: relative;
  min-height: 360px;
  overflow: visible;
  display: flex;
  align-items: flex-start;
}

.fr-pricing-cat {
  display: block;
  width: 125%;
  max-width: none;
  height: auto;
  margin-left: -5em;
  margin-top: 10px;
}

.fr-pricing-plan-heading {
  align-self: flex-start;
  padding-top: 20px;
  color: #303031;
  font-family: var(--fr-font-secondary);
  font-size: 95px;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -3.6px;
  text-align: center;
  text-transform: uppercase;
}

/* =========================
   LAYER 2: PACKAGE COLUMNS / ROWS
   Elementor: sticky top, sticky offset 5, translateY
   ========================= */

.fr-pricing-rows-layer {
  position: -webkit-sticky;
  position: sticky;
  top: 112px;
  z-index: 7000;
  margin-top: 0;
  padding-top: 0;
  background: #ffffff;
}

.fr-pricing-row {
  min-height: 45px;
  align-items: center;
}

.fr-pricing-row--dark {
  background: #303031;
  color: #ffffff;
}

.fr-pricing-row--light {
  background: #ffffff;
  color: #303031;
}

.fr-pricing-feature,
.fr-pricing-value {
  padding: 0.75em 1em;
  font-family: var(--fr-font-secondary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.fr-pricing-row--cta {
  min-height: 50px;
  background: #ffff00;
  color: #303031;
}

.fr-pricing-cta {
  color: #303031;
  font-family: var(--fr-font-primary);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* =========================
   LAYER 3: PRICE IMAGES
   Elementor: sticky top, sticky offset 41
   ========================= */

.fr-pricing-price-layer {
  position: -webkit-sticky;
  position: sticky;
  top: 80px;
  z-index: 8000;
  min-height: 80px;
  margin-top: 6em;
  padding: 28px 0;
  transform: translateY(-255px);
  background: transparent;
  pointer-events: none;
}

.fr-pricing-price-cell {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: visible;
}

.fr-pricing-price-img {
  display: block;
  width: 90%;
  max-width: 360px;
  height: auto;
}

.fr-pricing-price-img--contact {
  width: 80%;
  max-width: 360px;
}


/* =========================
   LAYER 4: KEEP SCROLLING
   Elementor: sticky bottom, sticky parent yes
   ========================= */

.fr-pricing-keep-layer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 6500;

  display: grid;
  grid-template-columns: 20% repeat(4, 20%);
  align-items: end; /* CHANGED: content sits at bottom of fixed row */

  width: 100vw;
  height: 105px; /* TWEAK: height of invisible keep-scrolling area */
  padding: 0 0 24px 0; /* TWEAK: distance from bottom of screen */

  background: transparent; /* CHANGED */
  pointer-events: none;

  opacity: 0;
  visibility: hidden;
  transition: opacity 120ms ease;
}

.fr-pricing-keep-layer.is-visible {
  opacity: 1;
  visibility: visible;
}


.fr-pricing-keep-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end; /* CHANGED: pushes text/arrow down */
  min-height: 0;
}

.fr-pricing-keep-text {
  margin: 0;
  color: #303031;
  font-family: var(--fr-font-primary);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.fr-pricing-keep-arrow {
  display: block;
  width: 10%;
  min-width: 18px;
  max-width: 34px;
  height: auto;
  margin-top: 8px; /* CHANGED: gap between text and arrow */
}



/* =========================
   FAQ SECTION
   ========================= */

.fr-faq-section {
  position: relative;
  z-index: 720;
  width: 100vw;
  margin: 5em 0 0 0;
  padding: 6em 6em 10em 6em;
  background: #010101;
  color: #ffffff;
  overflow: hidden;
}

.fr-faq-grid {
  display: grid;
  grid-template-columns: 20% 80%;
  width: 100%;
}

.fr-faq-left {
  padding: 20px 20px 20px 0;
  overflow: visible;
}

.fr-faq-kicker {
  margin: 0;
  width: max-content;
  white-space: nowrap;

  color: #ffffff;
  font-family: var(--fr-font-primary);
  font-size: 15px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  letter-spacing: 3.7px;
  text-transform: uppercase;
}

.fr-faq-list {
  padding: 0;
  text-align: right;
}

.fr-faq-item {
  margin: 0 0 12px 0;
  padding: 0;
  border: 0;
}


.fr-faq-question {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--fr-faq-colour);
  font-family: var(--fr-font-primary);
  font-size: 27px;
  font-weight: 900;
  font-style: italic;
  line-height: 1.45;
  letter-spacing: 1.1px;
  text-align: right;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
  transform: skewX(-12deg);
  transition: color 160ms ease;
}

.fr-faq-question::-webkit-details-marker {
  display: none;
}

.fr-faq-question::marker {
  display: none;
  content: "";
}

.fr-faq-question:hover,
.fr-faq-item[open] .fr-faq-question {
  color: var(--fr-faq-hover);
}

.fr-faq-answer {
  max-width: 880px;
  margin: 10px 0 22px auto;
  padding: 0 11px;
  color: #ffffff;
  font-family: var(--fr-font-primary);
  font-size: 15px;
  font-weight: 400;
  line-height: 25px;
  text-align: right;
}

.fr-faq-answer p {
  margin: 0;
}


/* =========================
   RESPONSIVE: TABLET
   ========================= */

@media (min-width: 768px) and (max-width: 1180px) {

  /* HEADER */

  .fr-site {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: -88px;
    overflow-x: clip;
  }

  .fr-header {
    width: 100vw;
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 3rem;
  }

  .fr-header__main {
    display: block;
    width: 100vw;
    min-height: auto;
  }

  .fr-header__left {
    width: 100vw;
    min-height: auto;
  }

  .fr-header__top {
    display: grid;
    grid-template-columns: 46% 54%;
    align-items: end;
    padding: 0 0 0.7em 0;
  }

  .fr-header__logo-link {
    padding-left: 1.2em;
  }

  .fr-header__logo {
    width: 100%;
    transform: translateX(-8px);
  }

  .fr-header__strapline {
    margin: 0 0 8px 0;
    padding-right: 1.2em;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 2.2px;
    text-align: right;
  }

  .fr-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 68fr) minmax(0, 32fr);
    column-gap: 1.2em;
    min-height: auto;
    padding: 0 1.2em;
  }

  .fr-hero-card {
    grid-column: 1 / 2;
    grid-row: 1;
    height: 52vw;
    min-height: 430px;
    max-height: 560px;
    margin: 0;
  }

  .fr-hero-card--image {
    background-attachment: scroll;
    background-position: center center;
  }
  
  .fr-hero-card--image::after {
    z-index: 1;
    background-position: center center;
  }

  .fr-hero-card--image::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    height: 42%;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.48) 42%,
      rgba(0, 0, 0, 0) 100%
    );
    pointer-events: none;
  }

  .fr-hero-side {
    grid-column: 2 / 3;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 52vw;
    min-height: 430px;
    max-height: 560px;
    margin-right: 0;
    padding: 0;
  }

  .fr-hero-mobile-cloud-row {
    display: block;
    width: 100%;
  }

  .fr-cloud-card {
    width: 100%;
    max-width: none;
    margin: 0;
  }
  
  .fr-cloud-card__image {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .fr-hero-copy {
    margin-top: 2rem;
  }

  .fr-hero-copy h1 {
    font-size: 29px;
    line-height: 27px;
  }

  .fr-hero-button {
    margin-top: 22px !important;
    font-size: 22px;
  }

  .ticker-hover-button::after {
    font-size: 24px;
  }

  .fr-hero-tags--mobile {
    position: absolute;
    left: 3.2em;
    bottom: 2.1em;
    z-index: 5;
    display: block;
    width: auto;
    margin: 0;
    padding: 0;
    color: #D1E231;
    font-family: var(--fr-font-secondary);
    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0;
    text-align: left;
    text-transform: uppercase;
    transform: none;
  }

  .fr-hero-tags--mobile span + span {
    margin-top: 0.9em;
  }

  .fr-header__menu-strip,
  .fr-hero-tags--desktop {
    display: none;
  }

  /* MODULES */

  .fr-modules-grid {
    grid-template-columns: 10% 50% 5% 35%;
  }

  .fr-modules-side-label--menu {
    padding: 180px 20px 0 12px;
  }

  .fr-modules-list {
    padding-top: 180px;
  }

  .fr-module-item {
    margin: 0 -120px 55px -120px;
    font-size: 10px;
    line-height: 0.25;
  }

  .fr-module-tooltip {
    width: 320px;
  }

  .fr-modules-side-label--fin {
    padding: 0 18px 60px 10px;
  }

  .fr-modules-info__image {
    width: 45%;
    max-width: 220px;
    margin: 6em 0 0 1em;
    transform: translate(20px, -20px);
  }

  .fr-modules-info__copy {
    margin: 110px 0 0 70px;
  }

  .fr-modules-more-wrap {
    margin-top: 2.5em;
  }

  /* CAT / VIDEO / FISH */

  .fr-cat-video-grid {
    grid-template-columns: 32% 2% 22% 44%;
  }

  .fr-cat-video-cat-col {
    padding-top: 190px;
  }

  .fr-cat-video-cat {
    max-width: 430px;
  }

  .fr-cat-video-centre-col {
    padding-top: 135px;
    min-height: 560px;
  }

  .fr-cat-video-disc {
    width: clamp(120px, 20vw, 280px);
  }

  .fr-cat-video-fish {
    top: 290px;
    width: 42%;
    max-width: 130px;
  }

  .fr-cat-video-copy-col {
    padding-top: 250px;
  }

  /* PRODUCT SUMMARY CARDS */

  .fr-product-summary-section {
    padding: 0 1.5em 4em 1.5em;
  }

  .fr-product-summary-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .fr-product-card {
    min-height: 330px;
  }

  .fr-product-card__image {
    height: 220px;
  }

  .fr-product-summary-smiley {
    width: 22%;
    margin-top: -50px;
  }

  /* SUBSCRIPTIONS */

  .fr-subscriptions-section {
    padding: 5em 0 4em 0;
  }

  .fr-subscriptions-line {
    margin: 0 -250px 10px -250px;
    font-size: 76px;
    line-height: 0.9;
  }

  .fr-subscriptions-explain {
    left: 14%;
  }

  /* PRICING: TABLET SWIPE */

  .fr-pricing-section {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
  }

  .fr-pricing-table,
  .fr-pricing-sticky-parent {
    width: 1120px;
    min-width: 1120px;
    padding-bottom: 4rem;
  }

  .fr-pricing-heading-row,
  .fr-pricing-rows-layer,
  .fr-pricing-price-layer {
    position: relative;
    top: auto;
  }

  .fr-pricing-heading-row {
    min-height: 260px;
  }

  .fr-pricing-cat-cell {
    min-height: 260px;
  }

  .fr-pricing-plan-heading {
    font-size: 72px;
  }

  .fr-pricing-rows-layer {
    background: #ffffff;
  }

  .fr-pricing-price-layer {
    margin-top: 1em;
    transform: none;
  }

  .fr-pricing-keep-layer {
    display: none !important;
  }

  /* FAQ */

  .fr-faq-section {
    padding: 5em 3em 8em 3em;
  }

  .fr-faq-grid {
    grid-template-columns: 24% 76%;
  }

  .fr-faq-kicker {
    font-size: 13px;
    letter-spacing: 2.6px;
  }

  .fr-faq-question {
    font-size: 23px;
  }

  .fr-faq-answer {
    max-width: 720px;
  }
}


/* =========================
   RESPONSIVE: MOBILE
   ========================= */

@media (max-width: 767px) {

  html,
  body {
    overflow-x: clip;
  }

  /* HEADER */

  .fr-site {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: -65px;
    overflow-x: clip;
  }

  .fr-header {
    min-height: auto;
    padding-top: 28px;
    padding-bottom: 3.6rem;
    overflow: visible;
  }
  .fr-header__main {
    display: block;
    min-height: auto;
  }

  .fr-header__left {
    min-height: auto;
  }

  .fr-header__top {
    display: block;
    padding: 0 12px 12px;
  }

  .fr-header__logo-link {
    padding-left: 0;
  }

  .fr-header__logo {
    width: 80%;
    transform: translateX(-6px);
  }

  .fr-header__strapline {
    margin: 8px 0 0 0;
    padding: 0;
    font-size: 13px;
    line-height: 1.15;
    letter-spacing: 1.2px;
    text-align: left;
  }
  
  .fr-hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 12px;
    align-items: stretch;
    min-height: auto;
    padding: 0 14px;
  }

  .fr-hero-card {
    grid-column: 1 / 2;
    grid-row: 1;
    align-self: stretch;
    height: auto;
    min-height: 405px;
    max-height: none;
    margin: 0;
  }

  .fr-hero-card--image {
    background-attachment: scroll;
    background-position: center center;
  }

  .fr-hero-card--image::after {
    z-index: 1;
    background-position: center center;
  }

  .fr-hero-card--image::before {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    z-index: 2;
    height: 46%;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.86) 0%,
      rgba(0, 0, 0, 0.52) 44%,
      rgba(0, 0, 0, 0) 100%
    );
    pointer-events: none;
  }

  .fr-hero-side {
    grid-column: 2 / 3;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-self: stretch;
    height: auto;
    min-height: 405px;
    max-height: none;
    margin-right: 0;
    padding: 0;
    gap: 0;
  }

  .fr-hero-mobile-cloud-row {
    display: block;
    width: 100%;
  }

  .fr-cloud-card {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .fr-cloud-card__image {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .fr-hero-copy {
    margin-top: 1.6rem;
  }

  .fr-hero-copy h1 {
    font-size: clamp(22px, 7.2vw, 31px);
    line-height: clamp(21px, 6.8vw, 29px);
  }

  .fr-hero-button {
    margin-top: 22px !important;
    font-size: 22px;
  }

  .ticker-hover-button::after {
    font-size: 24px;
  }

  .fr-hero-tags--mobile {
    position: absolute;
    left: 28px;
    bottom: 24px;
    z-index: 5;
    display: block;
    width: calc((100% - 12px) / 2 - 36px);
    padding: 0;
    color: #D1E231;
    font-family: var(--fr-font-secondary);
    font-size: 9px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: 0;
    text-align: left;
    text-transform: uppercase;
    white-space: nowrap;
    transform: none;
  }

  .fr-hero-tags--mobile br {
    display: none;
  }

  .fr-hero-tags--mobile span + span {
    margin-top: 0.85em;
  }

  .fr-header__menu-strip,
  .fr-hero-tags--desktop {
    display: none;
  }

  /* MODULES */

  .fr-modules-section {
    padding: 2.5rem 0 4rem 0;
  }

  .fr-modules-grid {
    display: block;
  }

  .fr-modules-side-label--menu {
    padding: 0 1rem 1.5rem 1rem;
    text-align: left;
  }

  .fr-modules-list {
    padding-top: 0;
    text-align: center;
  }

  .fr-modules-section .fr-modules-list .fr-module-item {
    margin: 0 -70px 34px -70px;
    font-size: 24px !important;
    line-height: 0.52 !important;
  }

  .fr-modules-section .fr-modules-list .fr-module-item * {
    font-size: inherit !important;
    line-height: inherit !important;
  }

  .fr-module-tooltip {
    display: none;
  }

  .fr-modules-side-label--fin {
    display: block;
    padding: 1rem;
    text-align: right;
  }

  .fr-modules-info {
    padding: 0 1.25rem;
    text-align: center;
  }

  .fr-modules-info__image {
    width: 58%;
    max-width: 250px;
    margin: 1.5rem auto 0 auto;
    transform: none;
  }

  .fr-modules-info__copy {
    max-width: 290px;
    margin: 2rem auto 0 auto;
  }

  .fr-modules-info__copy p {
    font-size: 15px;
  }

  .fr-indent {
    padding-left: 0;
  }

  .fr-modules-more-wrap {
    margin: 2rem 0 0 0;
  }

  .fr-more-ticker-button {
    font-size: 24px;
  }

  .fr-more-ticker-button::after {
    font-size: 24px;
  }

  /* CAT / VIDEO / FISH */

  .fr-cat-video-section {
    margin: 0;
    padding: 0;
  }

  .fr-cat-video-grid {
    display: block;
  }

  .fr-cat-video-cat-col {
    padding-top: 0;
  }

  .fr-cat-video-cat {
    width: 82%;
    max-width: 360px;
    margin: -30px 0 0 -70px;
  }

  .fr-cat-video-spacer-col {
    display: none;
  }

  .fr-cat-video-centre-col {
    min-height: 430px;
    padding-top: 40px;
  }

  .fr-cat-video-disc {
    width: clamp(120px, 42vw, 230px);
  }

  .fr-cat-video-fish {
    top: 185px;
    width: 28%;
    max-width: 105px;
  }

  .fr-cat-video-copy-col {
    padding: 0 1rem 2rem 1rem;
  }

  .fr-cat-video-note {
    grid-template-columns: 42% 58%;
  }

  .fr-cat-video-arrow {
    width: 22px;
  }

  .fr-cat-video-text {
    font-size: 13px;
  }

  /* PRODUCT SUMMARY CARDS */

  .fr-product-summary-section {
    margin: -20px 0 0 0;
    padding: 0 1rem 3.5rem 1rem;
  }

  .fr-product-summary-gradient {
    height: 36%;
    background: linear-gradient(
      to bottom,
      #ffffff 0%,
      #ffffff 12%,
      rgba(255, 255, 255, 0) 55%
    );
  }

  .fr-product-summary-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .fr-product-card {
    min-height: auto;
    padding: 8px 10px 32px 10px;
  }

  .fr-product-card__image {
    height: 50vw;
    max-height: 230px;
    margin-bottom: 18px;
  }

  .fr-product-card__title {
    margin-bottom: 12px;
    font-size: 14px;
  }

  .fr-product-card__text {
    max-width: 280px;
    font-size: 15px;
    line-height: 1.45;
  }

  .fr-product-summary-smiley-wrap {
    display: block;
  }

  .fr-product-summary-smiley {
    width: 42%;
    max-width: 180px;
    min-width: 120px;
    margin: -38px auto 0 auto;
  }

  /* SUBSCRIPTIONS */

  .fr-subscriptions-section {
    padding: 4rem 0 3rem 0;
  }

  .fr-subscriptions-kicker {
    font-size: 16px;
  }

  .fr-subscriptions-lines {
    margin-top: 2rem;
  }

  .fr-subscriptions-line {
    margin: 0 -90px 7px -90px;
    font-size: clamp(42px, 15vw, 64px);
    line-height: 0.9;
  }

  .fr-subscriptions-tooltip {
    display: none;
  }

  .fr-subscriptions-explain {
    left: 0;
    margin-top: 2rem;
    margin-bottom: 3rem;
  }

  /* PRICING: MOBILE SWIPE TABLE */

  .fr-pricing-section {
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    padding-bottom: 1rem;
  }

  .fr-pricing-table,
  .fr-pricing-sticky-parent {
    width: 920px;
    min-width: 920px;
    padding-bottom: 3rem;
  }

  .fr-pricing-heading-row,
  .fr-pricing-rows-layer,
  .fr-pricing-price-layer {
    position: relative;
    top: auto;
  }

  .fr-pricing-heading-row {
    min-height: 170px;
    z-index: 1;
  }

  .fr-pricing-cat-cell {
    min-height: 170px;
  }

  .fr-pricing-cat {
    width: 120%;
    margin-left: -4em;
    margin-top: 0;
  }

  .fr-pricing-plan-heading {
    padding-top: 16px;
    font-size: 52px;
    letter-spacing: -2px;
  }

  .fr-pricing-rows-layer {
    z-index: 2;
    background: #ffffff;
  }

  .fr-pricing-row {
    min-height: 42px;
  }

  .fr-pricing-feature,
  .fr-pricing-value {
    padding: 0.65em 0.8em;
    font-size: 14px;
  }

  .fr-pricing-price-layer {
    z-index: 3;
    min-height: 120px;
    margin-top: 1rem;
    padding: 12px 0;
    transform: none;
  }

  .fr-pricing-price-img {
    width: 78%;
    max-width: 230px;
  }

  .fr-pricing-keep-layer {
    display: none !important;
  }

  /* FAQ */

  .fr-faq-section {
    margin-top: 3rem;
    padding: 4rem 1.25rem 6rem 1.25rem;
  }

  .fr-faq-grid {
    display: block;
  }

  .fr-faq-left {
    padding: 0 0 2rem 0;
  }

  .fr-faq-kicker {
    width: auto;
    white-space: normal;
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 2.2px;
  }

  .fr-faq-list {
    text-align: right;
  }

  .fr-faq-item {
    margin-bottom: 14px;
  }

  .fr-faq-question {
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: 0.6px;
  }

  .fr-faq-answer {
    max-width: 100%;
    margin: 10px 0 24px auto;
    padding: 0;
    font-size: 14px;
    line-height: 22px;
  }
}


/* Touch devices: hide hover-only image tooltips */

@media (hover: none) {
  .fr-module-tooltip,
  .fr-subscriptions-tooltip {
    display: none;
  }
}


/* =========================
   MODULE DETAIL PAGES
   ========================= */

.fr-module-page {
  background: var(--fr-black);
}

.fr-module-page-title {
  width: 100vw;
  margin: 0;
  padding: 12em 0 0 0;
  background: var(--fr-black);
  color: var(--fr-orange);
  overflow: hidden;
}

.fr-module-page-title__heading {
  margin: -8px 20px 0 20px;
  color: var(--fr-orange);
  font-family: var(--fr-font-secondary);
  font-size: 55px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 8.7px;
  text-align: center;
  text-transform: uppercase;
  -webkit-text-stroke: 2px var(--fr-orange);
  text-stroke: 2px var(--fr-orange);
}

.fr-module-detail-section {
  width: 100vw;
  margin: 0;
  padding: 5em 0 10em 0;
  background: var(--fr-black);
  color: #ffffff;
  overflow: hidden;
}

.fr-module-detail-grid {
  display: grid;
  grid-template-columns: 38% 45% 2% 15%;
  width: 100%;
  padding-top: 20px;
}

.fr-module-detail-intro-col {
  margin-top: 3em;
  padding: 0;
}

.fr-module-detail-strapline {
  width: 66%;
  margin-left: 34%;
  color: var(--fr-cyan);
  font-family: var(--fr-font-secondary);
  font-size: 36px;
  font-weight: 900;
  line-height: 34px;
  letter-spacing: -1px;
  text-align: justify;
  text-transform: uppercase;
}

.fr-module-detail-strapline span {
  display: block;
}

.fr-module-detail-cloud-wrap {
  width: 89%;
  margin: 5em 0 0 11%;
  border-radius: 12px;
  overflow: hidden;
}

.fr-module-detail-cloud {
  display: block;
  width: 100%;
  min-height: 329px;
  object-fit: cover;
  border-radius: 12px;
}

.fr-module-detail-copy-col {
  margin: 7em 1em 0 3em;
  padding: 20px 60px 0 132px;
}

.fr-module-detail-card {
  margin: -11px 0 0 0;
}

.fr-module-detail-card + .fr-module-detail-card {
  margin-top: -11px;
}

.fr-module-detail-card__title {
  margin: 70px 0 22px 0;
  color: #D1E231;
  font-family: var(--fr-font-primary);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 3.7px;
  text-align: right;
  text-transform: uppercase;
}

.fr-module-detail-card:first-child .fr-module-detail-card__title {
  margin-top: 0;
}

.fr-module-detail-card__body {
  margin: 0;
  padding: 10px 10px 12px 10px;
  border-radius: 0;
  background: #BD00FF;
  color: #000000;
  font-family: var(--fr-font-primary);
  font-size: 15px;
  font-weight: 350;
  line-height: 1.5;
  text-align: justify;
}

.fr-module-detail-card__body p {
  margin: 0 0 1em 0;
}

.fr-module-detail-card__body p:last-child {
  margin-bottom: 0;
}

.fr-module-detail-menu-col {
  margin-top: 3em;
  padding: 0;
}

.fr-module-detail-menu {
  display: block;
  width: 100%;
  padding: 20px 0 20px 20px;
  border-radius: 12px 0px 0px 12px;
  background: var(--fr-orange);
}

.fr-module-detail-menu a {
  display: block;
  color: #000000;
  font-family: var(--fr-font-secondary);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 2px;
}


.fr-module-quicklinks-toggle,
.fr-module-quicklinks-label {
  display: none;
}


/* Tablet module-detail layout */

@media (min-width: 768px) and (max-width: 1180px) {
  .fr-module-page-title {
    padding-top: 3em;
  }

  .fr-module-page-title__heading {
    font-size: 38px;
    letter-spacing: 3.8px;
  }

  .fr-module-detail-section {
    padding: 5em 0 10em 0;
  }

  .fr-module-detail-grid {
    grid-template-columns: 24% 52% 2% 22%;
    column-gap: 0;
    row-gap: 0;
    width: 100%;
    padding-top: 20px;
  }

  .fr-module-detail-intro-col {
    margin-top: 0;
    padding-top: 1.5em;
  }

  .fr-module-detail-strapline {
    width: 66%;
    max-width: none;
    margin-left: 11%;
    font-size: 24px;
    line-height: 29px;
  }

  .fr-module-detail-cloud-wrap {
    width: 78%;
    margin: 4em 0 0 11%;
  }

  .fr-module-detail-cloud {
    min-height: 220px;
  }

  .fr-module-detail-copy-col {
    margin: 0;
    padding: 20px 25px 20px 25px;
  }

  .fr-module-detail-card__title {
    margin-top: 70px;
    margin-bottom: 22px;
    font-size: 13px;
  }

  .fr-module-detail-card:first-child .fr-module-detail-card__title {
    margin-top: 0;
  }

  .fr-module-detail-card__body {
    font-size: 14px;
  }

  .fr-module-detail-gap {
    display: block;
  }

  .fr-module-detail-menu-col {
    grid-column: 4 / 5;
    width: auto;
    margin: 0;
    padding: 3.5em 0 0 1.5em;
  }

  .fr-module-detail-menu {
    padding: 20px 0 20px 20px;
  }

  .fr-module-detail-menu a {
    font-size: 11px;
    line-height: 1.25;
    margin-bottom: 0.9em;
  }
}


/* Mobile module-detail layout */

@media (max-width: 767px) {
  .fr-module-page-title {
    padding: 1em 0 1em 0;
  }

  .fr-module-page-title__heading {
    margin-top: 0;
    font-size: 29px;
    letter-spacing: 3.8px;
    -webkit-text-stroke: 0;
    text-stroke: 0;
  }

  .fr-module-detail-section {
    padding: 3em 0 4em 0;
  }

  .fr-module-detail-grid {
    display: grid;
    grid-template-columns: 58% 42%;
    column-gap: 0;
    row-gap: 2.5rem;
    width: calc(100% - 36px);
    margin: 0 auto;
    padding-top: 20px;
  }

  .fr-module-detail-intro-col {
    grid-column: 1 / 2;
    grid-row: 1;
    margin-top: 0;
    padding: 0;
    transform: translateY(-42px);
  }

  .fr-module-detail-strapline {
    width: auto;
    max-width: 180px;
    margin: 0;
    font-size: 24px;
    line-height: 0.95;
  }

  .fr-module-detail-cloud-wrap {
    width: 100%;
    margin: 2rem 0 0 0;
  }

  .fr-module-detail-cloud {
    min-height: 180px;
  }

  .fr-module-detail-menu-col {
    position: static;
    grid-column: 2 / 3;
    grid-row: 1;
    width: auto;
    margin: 0;
    padding: 0;
    align-self: start;
    justify-self: end;
    text-align: right;
  }

  .fr-module-quicklinks-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .fr-module-quicklinks-label {
    display: inline-block;
    color: #fe3400;
    font-family: var(--fr-font-secondary);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
  }

  .fr-module-detail-menu {
    display: none;
    width: auto;
    margin-top: 1rem;
    padding: 0;
    border-radius: 0;
    background: transparent;
  }

  .fr-module-quicklinks-toggle:checked ~ .fr-module-detail-menu {
    display: block;
  }

  .fr-module-detail-menu a {
    color: #fe3400;
    font-size: 10px;
    line-height: 1.2;
    margin-bottom: 0.85em;
    text-align: right;
  }

  .fr-module-detail-copy-col {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 0;
    padding: 0;
  }

  .fr-module-detail-card,
  .fr-module-detail-card + .fr-module-detail-card {
    margin-top: -10px;
  }

  .fr-module-detail-card__title {
    margin-top: 60px;
    margin-bottom: 20px;
    padding-bottom: 0;
    font-size: 11px;
  }

  .fr-module-detail-card:first-child .fr-module-detail-card__title {
    margin-top: 0;
  }

  .fr-module-detail-card__body {
    padding: 10px 10px 12px 10px;
    font-size: 14px;
  }

  .fr-module-detail-gap {
    display: none;
  }
}


/* =========================
   POLICY PAGES
   ========================= */

.fr-policy-page {
  background: var(--fr-black);
}

.fr-policy-title {
  width: 100vw;
  margin: 0;
  padding: 12em 0 0 0;
  background: var(--fr-black);
  color: #00FF00;
  overflow: hidden;
}

.fr-policy-title__heading {
  margin: -8px 20px 0 20px;
  color: #00FF00;
  font-family: var(--fr-font-secondary);
  font-size: 55px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 8.7px;
  text-align: center;
  text-transform: uppercase;
}

.fr-policy-content-section {
  width: 100vw;
  margin: 0;
  padding: 5em 0 10em 0;
  background: var(--fr-black);
  color: #ffffff;
  overflow: visible;
}

.fr-policy-grid {
  display: grid;
  grid-template-columns: 33% 40% 27%;
  column-gap: 0;
  align-items: start;
  width: 100%;
  margin: 0;
  padding-top: 20px;
}

.fr-policy-intro {
  margin-top: 3em;
  padding: 0;
}

.fr-policy-intro p {
  width: 66%;
  max-width: none;
  margin: 0 0 0 34%;
  color: var(--fr-cyan);
  font-family: var(--fr-font-secondary);
  font-size: 36px;
  font-weight: 900;
  line-height: 34px;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.fr-policy-intro span {
  display: block;
}

.fr-policy-content {
  padding: 20px 25px 20px 25px;
}

.fr-policy-updated {
  margin: 9px 10px 2em 10px;
  color: #ffffff;
  font-family: var(--fr-font-primary);
  font-size: 15px;
  font-weight: 350;
  line-height: 1.2;
  text-align: right;
}

.fr-policy-block {
  margin: 0;
  scroll-margin-top: 120px;
}

.fr-policy-block + .fr-policy-block {
  margin-top: 0;
}

.fr-policy-block__title {
  margin: 70px 0 22px 0;
  color: #D1E231;
  font-family: var(--fr-font-primary);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 3.7px;
  text-align: right;
  text-transform: uppercase;
}


.fr-policy-card {
  margin: 0;
  padding: 10px 10px 12px 10px;
  border-radius: 0;
  background: #9FFCD7;
  color: #000000;
  font-family: var(--fr-font-primary);
  font-size: 15px;
  font-weight: 350;
  line-height: 1.5;
  text-align: justify;
}

.fr-policy-card + .fr-policy-card,
.fr-policy-card + .fr-policy-table,
.fr-policy-table + .fr-policy-card {
  margin-top: 1em;
}

.fr-policy-card p {
  margin: 0 0 1em 0;
}

.fr-policy-card p:last-child {
  margin-bottom: 0;
}


/* Bullet-point styling inside the green box */

.fr-policy-list {
  margin: 0.25em 0 1em 0;
  padding: 0 45px 0 42px;
  list-style: none;
}

.fr-policy-list li {
  position: relative;
  margin: 0 0 1em -26px;
}

.fr-policy-list li:last-child {
  margin-bottom: 0;
}

.fr-policy-list li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: -0.08em;
  width: 28px;
  height: 28px;
  background-image: url("/uploads/website/policy-bullet.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.28;
}


/* Table */

.fr-policy-table {
  margin: 1em 0 0 0;
  color: #ffffff;
  font-family: var(--fr-font-primary);
  font-size: 13px;
  font-weight: 350;
  line-height: 1.5;
  border-bottom: 1px solid #D1E231;
}

.fr-policy-table__row {
  display: grid;
  grid-template-columns: 40% 60%;
}

.fr-policy-table__label,
.fr-policy-table__value {
  padding: 22px 20px 22px 20px;
  border-top: 1px solid #D1E231;
}

.fr-policy-table__label {
  border-left: 1px solid #00FF00;
  border-right: 1px solid #00FF00;
  border-top-color: #00FF00;
}

.fr-policy-table__value {
  border-right: 1px solid #D1E231;
  border-top-color: #D1E231;
}



/* Modular cookie-policy tables */

.fr-policy-mini-tables {
  margin: 1em 0 0 0;
}

.fr-policy-mini-table {
  margin: 0;
  color: #ffffff;
  font-family: var(--fr-font-primary);
  font-size: 13px;
  font-weight: 350;
  line-height: 1.5;
  border-bottom: 0;
}

.fr-policy-mini-table + .fr-policy-mini-table {
  margin-top: 3em;
}

.fr-policy-mini-table__row {
  display: grid;
  grid-template-columns: 48% 52%;
}

.fr-policy-mini-table__row:not(:first-child) {
  grid-template-columns: 24% 24% 52%;
}

.fr-policy-mini-table__row:not(:first-child) .fr-policy-mini-table__label {
  grid-column: 2 / 3;
}

.fr-policy-mini-table__row:not(:first-child) .fr-policy-mini-table__value {
  grid-column: 3 / 4;
}

.fr-policy-mini-table__row:first-child {
  position: relative;
}

.fr-policy-mini-table__row:first-child::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 24%;
  border-bottom: 1px solid #00FF00;
  pointer-events: none;
}

.fr-policy-mini-table__row:last-child .fr-policy-mini-table__label {
  border-bottom: 1px solid #00FF00;
}

.fr-policy-mini-table__row:last-child .fr-policy-mini-table__value {
  border-bottom: 1px solid #D1E231;
}

.fr-policy-mini-table__label,
.fr-policy-mini-table__value {
  padding: 22px 20px 22px 20px;
  border-top: 1px solid #D1E231;
}

.fr-policy-mini-table__label {
  border-left: 1px solid #00FF00;
  border-right: 1px solid #00FF00;
  border-top-color: #00FF00;
}

.fr-policy-mini-table__value {
  border-right: 1px solid #D1E231;
  border-top-color: #D1E231;
}


/* Right anchor-link column */

.fr-policy-toc {
  position: sticky;
  top: 150px;
  align-self: start;
  padding: 1.6em 0 0 6em;
}

.fr-policy-toc__nav {
  display: block;
  width: 100%;
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.fr-policy-toc__nav a {
  display: block;
  margin: 0 0 1.05em 0;
  color: #D1E231;
  font-family: var(--fr-font-secondary);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
}

.fr-policy-toc__nav a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.fr-policy-note {
  margin: 3em 0 0 0;
  color: #ffffff;
  font-family: var(--fr-font-primary);
  font-size: 15px;
  font-weight: 350;
  line-height: 1.5;
  text-align: justify;
}

.fr-policy-note p {
  margin: 0;
}

.fr-policy-card a,
.fr-policy-note a,
.fr-policy-table a {
  color: inherit;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.fr-policy-card strong,
.fr-policy-note strong,
.fr-policy-table strong {
  font-weight: 800;
  font-family: var(--fr-font-secondary);
  text-transform: uppercase;
  font-size: 13px;
}


.fr-policy-note:has(+ .fr-policy-table) {
  margin: 0 0 2em 0;
  padding: 0 10px;
}


.fr-policy-quicklinks-toggle,
.fr-policy-quicklinks-label {
  display: none;
}



/* Tablet policy layout */

@media (min-width: 768px) and (max-width: 1180px) {
  .fr-policy-title {
    padding-top: 3em;
  }

  .fr-policy-title__heading {
    font-size: 38px;
    letter-spacing: 3.8px;
  }

  .fr-policy-grid {
    grid-template-columns: 24% 52% 22%;
    column-gap: 0;
    width: 100%;
  }

  .fr-policy-intro {
    padding-top: 1.5em;
  }

  .fr-policy-intro p {
    width: 66%;
    max-width: none;
    margin-left: 11%;
    font-size: 24px;
    line-height: 29px;
  }

  .fr-policy-content {
    padding-top: 20px;
  }


  .fr-policy-table {
    font-size: 12px;
  }

  .fr-policy-table__row {
    grid-template-columns: 45% 55%;
  }

  .fr-policy-table__label,
  .fr-policy-table__value {
    padding: 18px 10px;
  }

  .fr-policy-mini-table {
    font-size: 14px;
  }

  .fr-policy-mini-table__row {
    grid-template-columns: 48% 52%;
  }

  .fr-policy-mini-table__label,
  .fr-policy-mini-table__value {
    padding: 18px 7px;
  }

  .fr-policy-card {
    font-size: 14px;
  }

  .fr-policy-toc {
    position: sticky;
    top: 10px;
    align-self: start;
    padding: 3.5em 0 0 1.5em;
  }

  .fr-policy-toc__nav a {
    font-size: 11px;
    margin-bottom: 0.9em;
  }
}


/* Mobile policy layout */

@media (max-width: 767px) {
  .fr-policy-title {
    padding: 1em 0 1em 0;
  }

  .fr-policy-title__heading {
    margin-top: 0;
    font-size: 29px;
    letter-spacing: 3.8px;
  }

  .fr-policy-content-section {
    padding: 3em 0 4em 0;
  }

  .fr-policy-grid {
    display: grid;
    grid-template-columns: 58% 42%;
    column-gap: 0;
    row-gap: 2.5rem;
    width: calc(100% - 36px);
    margin: 0 auto;
  }

  .fr-policy-intro {
    grid-column: 1 / 2;
    grid-row: 1;
    padding: 0;
    transform: translateY(-42px);
  }

  .fr-policy-intro p {
    max-width: 180px;
    margin: 0;
    font-size: 24px;
    line-height: 0.95;
  }

  .fr-policy-toc {
    position: static;
    grid-column: 2 / 3;
    grid-row: 1;
    width: auto;
    margin: 0;
    padding: 0;
    align-self: start;
    justify-self: end;
    text-align: right;
  }

  .fr-policy-quicklinks-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .fr-policy-quicklinks-label {
    display: inline-block;
    color: #D1E231;
    font-family: var(--fr-font-secondary);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
  }

  .fr-policy-toc__nav {
    display: none;
    margin-top: 1rem;
    padding: 0;
  }

  .fr-policy-quicklinks-toggle:checked ~ .fr-policy-toc__nav {
    display: block;
  }

  .fr-policy-toc__nav a {
    font-size: 10px;
    line-height: 1.2;
    margin-bottom: 0.85em;
  }

  .fr-policy-content {
    grid-column: 1 / -1;
    grid-row: 2;
    padding: 0;
  }

  .fr-policy-updated {
    font-size: 12px;
  }

  .fr-policy-block__title {
    margin-top: 60px;
    margin-bottom: 20px;
    padding-bottom: 0;
    font-size: 11px;
  }

  .fr-policy-card {
    padding: 10px 10px 12px 10px;
    font-size: 14px;
  }

  .fr-policy-list {
    padding-left: 34px;
  }

  .fr-policy-list li::before {
    left: -10px;
    width: 22px;
    height: 22px;
  }

  .fr-policy-table {
    font-size: 11px;
  }

  .fr-policy-table__row {
    grid-template-columns: 43% 57%;
  }

  .fr-policy-table__label,
  .fr-policy-table__value {
    padding: 18px 10px;
  }

  .fr-policy-mini-table {
    font-size: 11px;
  }

  .fr-policy-mini-table__row {
    grid-template-columns: 48% 52%;
  }

  .fr-policy-mini-table__label,
  .fr-policy-mini-table__value {
    padding: 18px 10px;
  }
}


/* =========================
   SITE FOOTER
   ========================= */

.fr-footer {
  /* CHANGED: one clear set of footer spacing controls */
  --fr-footer-top-space: 4em;
  --fr-footer-read-top-space: 3em;
  --fr-footer-read-bottom-space: 5em;
  --fr-footer-links-top-space: 6em;
  --fr-footer-legal-top-space: 15em;
  --fr-footer-bottom-space: 1em;

  width: 100vw;
  min-height: auto;
  display: block;

  margin: 0;
  padding: var(--fr-footer-top-space) 0 var(--fr-footer-bottom-space) 0;

  background: var(--fr-black);
  color: #ffffff;
  overflow: hidden;
}

.fr-footer-top {
  display: grid;
  grid-template-columns: 40% 60%;
  align-items: end;
  width: 100%;
  padding: 4em 40px 2em 40px;
}

.fr-footer-top__logo-col {
  display: flex;
  align-items: end;
}

.fr-footer-logo-link {
  display: inline-block;
  width: 54%;
  max-width: 430px;
}

.fr-footer-logo {
  display: block;
  width: 100%;
  height: auto;
}

.fr-footer-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px;
  align-items: end;
}

.fr-footer-button {
  position: relative;
  display: inline-block;
  justify-self: center;
  overflow: hidden;
  padding: 1px 3.5px;
  background: #ffffff;
  color: #000000;
  font-family: var(--fr-font-secondary);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.6px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.fr-footer-button__content {
  position: relative;
  z-index: 2;
}

.fr-footer-button__text {
  white-space: nowrap;
}

.fr-footer-button::after {
  content: attr(data-ticker);
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 3;
  transform: translateY(-50%);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  font-size: 29px;
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: inherit;
  line-height: 1;
  animation: none;
}

.fr-footer-button:hover .fr-footer-button__content {
  opacity: 0;
}

.fr-footer-button:hover::after {
  opacity: 1;
  animation: frFooterTickerInsideButton 3s linear infinite;
}

.fr-footer-button--signup:hover {
  background: #ffff00;
}

.fr-footer-button--login:hover {
  background: #00ff00;
}

.fr-footer-button--support:hover {
  background: #00ffff;
}

.fr-footer-button--contact:hover {
  background: #ff00ff;
}

@keyframes frFooterTickerInsideButton {
  from {
    transform: translate(0, -50%);
  }

  to {
    transform: translate(-248px, -50%);
  }
}

.fr-footer--updates {
  min-height: auto;
  padding-bottom: var(--fr-footer-bottom-space);
}

.fr-footer--updates .fr-footer-bottom {
  margin-bottom: var(--fr-footer-legal-top-space);
}

.fr-footer--updates .fr-footer-legal {
  position: static;
  padding: 0 40px 0 47px;
}

/* Read cards */

.fr-footer-read {
  width: 100%;
  padding:
    var(--fr-footer-read-top-space)
    40px
    var(--fr-footer-read-bottom-space)
    40px;
}

.fr-footer-kicker {
  margin: 0 0 3em 0;
  color: #ffffff;
  font-family: var(--fr-font-primary);
  font-size: 15px;
  font-weight: 800;
  font-style: italic;
  line-height: 14px;
  letter-spacing: 3.7px;
  text-transform: uppercase;
}

.fr-footer-read-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  width: 100%;
}

.fr-footer-read-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.fr-footer-read-card__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.fr-footer-read-card__copy {
  display: grid;
  grid-template-columns: 9% 91%;
  align-items: start;
  margin-top: 1.2em;
}

.fr-footer-read-card__star {
  display: block;
  width: 100%;
  min-width: 48px;
  opacity: 0.29;
  transform: translateX(-2px);
}

.fr-footer-read-card__text-wrap {
  padding-left: 0.4em;
  transform: translateY(20px);
}

.fr-footer-read-card__title {
  margin: 0 0 0 -0.6em;
  color: #D1E231;
  font-family: var(--fr-font-primary);
  font-size: 17px;
  font-weight: 750;
  line-height: 14px;
  text-transform: uppercase;
}

.fr-footer-read-card__text {
  margin: 0 0 0 -0.6em;
  color: #ffffff;
  font-family: var(--fr-font-primary);
  font-size: 15px;
  font-weight: 350;
  line-height: 1.4;
}


/* Bottom links */

.fr-footer-bottom {
  display: grid;
  grid-template-columns: 27% 73%;
  width: 100%;
  padding: var(--fr-footer-links-top-space) 40px 0 40px;
  margin-bottom: var(--fr-footer-legal-top-space);
}

.fr-footer-bottom__kicker-col {
  padding: 0;
}

.fr-footer-link-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 50px;
}

.fr-footer-link-column__title {
  margin: 0 0 1.7em 0;
  color: #ffffff;
  font-family: var(--fr-font-primary);
  font-size: 17px;
  font-weight: 800;
  line-height: 14px;
  text-transform: uppercase;
}

.fr-footer-link-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fr-footer-link-list li {
  margin: 0 0 0.8em 0;
}

.fr-footer-link-list a {
  position: relative;
  display: grid;
  grid-template-columns: 15% 85%;
  align-items: center;
  color: #D1E231;
  font-family: var(--fr-font-primary);
  font-size: 17px;
  font-weight: 800;
  line-height: 14px;
  text-transform: uppercase;
  text-decoration: none;
}

.fr-footer-link-list a:hover span {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.fr-footer-link-star {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  min-width: 42px;
  opacity: 0.29;
  transform: translate(-6px, 0);
}

.fr-footer-link-list span {
  position: relative;
  z-index: 2;
  display: block;
  margin-left: -1em;
}

.fr-footer-link-list a[href="/policies/terms-of-service/"] span {
  white-space: nowrap;
}


/* Legal */

.fr-footer-legal {
  width: 100%;
  margin: 0;
  padding: 0 40px 0 47px;
  color: #ffffff;
  font-family: var(--fr-font-primary);
  font-size: 15px;
  font-weight: 350;
  line-height: 1;
}

.fr-footer-legal p {
  margin: 0 0 0.65em 0;
}

.fr-footer-legal p:first-child {
  margin-bottom: 1.4em;
}



/* Desktop footer spacing */

@media (min-width: 1181px) {
  .fr-footer {
    --fr-footer-top-space: 4em;
    --fr-footer-read-top-space: 3em;
    --fr-footer-read-bottom-space: 5em;
    --fr-footer-links-top-space: 6em;
    --fr-footer-legal-top-space: 15em;
    --fr-footer-bottom-space: 1em;
  }

  .fr-footer.fr-footer--updates {
    --fr-footer-top-space: 4em;
    --fr-footer-links-top-space: 6em;
    --fr-footer-legal-top-space: 15em;
    --fr-footer-bottom-space: 1em;
  }
}


/* Tablet footer layout */

@media (min-width: 768px) and (max-width: 1180px) {
  .fr-footer {
    padding-top: 3em;
  }

  .fr-footer-top {
    grid-template-columns: 36% 64%;
    padding: 3em 32px 2em 32px;
  }

  .fr-footer-logo-link {
    width: 70%;
  }

  .fr-footer-buttons {
    gap: 22px;
  }

  .fr-footer-button {
    font-size: 20px;
  }

  .fr-footer-read {
    padding: 3em 32px 5em 32px;
  }

  .fr-footer-read-grid {
    gap: 28px;
  }

  .fr-footer-read-card__title {
    font-size: 14px;
  }

  .fr-footer-read-card__text {
    font-size: 13px;
  }

  .fr-footer-bottom {
    grid-template-columns: 22% 78%;
    padding: 5em 32px 0 32px;
  }

  .fr-footer-link-grid {
    column-gap: 30px;
  }

  .fr-footer-link-column__title,
  .fr-footer-link-list a {
    font-size: 15px;
  }

  .fr-footer-legal {
    padding: 7em 32px 0 32px;
    font-size: 14px;
  }
}


/* Mobile footer layout */

@media (max-width: 767px) {
  .fr-footer {
    padding: 0 0 4em 0;
  }

  .fr-footer-top {
    display: flex;
    flex-direction: column-reverse;
    align-items: stretch;
    padding: 39px 32px 0 32px;
  }

  .fr-footer-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1em 1.2em;
    margin-bottom: 72px;
  }

  .fr-footer-button {
    justify-self: stretch;
    font-size: 22px;
    padding: 2px 8px;
  }

  .fr-footer-buttons .fr-footer-button:nth-child(odd) {
    justify-self: start;
  }

  .fr-footer-buttons .fr-footer-button:nth-child(even) {
    justify-self: end;
  }

  .fr-footer-logo-link {
    width: 70%;
    max-width: none;
  }

  .fr-footer-read {
    padding: 73px 32px 0 32px;
  }

  .fr-footer-kicker {
    margin-bottom: 2em;
    font-size: 15px;
  }

  .fr-footer-read-grid {
    display: block;
  }

  .fr-footer-read-card {
    margin-bottom: 45px;
  }

  .fr-footer-read-card__copy {
    grid-template-columns: 16% 84%;
    margin-top: 0.9em;
  }

  .fr-footer-read-card__star {
    min-width: 0;
  }

  .fr-footer-read-card__title {
    margin-top: 0;
    margin-bottom: 0.5em;
    font-size: 15px;
  }

  .fr-footer-read-card__text {
    font-size: 14px;
  }

  .fr-footer-bottom {
    display: block;
    padding: 107px 32px 0 32px;
  }

  .fr-footer-bottom__kicker-col .fr-footer-kicker {
    margin-bottom: 2em;
  }

  .fr-footer-link-grid {
    display: block;
  }

  .fr-footer-link-column {
    margin: 0 0 2em 0;
  }

  .fr-footer-link-column__title {
    margin: 0 0 1em 0;
    font-size: 15px;
  }

  .fr-footer-link-list a {
    grid-template-columns: 16% 84%;
    font-size: 15px;
  }

  .fr-footer-link-star {
    min-width: 0;
  }

  .fr-footer-link-list li {
    margin-bottom: 0.7em;
  }

  .fr-footer-legal {
    padding: 5em 32px 0 32px;
    font-size: 14px;
  }
}



/* =========================
   MENU PAGE
   ========================= */

.fr-menu-page {
  width: 100vw;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  background: #E9FF00;
  color: #000000;
  overflow-x: hidden;
  transition: background-color 180ms linear;
}

.fr-menu-shell {
  width: 100%;
  min-height: 100vh;
  padding: 2.4em 2em 3em 2em;
}

.fr-menu-header {
  width: 100%;
  margin: 0 0 2.3em 0;
  text-align: center;
}

.fr-menu-logo-link {
  display: inline-block;
  width: 32%;
  max-width: 520px;
}

.fr-menu-logo {
  display: block;
  width: 100%;
  height: auto;
}

.fr-menu-links {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.fr-menu-link {
  display: block;
  margin: -6px auto 0 auto;
  color: #000000;
  font-family: var(--fr-font-secondary);
  font-size: 91px;
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.9px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 160ms ease;
}

.fr-menu-link:first-child {
  margin-top: 0;
}

.fr-menu-link:hover {
  color: #303031;
  text-decoration: none;
}

.fr-menu-buttons {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: center;
  align-items: center;
  gap: 5.5em;
  width: 100%;
  margin: 5em auto 0 auto;
}

.fr-menu-button {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 1px 4px;
  background: #ffffff;
  color: #000000;
  font-family: var(--fr-font-secondary);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1.6px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
}

.fr-menu-button__content {
  position: relative;
  z-index: 2;
}

.fr-menu-button__text {
  white-space: nowrap;
}

.fr-menu-button::after {
  content: attr(data-ticker);
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 3;
  transform: translateY(-50%);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  font-size: 29px;
  font-family: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: inherit;
  line-height: 1;
  animation: none;
}

.fr-menu-button:hover .fr-menu-button__content {
  opacity: 0;
}

.fr-menu-button:hover::after {
  opacity: 1;
  animation: frMenuTickerInsideButton 3s linear infinite;
}

.fr-menu-button--contact:hover {
  background: #ff00ff;
}

.fr-menu-button--support:hover {
  background: #00ffff;
}

.fr-menu-button--login:hover {
  background: #00ff00;
}

.fr-menu-button--signup:hover {
  background: #ffff00;
}

@keyframes frMenuTickerInsideButton {
  from {
    transform: translate(0, -50%);
  }

  to {
    transform: translate(-248px, -50%);
  }
}


/* Tablet menu page */

@media (min-width: 768px) and (max-width: 1180px) {
  .fr-menu-shell {
    padding: 2.2em 1.4em 3em 1.4em;
  }

  .fr-menu-logo-link {
    width: 34%;
  }

  .fr-menu-link {
    margin-top: -6px;
    font-size: 64px;
    line-height: 1.02;
  }

  .fr-menu-buttons {
    gap: 2.5em;
    margin-top: 4em;
  }

  .fr-menu-button {
    font-size: 20px;
    padding: 1px 4px;
  }
}


/* Mobile menu page */

@media (max-width: 767px) {
  .fr-menu-shell {
    min-height: 100vh;
    padding: 1.8em 0.8em 2.5em 0.8em;
  }

  .fr-menu-header {
    margin-bottom: 2.2em;
  }

  .fr-menu-logo-link {
    width: 56%;
  }

  .fr-menu-link {
    margin-top: -4px;
    font-size: 35px;
    line-height: 1.08;
    letter-spacing: -0.5px;
  }

  .fr-menu-buttons {
    grid-template-columns: repeat(2, auto);
    gap: 1em 1.2em;
    margin-top: 3.2em;
  }

  .fr-menu-button {
    font-size: 24px;
    padding: 1px 3px;
  }

  .fr-menu-button::after {
    font-size: 26px;
  }
}



/* =========================
   FEATURES PAGE
   ========================= */

.fr-features-page {
  width: 100vw;
  min-height: 100dvh;
  margin: 0;
  padding: 0;
  color: #000000;
  overflow-x: hidden;
  background-color: #e9ff00;
  transition: background-color 180ms linear;
}

@keyframes frFeaturesColourFlow {
  0% {
    background-position: 0% 50%;
  }

  25% {
    background-position: 55% 100%;
  }

  50% {
    background-position: 100% 50%;
  }

  75% {
    background-position: 45% 0%;
  }

  100% {
    background-position: 0% 50%;
  }
}


body:has(.fr-features-page) {
  background: #000000;
}

.fr-features-shell {
  width: 100%;
  min-height: 100dvh;
  padding: 4em 3.5em 8em 3.5em;
  background: transparent;
}

.fr-features-search-wrap {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 8.5em auto;
  text-align: center;
}

.fr-features-search {
  width: 100%;
  max-width: 650px;
  padding: 18px 28px;
  border: 2px solid #303031;
  border-radius: 55px;
  outline: none;
  background: #ffffff;
  color: #000000;
  font-family: var(--fr-font-primary);
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}

.fr-features-search:focus {
  border-color: #000000;
}

.fr-features-clear {
  display: none;
  margin-left: 12px;
  padding: 18px 24px;
  border: 2px solid #000000;
  border-radius: 55px;
  background: #ffff00;
  color: #000000;
  font-family: var(--fr-font-primary);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

.fr-features-clear:hover {
  background: #ffffff;
}

.fr-features-status {
  min-height: 1.2em;
  margin-top: 15px;
  color: #000000;
  font-family: var(--fr-font-primary);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.fr-features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7em 3.2em;
  width: 100%;
  max-width: 1900px;
  margin: 0 auto;
}

.fr-feature-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.fr-feature-card[hidden] {
  display: none;
}

.fr-feature-card__smilies {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 1.3em;
  width: 100%;
  margin: 0 0 1.7em 0;
}

.fr-feature-card__smilies img {
  display: block;
  width: 18px;
  height: auto;
}

.fr-feature-card__box {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 340px;
  border: 2px solid #303031;
  background: #ffffff;
  color: #000000;
}

.fr-feature-card__title-row {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  padding: 16px 20px 14px 20px;
  background: #ffffff;
}

.fr-feature-card__title-row h2 {
  margin: 0;
  color: #303031;
  font-family: var(--fr-font-primary);
  font-size: 15px;
  font-weight: 900;
  line-height: 15px;
  text-align: center;
  text-transform: uppercase;
}

.fr-feature-card__subtitle-row {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 20px 10px 20px;
  background: #ffff00;
}

.fr-feature-card__subtitle-row h3 {
  margin: 0;
  color: #000000;
  font-family: var(--fr-font-primary);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  text-transform: uppercase;
}

.fr-feature-card__body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 205px;
  padding: 22px 30px 28px 30px;
  background: #ffffff;
}

.fr-feature-card__body p {
  margin: 0;
  color: #000000;
  font-family: var(--fr-font-primary);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}

.fr-feature-card:hover .fr-feature-card__box {
  border-color: #000000;
}

.fr-feature-card:hover .fr-feature-card__title-row h2 {
  color: #000000;
}


/* Tablet features page */

@media (min-width: 768px) and (max-width: 1180px) {
  .fr-features-shell {
    padding: 4em 2em 7em 2em;
  }

  .fr-features-search-wrap {
    margin-bottom: 6em;
  }

  .fr-features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5em 2em;
  }

  .fr-feature-card__box {
    min-height: 370px;
  }

  .fr-feature-card__title-row {
    min-height: 86px;
  }

  .fr-feature-card__body {
    min-height: 210px;
  }
}


/* Mobile features page */

@media (max-width: 767px) {
  .fr-features-shell {
    padding: 3em 1.4em 6em 1.4em;
  }

  .fr-features-search-wrap {
    margin: 0 auto 4.5em auto;
  }

  .fr-features-search {
    padding: 15px 20px;
    font-size: 13px;
  }

  .fr-features-clear {
    width: 100%;
    max-width: 650px;
    margin: 12px 0 0 0;
    padding: 15px 20px;
  }

  .fr-features-grid {
    grid-template-columns: 1fr;
    gap: 4em;
  }

  .fr-feature-card__smilies {
    margin-bottom: 1.2em;
  }

  .fr-feature-card__smilies img {
    width: 16px;
  }

  .fr-feature-card__box {
    min-height: 330px;
  }

  .fr-feature-card__title-row {
    min-height: 78px;
    padding: 24px 18px 20px 18px;
  }

  .fr-feature-card__title-row h2 {
    font-size: 12px;
    line-height: 13px;
  }

  .fr-feature-card__subtitle-row {
    min-height: 46px;
    padding: 12px 18px 10px 18px;
  }

  .fr-feature-card__subtitle-row h3 {
    font-size: 11px;
  }

  .fr-feature-card__body {
    min-height: 190px;
    padding: 25px;
  }

  .fr-feature-card__body p {
    font-size: 13px;
  }
}


/* =========================
   PRICING PAGE HERO
   ========================= */

.fr-pricing-page {
  width: 100vw;
  margin: -15px 0 0 0;
  padding: 0;
  background: var(--fr-black);
  color: #ffffff;
  overflow-x: clip;
}

.fr-pricing-hero {
  width: 100vw;
  min-height: 100vh;
  margin: 0;
  padding: 0.5em 2.6em 7em 2.6em;
  background: var(--fr-black);
  color: #ffffff;
  overflow: hidden;
}

.fr-pricing-hero__grid {
  display: grid;
  grid-template-columns: 26% 38% 19% 17%;
  grid-template-areas:
    "logo logo clouds ."
    "headline room clouds nav"
    "headline room clouds nav";
  column-gap: 2em;
  align-items: start;
  width: 100%;
}

.fr-pricing-hero__logo-link {
  grid-area: logo;
  display: block;
  width: 60%;
  max-width: 780px;
}

.fr-pricing-hero__logo {
  display: block;
  width: 100%;
  height: auto;
}

.fr-pricing-hero__headline {
  grid-area: headline;
  align-self: center;
  margin-top: -4.58em;
  color: var(--fr-cyan);
  font-family: var(--fr-font-secondary);
  font-size: 36px;
  font-weight: 900;
  line-height: 33px;
  letter-spacing: -1px;
  text-align: right;
  text-transform: uppercase;
}

.fr-pricing-hero__headline span {
  display: block;
}

.fr-pricing-hero__room-wrap {
  grid-area: room;
  margin-top: -1.85em;
}

.fr-pricing-hero__room {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.fr-pricing-hero__button-wrap {
  margin-top: 1.4em;
  text-align: right;
}

.fr-pricing-hero__button {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 2px 3px;
  background: #ffffff;
  color: #000000;
  font-family: var(--fr-font-secondary);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.6px;
  text-transform: uppercase;
  text-decoration: none;
}

.fr-pricing-hero__button:hover {
  background: #ffff00;
}

.fr-pricing-hero__clouds {
  grid-area: clouds;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.45em;
  width: 100%;
}

.fr-pricing-hero__cloud {
  display: block;
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  border-radius: 12px;
}

.fr-pricing-hero__nav {
  grid-area: nav;
  margin-top: 3.1em;
}

.fr-pricing-hero__nav a {
  display: block;
  margin: 0 0 1.6em 0;
  color: #D1E231;
  font-family: var(--fr-font-secondary);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
}

.fr-pricing-hero__nav a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}



/* Tablet pricing hero */

@media (min-width: 768px) and (max-width: 1180px) {
  .fr-pricing-page {
    margin: -45px 0 0 0;
  }

  .fr-pricing-hero {
    min-height: auto;
    padding: 2em 1.2em 5em 1.2em;
  }

  .fr-pricing-hero__grid {
    grid-template-columns: 28% 48% 24%;
    grid-template-areas:
      "logo logo nav"
      "headline room nav"
      "clouds clouds nav";
    column-gap: 1.2em;
    row-gap: 1.4em;
    align-items: start;
    width: 100%;
  }

  .fr-pricing-hero__logo-link {
    width: 70%;
    max-width: 540px;
  }

  .fr-pricing-hero__headline {
    margin-top: 0;
    align-self: start;
    font-size: 29px;
    line-height: 27px;
    text-align: right;
  }

  .fr-pricing-hero__room-wrap {
    margin-top: 0;
  }

  .fr-pricing-hero__button-wrap {
    margin-top: 1rem;
  }

  .fr-pricing-hero__button {
    padding: 2px 3px;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
  }

  .fr-pricing-hero .ticker-hover-button::after {
    font-size: 24px;
  }

  .fr-pricing-hero__nav {
    margin-top: 7.5em;
    margin-right: 2em;
    text-align: right;
  }

  .fr-pricing-hero__nav a {
    margin-bottom: 0.9em;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
  }

  .fr-pricing-hero__clouds {
    grid-template-columns: repeat(3, 1fr);
    gap: 1em;
    width: 100%;
    margin-top: 0.5em;
  }
}



/* Mobile pricing hero */

@media (max-width: 767px) {
  .fr-pricing-page {
    margin: -45px 0 0 0;
  }

  .fr-pricing-hero {
    min-height: auto;
    padding: 2em 12px 4em 12px;
  }

  .fr-pricing-hero__grid {
    grid-template-columns: 58% 42%;
    grid-template-areas:
      "logo logo"
      "room room"
      "headline nav"
      "button nav"
      "clouds clouds";
    column-gap: 0;
    row-gap: 1.2rem;
    align-items: start;
    width: 100%;
  }

  .fr-pricing-hero__logo-link {
    width: 80%;
    max-width: none;
  }

  .fr-pricing-hero__headline {
    margin-top: 0;
    font-size: 31px;
    line-height: 29px;
    text-align: left;
  }

  .fr-pricing-hero__room-wrap {
    display: contents;
  }

  .fr-pricing-hero__room {
    grid-area: room;
  }

  .fr-pricing-hero__button-wrap {
    grid-area: button;
    margin-top: -0.2rem;
    text-align: left;
  }

  .fr-pricing-hero__button {
    padding: 2px 3px;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
  }

  .fr-pricing-hero .ticker-hover-button::after {
    font-size: 24px;
  }

  .fr-pricing-hero__clouds {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
  }

  .fr-pricing-hero__nav {
    margin-top: 0;
    padding-top: 0.2rem;
    text-align: right;
  }

  .fr-pricing-hero__nav a {
    margin-bottom: 0.85em;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
  }
}


/* =========================
   INNER MARKETING PAGE HEROES
   about / early access / features / updates / help
   ========================= */

.fr-marketing-page {
  width: 100vw;
  margin: -15px 0 0 0;
  padding: 0;
  background: var(--fr-black);
  color: #ffffff;
  overflow-x: clip;
}

.fr-page-hero {
  width: 100vw;
  min-height: 100vh;
  margin: 0;
  padding: 0.5em 2.6em 7em 2.6em;
  background: var(--fr-black);
  color: #ffffff;
  overflow: hidden;
}

.fr-page-hero__grid {
  display: grid;
  grid-template-columns: 26% 38% 19% 17%;
  grid-template-areas:
    "logo logo clouds ."
    "headline room clouds nav"
    "headline room clouds nav";
  column-gap: 2em;
  align-items: start;
  width: 100%;
}

.fr-page-hero__logo-link {
  grid-area: logo;
  display: block;
  width: 60%;
  max-width: 780px;
}

.fr-page-hero__logo {
  display: block;
  width: 100%;
  height: auto;
}

.fr-page-hero__headline {
  grid-area: headline;
  align-self: center;
  margin-top: -1.2em;
  color: var(--fr-cyan);
  font-family: var(--fr-font-secondary);
  font-size: 36px;
  font-weight: 900;
  line-height: 33px;
  letter-spacing: -1px;
  text-align: right;
  text-transform: uppercase;
}

.fr-page-hero__headline span {
  display: block;
}

.fr-page-hero__room-wrap {
  grid-area: room;
  margin-top: 1.2em;
}

.fr-page-hero__room {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.fr-page-hero__button-wrap {
  margin-top: 1.4em;
  text-align: right;
}

.fr-page-hero__button {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 2px 3px;
  background: #ffffff;
  color: #000000;
  font-family: var(--fr-font-secondary);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.6px;
  text-transform: uppercase;
  text-decoration: none;
}

.fr-page-hero__button:hover {
  background: #ffff00;
}

.fr-page-hero__clouds {
  grid-area: clouds;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.45em;
  width: 100%;
}

.fr-page-hero__cloud {
  display: block;
  width: 100%;
  aspect-ratio: 1.5 / 1;
  object-fit: cover;
  border-radius: 12px;
}

.fr-page-hero__nav {
  grid-area: nav;
  margin-top: 3.1em;
}

.fr-page-hero__nav a {
  display: block;
  margin: 0 0 1.6em 0;
  color: #D1E231;
  font-family: var(--fr-font-secondary);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
}

.fr-page-hero__nav a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* Tablet inner marketing page heroes */

@media (min-width: 768px) and (max-width: 1180px) {
  .fr-marketing-page {
    margin: -45px 0 0 0;
  }

  .fr-page-hero {
    min-height: auto;
    padding: 2em 1.2em 5em 1.2em;
  }

  .fr-page-hero__grid {
    grid-template-columns: 28% 48% 24%;
    grid-template-areas:
      "logo logo nav"
      "headline room nav"
      "clouds clouds nav";
    column-gap: 1.2em;
    row-gap: 1.4em;
    align-items: start;
    width: 100%;
    transform: none;
  }

  .fr-page-hero__logo-link {
    width: 70%;
    max-width: 540px;
  }

  .fr-page-hero__headline {
    margin-top: 0;
    align-self: start;
    font-size: 29px;
    line-height: 27px;
    text-align: right;
  }

  .fr-page-hero__room-wrap {
    margin-top: 0;
  }

  .fr-page-hero__button-wrap {
    margin-top: 1rem;
  }

  .fr-page-hero__button {
    padding: 2px 3px;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
  }

  .fr-page-hero .ticker-hover-button::after {
    font-size: 24px;
  }

  .fr-page-hero__nav {
    margin-top: 7.5em;
    margin-right: 2em;
    text-align: right;
  }

  .fr-page-hero__nav a {
    margin-bottom: 0.9em;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.25;
  }

  .fr-page-hero__clouds {
    grid-template-columns: repeat(3, 1fr);
    gap: 1em;
    width: 100%;
    margin-top: 0.5em;
  }
}


/* Mobile inner marketing page heroes */

@media (max-width: 767px) {
  .fr-marketing-page {
    margin: -45px 0 0 0;
  }

  .fr-page-hero {
    min-height: auto;
    padding: 2em 12px 4em 12px;
  }

  .fr-page-hero__grid {
    grid-template-columns: 58% 42%;
    grid-template-areas:
      "logo logo"
      "room room"
      "headline nav"
      "button nav"
      "clouds clouds";
    column-gap: 0;
    row-gap: 1.2rem;
    align-items: start;
    width: 100%;
    transform: none;
  }

  .fr-page-hero__logo-link {
    width: 80%;
    max-width: none;
  }

  .fr-page-hero__headline {
    margin-top: 0;
    font-size: 31px;
    line-height: 29px;
    text-align: left;
  }

  .fr-page-hero__room-wrap {
    display: contents;
  }

  .fr-page-hero__room {
    grid-area: room;
  }

  .fr-page-hero__button-wrap {
    grid-area: button;
    margin-top: -0.2rem;
    text-align: left;
  }

  .fr-page-hero__button {
    padding: 2px 3px;
    font-size: 22px;
    font-weight: 800;
    line-height: 1;
  }

  .fr-page-hero .ticker-hover-button::after {
    font-size: 24px;
  }

  .fr-page-hero__clouds {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    width: 100%;
  }

  .fr-page-hero__nav {
    margin-top: 0;
    padding-top: 0.2rem;
    text-align: right;
  }

  .fr-page-hero__nav a {
    margin-bottom: 0.85em;
    font-size: 10px;
    font-weight: 800;
    line-height: 1.2;
  }
}


/* =========================
   WEBSITE NAV TOGGLE
   ========================= */

.fr-site-nav-toggle {
  position: fixed;
  top: 0px;
  right: 5px;

  --fr-nav-toggle-y: -18px;

  z-index: 9000;
  display: block;
  width: 158px;
  height: 158px;
  line-height: 0;
  text-decoration: none;
  opacity: 1;
  transform: translateY(var(--fr-nav-toggle-y));
  transition:
    opacity 180ms ease,
    transform 180ms ease;
  will-change: opacity, transform;
}

.fr-site-nav-toggle.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-90px);
}

.fr-site-nav-toggle__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fr-site-nav-toggle:hover {
  transform: translateY(var(--fr-nav-toggle-y)) scale(1.04);
}


/* Tablet website nav toggle */

@media (min-width: 768px) and (max-width: 1180px) {
  .fr-site-nav-toggle {
    top: 5px;
    right: 0px;
    width: 100px;
    height: 100px;
  }

  .fr-site-nav-toggle.is-hidden {
    transform: translateY(-80px);
  }
}


/* Mobile website nav toggle */

@media (max-width: 767px) {
  .fr-site-nav-toggle {
    top: 34px;
    right: 0px;
    width: 80px;
    height: 80px;
  }

  .fr-site-nav-toggle.is-hidden {
    transform: translateY(-70px);
  }
}



/* =========================
   BLOG / INSIGHTS PAGES
   ========================= */

.fr-blog-page {
  background: var(--fr-black);
}

/* CHANGED: stripped-back title area */
.fr-blog-page-title {
  width: 100vw;
  margin: 0;
  padding: clamp(5rem, 8vw, 7rem) 4.5rem 0.35em 4.5rem;
  background: var(--fr-black);
  color: #ffffff;
  overflow: visible;
}


.fr-blog-page-title__heading {
  max-width: 980px;
  margin: 0;
  color: #ffffff;
  font-family: var(--fr-font-secondary);
  font-size: clamp(80px, 6.4vw, 100px);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-align: left;
  text-transform: none;
}

/* CHANGED: plain article section, not card-heavy */
.fr-blog-detail-section {
  width: 100vw;
  margin: 0;
  padding: 4.5rem 4.5rem 9rem 4.5rem;
  background: var(--fr-black);
  color: #ffffff;
  overflow: hidden;
}

/* CHANGED: two-column article layout */
.fr-blog-detail-grid {
  display: grid;
  grid-template-columns: minmax(260px, 33%) minmax(420px, 1fr);
  column-gap: 340px;
  align-items: start;
  width: 100%;
  max-width: 1320px;
  margin: 0;
  padding: 0;
}

/* CHANGED: intro column now starts cleanly */
.fr-blog-detail-intro-col {
  margin: 0;
  padding: 0;
}

/* CHANGED: replaces old .fr-blog-detail-strapline */
.fr-blog-detail-intro-heading {
  margin: 0 0 1.4rem 0;
  color: #D1E231;
  font-family: var(--fr-font-secondary);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

/* CHANGED: intro uses Antipoda / primary font */
.fr-blog-detail-intro-copy {
  max-width: 430px;
  margin: 0;
  color: #ffffff;
  font-family: var(--fr-font-primary);
  font-size: 15px;
  font-weight: 350;
  line-height: 1.35;
  text-align: left;
}

/* CHANGED: paragraph spacing for plain article intro */
.fr-blog-detail-intro-copy p {
  margin: 0 0 1em 0;
}

.fr-blog-detail-intro-copy p:last-child {
  margin-bottom: 0;
}

/* CHANGED: image sits under intro text */
.fr-blog-detail-cloud-wrap {
  width: 100%;
  margin: 3.2rem 0 0 0;
  border-radius: 0;
  overflow: hidden;
}

/* CHANGED: taller crop like the stripped-back reference */
.fr-blog-detail-cloud {
  display: block;
  width: 100%;
  height: min(62vw, 620px);
  min-height: 520px;
  object-fit: cover;
  border-radius: 0;
}

.fr-blog-detail-copy-col {
  width: 100%;
  max-width: 480px;
  margin: 0;
  padding: 0;
}

.fr-blog-detail-card {
  margin: 0;
}

.fr-blog-detail-card + .fr-blog-detail-card {
  margin-top: 3.2rem;
}


.fr-blog-detail-card__title {
  margin: 0 0 0.8rem 0;
  color: #D1E231;
  font-family: var(--fr-font-secondary);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

/* CHANGED:
   - removed green background
   - removed card padding
   - body is Antipoda / primary font */
.fr-blog-detail-card__body {
  margin: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  font-family: var(--fr-font-primary);
  font-size: 15px;
  font-weight: 350;
  line-height: 1.35;
  text-align: left;
}

.fr-blog-detail-card__body p {
  margin: 0 0 1em 0;
}

.fr-blog-detail-card__body p:last-child {
  margin-bottom: 0;
}


/* =========================
   BLOG RELATED ARTICLE TILES
   ========================= */

.fr-blog-related {
  /* CHANGED: sits directly under the blog article */
  width: 100vw;
  margin: 0;
  padding: 0 40px 8em 40px;
  background: var(--fr-black);
  color: #ffffff;
}

/* CHANGED:
   optional, but recommended.
   This hides the normal static footer "read all about it" row on blog pages,
   so you do not get two article-tile rows. */
.fr-blog-page .fr-footer > .fr-footer-read {
  display: none;
}


/* Tablet blog layout */

@media (min-width: 768px) and (max-width: 1180px) {
  .fr-blog-page-title {
    padding: 4.5rem 2.5rem 0.45em 2.5rem;
    overflow: visible;
  }

  .fr-blog-page-title__heading {
    font-size: clamp(58px, 8vw, 82px);
    line-height: 1.08;
  }

  .fr-blog-detail-section {
    padding: 3.8rem 2.5rem 7rem 2.5rem;
  }

  .fr-blog-detail-grid {
    grid-template-columns: minmax(220px, 30%) minmax(0, 1fr);
    column-gap: clamp(5.5rem, 11vw, 8rem);
    max-width: none;
  }

  .fr-blog-detail-intro-copy,
  .fr-blog-detail-card__body {
    font-size: 15px;
    line-height: 1.35;
  }

  .fr-blog-detail-cloud {
    height: 56vw;
    min-height: 380px;
  }

  .fr-blog-detail-copy-col {
    justify-self: start;
    width: 100%;
    max-width: 380px;
  }
}

/* Tablet blog related tiles */

@media (min-width: 768px) and (max-width: 1180px) {
  .fr-blog-related {
    padding: 0 32px 7em 32px;
  }

  .fr-blog-related .fr-footer-read-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4.5em 32px;
  }

  .fr-blog-related .fr-footer-read-card__copy {
    grid-template-columns: 12% 88%;
  }

  .fr-blog-related .fr-footer-read-card__title {
    font-size: 15px;
  }

  .fr-blog-related .fr-footer-read-card__text {
    font-size: 14px;
  }
}



/* Mobile blog layout */

@media (max-width: 767px) {
  .fr-blog-page-title {
    padding: 3.5rem 1.25rem 0 1.25rem;
  }

  .fr-blog-page-title__heading {
    font-size: clamp(42px, 13vw, 62px);
    line-height: 1;
    letter-spacing: -0.04em;
  }

  .fr-blog-detail-section {
    padding: 3rem 1.25rem 5rem 1.25rem;
  }

  .fr-blog-detail-grid {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .fr-blog-detail-intro-col {
    margin: 0 0 3rem 0;
    padding: 0;
  }

  .fr-blog-detail-intro-heading,
  .fr-blog-detail-card__title {
    font-size: 12px;
    letter-spacing: 0.08em;
  }

  .fr-blog-detail-intro-copy,
  .fr-blog-detail-card__body {
    max-width: none;
    font-size: 13px;
    line-height: 1.35;
  }

  .fr-blog-detail-cloud-wrap {
    margin-top: 2rem;
  }

  .fr-blog-detail-cloud {
    height: 118vw;
    min-height: 420px;
  }

  .fr-blog-detail-copy-col {
    max-width: none;
  }

  .fr-blog-detail-card + .fr-blog-detail-card {
    margin-top: 2.6rem;
  }
}


/* Mobile blog related tiles */

@media (max-width: 767px) {
  .fr-blog-related {
    padding: 0 32px 5em 32px;
  }

  .fr-blog-related .fr-footer-read-grid {
    display: block;
  }

  .fr-blog-related .fr-footer-read-card {
    margin-bottom: 45px;
  }

  .fr-blog-related .fr-footer-read-card__copy {
    grid-template-columns: 16% 84%;
    margin-top: 0.9em;
  }

  .fr-blog-related .fr-footer-read-card__star {
    min-width: 0;
  }

  .fr-blog-related .fr-footer-read-card__title {
    margin-top: 0;
    margin-bottom: 0.5em;
    font-size: 15px;
  }

  .fr-blog-related .fr-footer-read-card__text {
    font-size: 14px;
  }
}




/* =========================
   UPDATES ARTICLE TILES
   ========================= */

.fr-updates-articles-section {
  width: 100vw;
  margin: 0;
  padding: 5em 40px 8em 40px;
  background: var(--fr-black);
  color: #ffffff;
}

.fr-updates-articles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5em 50px;
  width: 100%;
}

.fr-updates-article-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.fr-updates-article-card__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.fr-updates-article-card__copy {
  display: grid;
  grid-template-columns: 9% 91%;
  align-items: start;
  margin-top: 1.2em;
}

.fr-updates-article-card__star {
  display: block;
  width: 100%;
  min-width: 48px;
  opacity: 0.29;
  transform: translateX(-2px);
}

.fr-updates-article-card__text-wrap {
  padding-left: 0.4em;
  transform: translateY(20px);
}

.fr-updates-article-card__title {
  margin: 0 0 0 -0.6em;
  color: #D1E231;
  font-family: var(--fr-font-primary);
  font-size: 17px;
  font-weight: 750;
  line-height: 16px;
  text-transform: uppercase;
}

.fr-updates-article-card__text {
  margin: 0 0 0 -0.6em;
  color: #ffffff;
  font-family: var(--fr-font-primary);
  font-size: 15px;
  font-weight: 350;
  line-height: 1.4;
}

.fr-updates-article-card:hover .fr-updates-article-card__title {
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* Tablet updates article tiles */

@media (min-width: 768px) and (max-width: 1180px) {
  .fr-updates-articles-section {
    padding: 4em 32px 7em 32px;
  }

  .fr-updates-articles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4.5em 32px;
  }

  .fr-updates-article-card__copy {
    grid-template-columns: 12% 88%;
  }

  .fr-updates-article-card__title {
    font-size: 15px;
  }

  .fr-updates-article-card__text {
    font-size: 14px;
  }
}


/* Mobile updates article tiles */

@media (max-width: 767px) {
  .fr-updates-articles-section {
    padding: 73px 32px 5em 32px;
  }

  .fr-updates-articles-grid {
    display: block;
  }

  .fr-updates-article-card {
    margin-bottom: 45px;
  }

  .fr-updates-article-card__copy {
    grid-template-columns: 16% 84%;
    margin-top: 0.9em;
  }

  .fr-updates-article-card__star {
    min-width: 0;
  }

  .fr-updates-article-card__title {
    margin-top: 0;
    margin-bottom: 0.5em;
    font-size: 15px;
  }

  .fr-updates-article-card__text {
    font-size: 14px;
  }
}


/* =========================
   ABOUT INTRO SECTION
   ========================= */

.fr-about-intro-section {
  width: 100vw;
  min-height: 100vh;
  margin: -16px 0 0 0;
  padding: 1.2em 2.6em 8em 2.6em;

  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;

  color: #ffffff;
  overflow: hidden;
}

.fr-about-intro-section__logo-link {
  display: block;
  width: clamp(520px, 39vw, 680px);
  max-width: 780px;
}

.fr-about-intro-section__logo {
  display: block;
  width: 100%;
  height: auto;
}

.fr-about-intro-section__inner {
  max-width: 980px;

  /* CHANGED:
     controls the gap between the logo and the intro text */
  margin: 8em 0 0 0;
}

.fr-about-intro-section__intro {
  margin: 0;
  max-width: 920px;

  font-family: var(--fr-font-secondary);
  font-size: clamp(48px, 5.8vw, 96px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.fr-about-intro-section__body {
  max-width: 620px;
  margin: 3em 0 0 0;

  font-family: var(--fr-font-primary);
  font-size: 22px;
  font-weight: 350;
  line-height: 1.25;
}

.fr-about-intro-section__location {
  margin: 4em 0 0 0;

  font-family: var(--fr-font-secondary);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 3.7px;
  text-transform: uppercase;
}


/* =========================
   BILLING CHOICES SECTION
   ========================= */

.fr-billing-section {
  width: 100vw;
  margin: 0;
  padding: 8em 3em 9em 3em;
  background: var(--fr-black);
  color: #ffffff;
  overflow: hidden;
}

.fr-billing-grid {
  display: grid;
  grid-template-columns: 31% 69%;
  gap: 3em;
  width: 100%;
}

.fr-billing-left {
  padding-top: 0.5em;
}

.fr-billing-kicker {
  margin: 0 0 2em 0;
  color: #D1E231;
  font-family: var(--fr-font-primary);
  font-size: 15px;
  font-weight: 900;
  font-style: italic;
  line-height: 1;
  letter-spacing: 3.7px;
  text-transform: uppercase;
}

.fr-billing-title {
  margin: 0;
  color: var(--fr-cyan);
  font-family: var(--fr-font-secondary);
  font-size: clamp(48px, 5.3vw, 92px);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -3px;
  text-transform: uppercase;
}

.fr-billing-intro {
  max-width: 330px;
  margin: 2.5em 0 0 0;
  font-family: var(--fr-font-primary);
  font-size: 15px;
  font-weight: 350;
  line-height: 1.45;
}

.fr-billing-right {
  min-width: 0;
}

.fr-billing-toggle {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 0 1.5em 0;
}

.fr-billing-toggle__button {
  appearance: none;
  border: 2px solid #ffffff;
  border-radius: 0;
  padding: 0.75em 0.8em;
  background: transparent;
  color: #ffffff;
  font-family: var(--fr-font-secondary);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.4px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.fr-billing-toggle__button.is-active {
  background: #D1E231;
  border-color: #D1E231;
  color: #000000;
}

.fr-billing-panel {
  margin: 0;
}

.fr-billing-mode-note {
  display: grid;
  grid-template-columns: 28% 32% 40%;
  gap: 1em;
  align-items: stretch;
  margin: 0 0 1em 0;
}

.fr-billing-mode-note__kicker {
  margin: 0;
  color: #D1E231;
  font-family: var(--fr-font-secondary);
  font-size: 28px;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.fr-billing-mode-note__summary {
  margin: 0;
  padding: 0.8em 1em;
  background: #ffffff;
  color: #000000;
  font-family: var(--fr-font-primary);
  font-size: 15px;
  font-weight: 350;
  line-height: 1.35;
}

.fr-billing-delivery-callout {
  padding: 0.8em 1em;
  background: #BD00FF;
  color: #000000;
}

.fr-billing-delivery-callout span {
  display: block;
  margin: 0 0 0.8em 0;
  font-family: var(--fr-font-secondary);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.fr-billing-delivery-callout p {
  margin: 0;
  font-family: var(--fr-font-primary);
  font-size: 15px;
  font-weight: 350;
  line-height: 1.35;
}

.fr-billing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.fr-billing-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 1em;
  background: #ffffff;
  color: #000000;
}

.fr-billing-card__top {
  margin: 0 0 1.8em 0;
}

.fr-billing-card__top h3 {
  margin: 0;
  color: #000000;
  font-family: var(--fr-font-secondary);
  font-size: 42px;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -2px;
  text-transform: uppercase;
}

.fr-billing-card__top p {
  margin: 0.35em 0 0 0;
  color: #000000;
  font-family: var(--fr-font-secondary);
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.8px;
  text-transform: uppercase;
}

.fr-billing-card__delivery {
  margin: 0 0 1.5em 0;
  padding: 0.65em;
  background: #D1E231;
  color: #000000;
  font-family: var(--fr-font-primary);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.fr-billing-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fr-billing-card__list li {
  margin: 0 0 0.8em 0;
  font-family: var(--fr-font-primary);
  font-size: 15px;
  font-weight: 350;
  line-height: 1.25;
}

.fr-billing-card__button {
  display: inline-block;
  width: max-content;
  margin: auto 0 0 0;
  padding: 0.25em 0.35em;
  background: #000000;
  color: #ffffff;
  font-family: var(--fr-font-secondary);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.4px;
  text-transform: uppercase;
  text-decoration: none;
}

.fr-billing-card__button:hover {
  background: var(--fr-cyan);
  color: #000000;
}






/* TEMP TEST: homepage modules mobile/tablet module list */
@media (max-width: 1180px) {
  .fr-modules-list,
  .fr-modules-list *,
  .fr-module-item,
  .fr-module-item *,
  .fr-module-tooltip-trigger,
  .fr-module-tooltip-trigger * {
    font-size: 12px !important;
    line-height: 1 !important;
    color: red !important;
    background: yellow !important;
  }
}







