:root {
  --yellow: #ffd500;
  --orange: #ff5000;
  --orange-text: #b83c00;
  --ink: #171411;
  --cream: #fff9ed;
  --white: #fffdf8;
  --muted: rgba(23, 20, 17, 0.64);
  --line: rgba(23, 20, 17, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--cream);
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Figtree", "Avenir Next", Avenir, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
  transform: translateY(calc(-100% - 1rem));
  transition: transform 160ms ease;
}

.skip-link:focus {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
  transform: translateY(0);
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  background: linear-gradient(180deg, rgba(255, 249, 237, 0.94), rgba(255, 249, 237, 0));
}

.header-inner {
  width: min(1320px, calc(100% - clamp(2.25rem, 5vw, 4rem)));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.brand {
  width: 104px;
  display: block;
  border-radius: 8px;
}

.brand img {
  width: 100%;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 2.7vw, 2.4rem);
}

.main-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(23, 20, 17, 0.68);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.035em;
  text-decoration: none;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--yellow);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

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

.main-nav a:hover::after {
  transform: scaleX(1);
}

.main-nav a[aria-current="page"] {
  color: var(--ink);
}

.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.main-nav a:focus-visible,
.cta:focus-visible,
.brand:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 5px;
  border-radius: 6px;
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  min-height: max(780px, 100svh);
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 51%, rgba(255, 255, 255, 0.76), transparent 28%),
    linear-gradient(180deg, #fffaf0 0%, #fbf1df 64%, #f4e6cf 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(220, 192, 145, 0.18));
  pointer-events: none;
}

.ambient-light {
  position: absolute;
  z-index: -2;
  width: min(62vw, 900px);
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(22px);
  opacity: 0.2;
  pointer-events: none;
}

.ambient-light-card {
  top: 21%;
  left: -20%;
  background: radial-gradient(circle, rgba(255, 213, 0, 0.55), rgba(255, 213, 0, 0.12) 38%, transparent 70%);
}

.ambient-light-app {
  top: 25%;
  right: -22%;
  background: radial-gradient(circle, rgba(255, 80, 0, 0.34), rgba(255, 80, 0, 0.08) 38%, transparent 70%);
}

.hero-inner {
  width: min(1400px, calc(100% - 2.5rem));
  min-height: max(780px, 100svh);
  margin: 0 auto;
  padding: 132px 0 44px;
  display: grid;
  grid-template-columns: minmax(0, 32%) minmax(0, 36%) minmax(0, 32%);
  grid-template-areas: "card copy app";
  align-items: center;
}

.hero-copy {
  grid-area: copy;
  align-self: start;
  width: min(510px, 100%);
  margin: 0 auto;
  padding-top: clamp(2.75rem, 7vh, 5.125rem);
  text-align: center;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--orange-text);
  font-size: 0.71rem;
  font-weight: 750;
  letter-spacing: 0.19em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow span {
  margin: 0 0.35em;
  color: #a98400;
}

h1,
p {
  text-wrap: balance;
}

h1 {
  margin: 0;
  font-size: clamp(3.15rem, 5vw, 5rem);
  font-weight: 780;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.hero-intro {
  max-width: 460px;
  margin: 25px auto 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  font-weight: 450;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 31px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.cta {
  min-height: 52px;
  padding: 14px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background: var(--orange);
  border: 1px solid rgba(23, 20, 17, 0.12);
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(255, 80, 0, 0.16);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.1;
  text-decoration: none;
  transition: background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.cta:hover {
  background: #ff641f;
  box-shadow: 0 16px 38px rgba(255, 80, 0, 0.25);
  transform: translateY(-2px);
}

.product {
  position: relative;
  margin: 0;
  align-self: center;
}

.product-card {
  grid-area: card;
  justify-self: start;
  width: min(42vw, 590px);
  margin-top: clamp(3rem, 8vh, 5rem);
  transform: rotate(-2.5deg);
}

.card-artwork {
  position: relative;
}

.card-artwork::before {
  content: "";
  position: absolute;
  inset: 17% 10% 10%;
  z-index: -2;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 213, 0, 0.28), rgba(255, 80, 0, 0.07) 46%, transparent 72%);
  filter: blur(28px);
}

.card-artwork::after {
  content: "";
  position: absolute;
  right: 16%;
  bottom: 7%;
  left: 16%;
  height: 14%;
  z-index: -1;
  border-radius: 50%;
  background: rgba(77, 53, 20, 0.3);
  filter: blur(22px);
  transform: skewX(-8deg);
}

.card-artwork img {
  width: 100%;
  filter:
    drop-shadow(0 30px 34px rgba(83, 57, 21, 0.26))
    drop-shadow(0 0 22px rgba(255, 213, 0, 0.1))
    saturate(1.11)
    contrast(1.035)
    brightness(1.015);
  -webkit-mask-image: radial-gradient(ellipse 78% 76% at 50% 51%, #000 46%, rgba(0, 0, 0, 0.98) 60%, rgba(0, 0, 0, 0.72) 74%, rgba(0, 0, 0, 0.22) 88%, transparent 100%);
  mask-image: radial-gradient(ellipse 78% 76% at 50% 51%, #000 46%, rgba(0, 0, 0, 0.98) 60%, rgba(0, 0, 0, 0.72) 74%, rgba(0, 0, 0, 0.22) 88%, transparent 100%);
}

.product-app {
  grid-area: app;
  justify-self: center;
  width: min(18vw, 255px);
  margin-top: clamp(1.5rem, 4vh, 3rem);
  transform: rotate(2deg);
}

.phone {
  position: relative;
  width: 100%;
  padding: 7px;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: clamp(34px, 3.3vw, 48px);
  box-shadow:
    0 34px 70px rgba(0, 0, 0, 0.58),
    -8px 8px 40px rgba(255, 80, 0, 0.13),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.phone::after {
  content: "";
  position: absolute;
  right: 17%;
  bottom: -7%;
  left: 17%;
  z-index: -1;
  height: 13%;
  border-radius: 50%;
  background: rgba(255, 80, 0, 0.24);
  filter: blur(24px);
}

.phone img {
  width: 100%;
  aspect-ratio: 603 / 1306;
  object-fit: cover;
  border-radius: calc(clamp(34px, 3.3vw, 48px) - 7px);
}

.phone-speaker {
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 2;
  width: 38%;
  height: 16px;
  background: #050505;
  border-radius: 999px;
  transform: translateX(-50%);
}

.feature-label {
  position: absolute;
  z-index: 3;
  min-width: 174px;
  padding: 11px 14px 12px;
  display: grid;
  gap: 3px;
  color: var(--ink);
  background: rgba(255, 252, 245, 0.78);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(83, 57, 21, 0.12);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.feature-label span {
  color: rgba(23, 20, 17, 0.5);
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.feature-label strong {
  font-size: 0.77rem;
  font-weight: 650;
}

.feature-label-card {
  top: 64%;
  left: 9%;
  transform: rotate(2.5deg);
}

.feature-label-app {
  top: 69%;
  right: calc(100% + 0.25rem);
  transform: rotate(-2deg);
}

.product-pointer {
  position: absolute;
  z-index: 2;
  display: block;
  background: rgba(23, 20, 17, 0.34);
  pointer-events: none;
}

.product-pointer-card {
  top: calc(64% - clamp(3rem, 6vw, 5.25rem));
  left: 32%;
  width: 1px;
  height: clamp(3rem, 6vw, 5.25rem);
}

.product-pointer-app {
  top: 74%;
  left: -0.25rem;
  width: clamp(1.5rem, 2.5vw, 2.25rem);
  height: 1px;
}

@media (max-width: 1120px) {
  .hero-inner {
    width: min(100% - 2.25rem, 1040px);
    grid-template-columns: minmax(0, 31%) minmax(0, 43%) minmax(0, 26%);
  }

  .hero-copy {
    width: min(440px, 100%);
  }

  h1 {
    font-size: clamp(3rem, 5.3vw, 4.25rem);
  }

  .product-card {
    width: min(42vw, 470px);
  }

  .product-app {
    width: min(18vw, 195px);
  }

  .feature-label-card {
    top: 68%;
    left: 5%;
  }

  .product-pointer-card {
    top: calc(68% - clamp(3rem, 6vw, 4rem));
    left: 31%;
    height: clamp(3rem, 6vw, 4rem);
  }

  .feature-label-app {
    top: 72%;
  }

  .product-pointer-app {
    top: 77%;
  }
}

@media (max-width: 820px) {
  .header-inner {
    width: min(100% - 2.25rem, 760px);
    min-height: 76px;
  }

  .brand {
    width: 88px;
  }

  .main-nav {
    gap: 20px;
  }

  .main-nav a {
    font-size: 0.76rem;
  }

  .hero,
  .hero-inner {
    min-height: auto;
  }

  .hero-inner {
    width: min(100% - 2.75rem, 680px);
    padding: 124px 0 36px;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
    grid-template-areas:
      "copy copy"
      "card app";
    column-gap: clamp(1.25rem, 3vw, 2rem);
    row-gap: 36px;
    align-items: center;
  }

  .hero-copy {
    width: min(560px, 100%);
    padding-top: 0;
  }

  h1 {
    font-size: clamp(3rem, 10vw, 4.35rem);
  }

  .hero-intro {
    max-width: 500px;
  }

  .product-card {
    justify-self: center;
    width: min(104%, 410px);
    margin-top: 0;
  }

  .product-app {
    width: min(100%, 180px);
    margin-top: 0;
  }

  .feature-label-card {
    top: 66%;
    left: 4%;
  }

  .product-pointer-card {
    top: calc(66% - clamp(3rem, 8vw, 4rem));
    left: 31%;
    height: clamp(3rem, 8vw, 4rem);
  }

  .feature-label-app {
    top: 66%;
    right: calc(100% + 0.125rem);
  }

  .product-pointer-app {
    top: 72%;
    left: -0.125rem;
    width: clamp(1.25rem, 4vw, 1.75rem);
  }
}

@media (max-width: 600px) {
  .header-inner {
    width: calc(100% - 1.75rem);
    min-height: 70px;
  }

  .brand {
    width: 74px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
  }

  .mobile-menu summary {
    width: 44px;
    height: 44px;
    padding: 11px 9px;
    display: grid;
    align-content: center;
    gap: 5px;
    cursor: pointer;
    list-style: none;
    border: 1px solid rgba(23, 20, 17, 0.14);
    border-radius: 10px;
    background: rgba(255, 252, 245, 0.72);
    box-shadow: 0 8px 24px rgba(83, 57, 21, 0.09);
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu summary span {
    width: 100%;
    height: 2px;
    display: block;
    background: var(--ink);
    border-radius: 999px;
  }

  .mobile-menu summary:focus-visible {
    outline: 2px solid var(--orange);
    outline-offset: 4px;
  }

  .mobile-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 184px;
    padding: 10px;
    display: grid;
    gap: 2px;
    color: var(--ink);
    background: rgba(255, 252, 245, 0.96);
    border: 1px solid var(--line);
    border-radius: 12px;
    box-shadow: 0 18px 44px rgba(83, 57, 21, 0.16);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
  }

  .mobile-nav a {
    padding: 11px 12px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-nav a:hover,
  .mobile-nav a:focus-visible {
    background: rgba(255, 213, 0, 0.2);
    outline: none;
  }

  .mobile-nav a[aria-current="page"] {
    color: var(--ink);
    background: rgba(255, 213, 0, 0.14);
    font-weight: 800;
  }

  .hero-inner {
    width: min(100% - 1.75rem, 420px);
    padding: 108px 0 72px;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "copy"
      "card"
      "app";
    row-gap: clamp(2rem, 8vw, 3rem);
  }

  .hero-copy {
    width: 100%;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 0.64rem;
    letter-spacing: 0.15em;
  }

  h1 {
    font-size: clamp(2.85rem, 14vw, 4rem);
  }

  .hero-intro {
    margin-top: 21px;
    font-size: 0.96rem;
  }

  .hero-actions {
    grid-template-columns: minmax(0, 1fr);
    width: min(100%, 330px);
    margin-right: auto;
    margin-left: auto;
  }

  .product {
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: none;
  }

  .product-card {
    width: min(100%, 300px);
  }

  .product-app {
    width: min(50vw, 150px);
  }

  .feature-label {
    position: static;
    min-width: 145px;
    margin-top: clamp(0.5rem, 2vw, 0.875rem);
    padding: 9px 11px 10px;
    transform: none;
  }

  .feature-label strong {
    font-size: 0.68rem;
  }

  .product-pointer {
    display: none;
  }

  .ambient-light {
    top: 43%;
    width: 100vw;
  }
}

@media (max-width: 360px) {
  .hero-inner {
    width: calc(100% - 1.75rem);
  }

  .product-card {
    width: min(100%, 285px);
  }

  .product-app {
    width: min(48vw, 145px);
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

.one-word {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 213, 0, 0.13), transparent 25%),
    var(--white);
  border-top: 1px solid rgba(23, 20, 17, 0.08);
}

.one-word-inner {
  width: min(1240px, calc(100% - clamp(2rem, 6vw, 5rem)));
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8rem) 0 clamp(5.5rem, 10vw, 9rem);
}

.one-word-heading {
  width: min(620px, 100%);
  margin: 0 auto clamp(3.25rem, 6vw, 5rem);
  text-align: center;
}

.section-kicker {
  margin: 0 0 14px;
  color: var(--orange-text);
  font-size: 0.69rem;
  font-weight: 750;
  letter-spacing: 0.17em;
  line-height: 1.4;
  text-transform: uppercase;
}

.one-word h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 1;
}

.one-word-heading > p:last-child {
  max-width: 520px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: clamp(0.96rem, 1.3vw, 1.06rem);
  line-height: 1.65;
}

.one-word-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.72fr) minmax(0, 1fr);
  grid-template-areas: "card-games word app-games";
  align-items: center;
  gap: clamp(2.25rem, 5vw, 5.5rem);
}

.game-family {
  min-width: 0;
}

.game-family-card {
  grid-area: card-games;
}

.game-family-app {
  grid-area: app-games;
}

.game-family-heading {
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 13px;
}

.family-marker {
  width: 11px;
  height: 38px;
  flex: 0 0 auto;
  background: var(--yellow);
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(255, 213, 0, 0.22);
}

.game-family-app .family-marker {
  background: var(--orange);
  box-shadow: 0 8px 20px rgba(255, 80, 0, 0.18);
}

.game-family-heading p {
  margin: 0 0 2px;
  color: rgba(23, 20, 17, 0.48);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.game-family-heading h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.game-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.game-option {
  width: 100%;
  padding: 17px 18px 18px;
  display: block;
  color: var(--ink);
  background: rgba(255, 249, 237, 0.58);
  border: 1px solid rgba(23, 20, 17, 0.09);
  border-radius: 13px;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.game-option:hover {
  background: rgba(255, 249, 237, 0.94);
  border-color: rgba(23, 20, 17, 0.16);
  transform: translateY(-1px);
}

.game-option:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.game-family-card .game-option[aria-pressed="true"] {
  background: rgba(255, 213, 0, 0.16);
  border-color: rgba(190, 150, 0, 0.36);
  box-shadow: 0 10px 26px rgba(124, 93, 0, 0.1);
}

.game-family-app .game-option[aria-pressed="true"] {
  background: rgba(255, 80, 0, 0.08);
  border-color: rgba(255, 80, 0, 0.3);
  box-shadow: 0 10px 26px rgba(255, 80, 0, 0.08);
}

.game-option-title {
  margin: 0 0 5px;
  display: block;
  font-size: 0.94rem;
  font-weight: 750;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.game-option-description {
  margin: 0;
  display: block;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.48;
  text-wrap: pretty;
}

.app-game-list {
  grid-template-columns: minmax(0, 1fr);
}

.word-stack {
  grid-area: word;
  position: relative;
  width: min(100%, 330px);
  aspect-ratio: 0.72;
  margin: 0 auto;
  isolation: isolate;
}

.word-card {
  --word-color: var(--yellow);
  position: absolute;
  top: 0;
  left: 50%;
  width: calc(100% - 30px);
  height: calc(100% - 40px);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.34), transparent 44%),
    var(--word-color);
  border: 1px solid rgba(23, 20, 17, 0.12);
  border-radius: clamp(22px, 3vw, 32px);
  box-shadow:
    0 32px 64px rgba(92, 68, 16, 0.17),
    0 10px 24px rgba(255, 213, 0, 0.17),
    inset 0 1px rgba(255, 255, 255, 0.5);
  font: inherit;
  text-align: center;
  cursor: pointer;
  pointer-events: auto;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease, opacity 220ms ease;
}

.word-card > * {
  pointer-events: none;
}

.word-card-adventure {
  --word-color: var(--yellow);
}

.word-card-ocean {
  --word-color: #ccecff;
}

.word-card-mystery {
  --word-color: #eadcff;
}

.word-card.is-active {
  z-index: 3;
  transform: translateX(-50%) rotate(-1.5deg);
}

.word-card.is-next {
  z-index: 2;
  transform: translate(calc(-50% + 15px), 18px) rotate(1.25deg);
}

.word-card.is-last {
  z-index: 1;
  transform: translate(calc(-50% - 15px), 36px) rotate(-2.5deg);
}

.word-card.is-next:hover {
  transform: translate(calc(-50% + 17px), 20px) rotate(1.25deg);
}

.word-card.is-last:hover {
  transform: translate(calc(-50% - 17px), 38px) rotate(-2.5deg);
}

.word-card:focus-visible {
  outline: 3px solid var(--ink);
  outline-offset: 4px;
}

.word-card:not(.is-active) .word-card-label,
.word-card:not(.is-active) .word-card-instruction,
.word-card:not(.is-active) .game-preview {
  opacity: 0;
}

.word-card:not(.is-active) > strong {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.word-stack-hint {
  position: absolute;
  top: clamp(-76px, -5vw, -58px);
  right: -4px;
  z-index: 4;
  width: min(190px, 72%);
  padding: 9px 12px 10px;
  color: rgba(23, 20, 17, 0.66);
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(23, 20, 17, 0.11);
  border-radius: 12px 12px 4px 12px;
  box-shadow: 0 10px 24px rgba(83, 57, 21, 0.08);
  font-size: 0.66rem;
  font-weight: 650;
  letter-spacing: 0.025em;
  line-height: 1.35;
  text-align: center;
  pointer-events: none;
  transform: rotate(1deg);
}

.word-stack-hint::before {
  content: "";
  position: absolute;
  top: calc(100% + 5px);
  left: 26px;
  width: 34px;
  height: 24px;
  border-bottom: 2px solid var(--yellow);
  border-left: 2px solid var(--yellow);
  border-radius: 0 0 0 24px;
  transform: rotate(-12deg);
}

.word-stack-hint::after {
  content: "";
  position: absolute;
  top: calc(100% + 23px);
  left: 55px;
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--yellow);
  border-bottom: 2px solid var(--yellow);
  transform: rotate(36deg);
}

.word-card-label {
  margin-bottom: auto;
  font-size: 0.63rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.word-card > strong {
  margin-top: clamp(0.5rem, 2vw, 1rem);
  font-size: clamp(2rem, 3.3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
}

.word-card-instruction {
  min-height: 3.9em;
  margin: clamp(0.8rem, 2vw, 1.15rem) 0 0;
  color: rgba(23, 20, 17, 0.7);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.45;
  text-wrap: balance;
}

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

.game-preview {
  width: 100%;
  min-height: 112px;
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.preview-chain,
.preview-story,
.preview-scramble,
.preview-sorting {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.preview-chain {
  flex-wrap: wrap;
}

.preview-chip,
.preview-letter {
  min-width: 32px;
  min-height: 32px;
  padding: 6px 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(23, 20, 17, 0.13);
  border-radius: 9px;
  font-size: 0.64rem;
  font-weight: 750;
  line-height: 1;
}

.preview-arrow {
  color: rgba(23, 20, 17, 0.44);
  font-size: 0.72rem;
}

.preview-story {
  padding: 12px;
  display: block;
  background: rgba(255, 253, 248, 0.58);
  border: 1px solid rgba(23, 20, 17, 0.1);
  border-radius: 11px;
  color: rgba(23, 20, 17, 0.58);
  font-size: 0.67rem;
  line-height: 1.55;
  text-align: left;
}

.preview-story mark {
  padding: 1px 4px;
  color: var(--ink);
  background: rgba(255, 80, 0, 0.16);
  border-radius: 4px;
  font-weight: 750;
}

.preview-scramble {
  flex-wrap: wrap;
  gap: 4px;
}

.preview-letter {
  min-width: 25px;
  min-height: 29px;
  padding: 5px;
  font-size: 0.7rem;
}

.preview-sorting {
  align-items: stretch;
}

.sort-group {
  min-width: 0;
  flex: 1;
  padding: 8px;
  display: grid;
  gap: 5px;
  background: rgba(255, 253, 248, 0.58);
  border: 1px solid rgba(23, 20, 17, 0.1);
  border-radius: 10px;
}

.sort-group strong {
  margin: 0;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sort-group span {
  padding: 5px;
  background: rgba(255, 213, 0, 0.2);
  border-radius: 6px;
  font-size: 0.58rem;
  font-weight: 650;
}

@media (max-width: 1020px) {
  .one-word-grid {
    grid-template-columns: minmax(0, 1fr) minmax(205px, 0.68fr) minmax(0, 1fr);
    gap: clamp(1.25rem, 3vw, 2.5rem);
  }

  .game-option {
    padding: 14px 15px 15px;
  }
}

@media (max-width: 780px) {
  .one-word-inner {
    width: min(100% - 2.75rem, 680px);
  }

  .one-word-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "word word"
      "card-games app-games";
    align-items: start;
    gap: 3.5rem 1.5rem;
  }

  .word-stack {
    width: min(58vw, 300px);
  }

  .word-stack-hint {
    top: -68px;
    right: -6px;
  }

  .game-family-heading {
    margin-bottom: 20px;
  }

}

.live-footer {
  --footer-black: #000;
  --footer-yellow: #ffd500;
  --footer-white: #fff;
  --footer-muted: #9e9e9e;
  color: var(--footer-white);
  background: var(--footer-black);
}

.live-footer h2,
.live-footer p {
  margin-top: 0;
}

.live-footer-main {
  background: var(--footer-black);
}

.live-footer-main-inner {
  width: min(1254px, calc(100% - 1.5rem));
  margin: 0 auto;
  padding: clamp(3.5rem, 5vw, 4rem) 0 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.live-footer-newsletter {
  padding: 0 clamp(1.5rem, 4vw, 3.1rem) 0 0.65rem;
}

.live-footer-newsletter h2,
.live-footer-quick-links h2 {
  margin-bottom: 0.35rem;
  color: var(--footer-yellow);
  font-size: clamp(1.55rem, 2.15vw, 1.7rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.35;
}

.live-footer-newsletter p {
  max-width: 360px;
  margin-bottom: 0;
  color: var(--footer-white);
  font-size: 0.94rem;
  line-height: 2;
}

.live-footer-subscribe-social {
  padding-top: 0.3rem;
}

.live-footer-subscribe > label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.live-footer-subscribe-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 145px;
}

.live-footer-subscribe-row input,
.live-footer-subscribe-row button {
  min-height: 45px;
  border: 0;
  font: inherit;
  font-size: 0.9rem;
}

.live-footer-subscribe-row input {
  min-width: 0;
  padding: 0 1rem;
  color: #212121;
  background: #fff;
  border-radius: 30px 0 0 30px;
}

.live-footer-subscribe-row button {
  padding: 0.65rem 1.15rem;
  color: #000;
  background: var(--footer-yellow);
  border-radius: 0 30px 30px 0;
  cursor: pointer;
  transition: background 160ms ease;
}

.live-footer-subscribe-row button:hover {
  background: #ffbc00;
}

.live-footer-subscribe > p {
  margin: 0.65rem 0 0;
  color: var(--footer-muted);
  font-size: 0.78rem;
  text-align: center;
}

.live-footer-follow {
  margin-top: 3.45rem;
  display: flex;
  justify-content: center;
  gap: 0;
}

.live-footer-follow a {
  width: 52px;
  height: 40px;
  padding: 0 0.9rem 0.9rem;
  display: grid;
  place-items: center;
  color: #fff;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.live-footer-follow svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.live-footer-follow .live-footer-icon-dot {
  fill: currentColor;
  stroke: currentColor;
}

.live-footer-follow a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.live-footer-follow a:hover {
  color: var(--footer-yellow);
  transform: translateY(-2px);
}

.live-footer-links-payment {
  padding-left: clamp(2rem, 4.3vw, 3.5rem);
}

.live-footer-quick-links ul {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #252525;
  list-style: none;
}

.live-footer-quick-links li {
  min-height: 30px;
  line-height: 30px;
}

.live-footer-quick-links a {
  color: #fff;
  font-size: 0.92rem;
  line-height: 1.4;
  text-decoration: none;
  transition: color 160ms ease;
}

.live-footer-quick-links a:hover {
  color: var(--footer-yellow);
}

.live-footer-payment-strip {
  min-height: 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.live-footer-payment-strip img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.live-footer-copyright {
  width: min(1254px, calc(100% - 1.5rem));
  min-height: 24px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--footer-yellow);
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

.live-footer input:focus-visible,
.live-footer button:focus-visible,
.live-footer a:focus-visible {
  outline: 3px solid var(--footer-yellow);
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .live-footer-main-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3.5rem 2.5rem;
    padding-bottom: 2.5rem;
  }

  .live-footer-newsletter {
    padding-inline: 0;
  }

  .live-footer-links-payment {
    grid-column: 1 / -1;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
    gap: 2.5rem;
  }

  .live-footer-payment-strip {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .live-footer-main-inner {
    width: min(100% - 2rem, 420px);
    padding: 3.75rem 0 3rem;
    grid-template-columns: minmax(0, 1fr);
    gap: 3.25rem;
  }

  .live-footer-links-payment {
    grid-column: auto;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  .live-footer-follow {
    margin-top: 2rem;
    justify-content: flex-start;
  }

  .live-footer-payment-strip {
    justify-content: flex-start;
  }

  .live-footer-copyright {
    width: min(100% - 2rem, 420px);
    min-height: 58px;
    justify-content: flex-start;
    text-align: left;
  }
}

@media (max-width: 420px) {
  .live-footer-subscribe-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.65rem;
  }

  .live-footer-subscribe-row input,
  .live-footer-subscribe-row button {
    border-radius: 30px;
  }

  .live-footer-subscribe-row button {
    min-height: 48px;
  }

  .live-footer-subscribe > p {
    text-align: left;
  }
}
.why-word {
  background: #f8f4ff;
  border-top: 1px solid rgba(23, 20, 17, 0.08);
}

.why-word-inner {
  width: min(1240px, calc(100% - clamp(2rem, 6vw, 5rem)));
  margin: 0 auto;
  padding: clamp(5.5rem, 10vw, 9rem) 0 clamp(5.25rem, 9vw, 8rem);
}

.why-word-heading {
  width: min(720px, 100%);
  margin: 0 auto clamp(3.5rem, 7vw, 5.5rem);
  text-align: center;
}

.why-word h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  font-weight: 780;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.why-word-heading > p:last-child {
  max-width: 610px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  line-height: 1.68;
  text-wrap: pretty;
}

.why-word-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(23, 20, 17, 0.12);
  border-bottom: 1px solid rgba(23, 20, 17, 0.12);
}

.why-word-benefit {
  position: relative;
  min-width: 0;
  padding: clamp(2rem, 4vw, 3rem) clamp(1.5rem, 3.5vw, 3rem) clamp(2.25rem, 4vw, 3.25rem);
}

.why-word-benefit + .why-word-benefit {
  border-left: 1px solid rgba(23, 20, 17, 0.12);
}

.why-word-benefit::before {
  content: "";
  position: absolute;
  top: -3px;
  left: clamp(1.5rem, 3.5vw, 3rem);
  width: 52px;
  height: 5px;
  background: var(--yellow);
  border-radius: 999px;
}

.why-word-benefit-two::before {
  background: var(--orange);
}

.why-word-benefit-three::before {
  background: #9000ff;
}

.why-word-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  color: #a98400;
}

.why-word-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-word-benefit-two .why-word-icon {
  color: var(--orange-text);
}

.why-word-benefit-three .why-word-icon {
  color: #7b00d9;
}

.why-word-benefit h3 {
  max-width: 280px;
  margin: 22px 0 0;
  font-size: clamp(1.4rem, 2.1vw, 1.8rem);
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.why-word-benefit p {
  max-width: 315px;
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.62;
  text-wrap: pretty;
}

.why-word-audience {
  margin: clamp(2.25rem, 5vw, 3.75rem) auto 0;
  color: rgba(23, 20, 17, 0.58);
  font-size: clamp(0.82rem, 1.3vw, 0.94rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.5;
  text-align: center;
  text-wrap: balance;
}

.why-word-audience::before,
.why-word-audience::after {
  content: "";
  width: 5px;
  height: 5px;
  margin: 0 12px 2px;
  display: inline-block;
  background: var(--yellow);
  border-radius: 50%;
}

.why-word-audience::after {
  background: var(--orange);
}

@media (max-width: 780px) {
  .why-word-inner {
    width: min(100% - 2.75rem, 680px);
  }

  .why-word-benefits {
    grid-template-columns: minmax(0, 1fr);
  }

  .why-word-benefit {
    padding: 2.25rem 0 2.5rem;
  }

  .why-word-benefit + .why-word-benefit {
    border-top: 1px solid rgba(23, 20, 17, 0.12);
    border-left: 0;
  }

  .why-word-benefit::before {
    left: 0;
  }

  .why-word-benefit h3,
  .why-word-benefit p {
    max-width: 560px;
  }
}

@media (max-width: 600px) {
  .why-word-inner {
    width: min(100% - 1.75rem, 420px);
    padding: 4.75rem 0 5rem;
  }

  .why-word-heading {
    margin-bottom: 3rem;
  }

  .why-word h2 {
    font-size: clamp(2.65rem, 13vw, 3.8rem);
  }

  .why-word-audience::before,
  .why-word-audience::after {
    margin-right: 8px;
    margin-left: 8px;
  }
}

.mobile-app-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), transparent 26%),
    var(--white);
  border-top: 1px solid rgba(23, 20, 17, 0.08);
}

.mobile-app-inner {
  width: min(1240px, calc(100% - clamp(2rem, 6vw, 5rem)));
  margin: 0 auto;
  padding: clamp(5.5rem, 10vw, 9rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  grid-template-areas: "content visual";
  align-items: center;
  gap: clamp(3.5rem, 8vw, 8rem);
}

.mobile-app-content {
  grid-area: content;
  min-width: 0;
}

.mobile-app-heading-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.mobile-app-heading-row .section-kicker {
  margin-bottom: 0;
}

.mobile-app-status {
  padding: 6px 9px 7px;
  color: #b53c00;
  background: rgba(255, 80, 0, 0.08);
  border: 1px solid rgba(255, 80, 0, 0.2);
  border-radius: 999px;
  font-size: 0.61rem;
  font-weight: 750;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

.mobile-app-section h2 {
  margin: 18px 0 0;
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  font-weight: 780;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.mobile-app-intro {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  line-height: 1.68;
  text-wrap: pretty;
}

.mobile-app-benefits {
  margin: clamp(2rem, 4vw, 2.75rem) 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.mobile-app-benefits li {
  position: relative;
  padding-left: 22px;
  color: rgba(23, 20, 17, 0.7);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.45;
}

.mobile-app-benefits li::before {
  content: "";
  position: absolute;
  top: 0.48em;
  left: 1px;
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border: 1px solid rgba(23, 20, 17, 0.12);
  border-radius: 50%;
}

.mobile-app-benefits li:nth-child(2)::before {
  background: var(--orange);
}

.mobile-app-benefits li:nth-child(3)::before {
  background: #9000ff;
}

.mobile-app-cta {
  width: min(100%, 238px);
  margin-top: 31px;
}

.mobile-app-visual {
  grid-area: visual;
  position: relative;
  width: min(100%, 560px);
  min-height: 650px;
  margin: 0;
  justify-self: center;
  isolation: isolate;
}

.app-section-phone {
  position: absolute;
  padding: 6px;
  overflow: hidden;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: clamp(31px, 3vw, 44px);
  box-shadow:
    0 32px 58px rgba(65, 45, 20, 0.22),
    0 8px 22px rgba(65, 45, 20, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.app-section-phone img {
  width: 100%;
  aspect-ratio: 603 / 1306;
  object-fit: cover;
  border-radius: calc(clamp(31px, 3vw, 44px) - 6px);
}

.app-section-speaker {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 2;
  width: 36%;
  height: 14px;
  background: #050505;
  border-radius: 999px;
  transform: translateX(-50%);
}

.app-section-phone-games {
  top: 0;
  right: 9%;
  z-index: 2;
  width: min(46%, 250px);
  transform: rotate(2.5deg);
}

.app-section-phone-scoreboard {
  top: 110px;
  left: 5%;
  z-index: 1;
  width: min(42%, 225px);
  opacity: 0.96;
  transform: rotate(-5deg);
}

.app-visual-accent {
  position: absolute;
  z-index: -1;
  display: block;
  border-radius: 999px;
}

.app-visual-accent-yellow {
  top: 16%;
  right: 0;
  width: 8px;
  height: 56px;
  background: var(--yellow);
  box-shadow: 0 0 32px rgba(255, 213, 0, 0.24);
  transform: rotate(18deg);
}

.app-visual-accent-orange {
  bottom: 16%;
  left: 2%;
  width: 7px;
  height: 42px;
  background: var(--orange);
  box-shadow: 0 0 28px rgba(255, 80, 0, 0.2);
  transform: rotate(-28deg);
}

@media (max-width: 900px) {
  .mobile-app-inner {
    width: min(100% - 2.75rem, 700px);
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "content"
      "visual";
    gap: clamp(3.75rem, 10vw, 5.5rem);
  }

  .mobile-app-content {
    width: min(100%, 650px);
  }

  .mobile-app-visual {
    width: min(86vw, 540px);
    min-height: 620px;
  }
}

@media (max-width: 600px) {
  .mobile-app-inner {
    width: min(100% - 1.75rem, 420px);
    padding: 4.75rem 0 5.25rem;
    gap: 3.25rem;
  }

  .mobile-app-section h2 {
    font-size: clamp(2.65rem, 13vw, 3.8rem);
  }

  .mobile-app-cta {
    width: 100%;
  }

  .mobile-app-visual {
    width: min(100%, 360px);
    min-height: clamp(420px, 118vw, 465px);
  }

  .app-section-phone-games {
    right: 6%;
    width: min(50%, 176px);
  }

  .app-section-phone-scoreboard {
    top: 76px;
    left: 5%;
    width: min(45%, 160px);
  }

  .app-section-speaker {
    top: 11px;
    height: 10px;
  }

  .app-visual-accent-yellow {
    right: 1%;
    height: 42px;
  }

  .app-visual-accent-orange {
    bottom: 13%;
  }
}

.physical-game {
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 58%, rgba(255, 213, 0, 0.12), transparent 28%),
    linear-gradient(180deg, #fbf2e3 0%, #fff9ed 100%);
  border-top: 1px solid rgba(23, 20, 17, 0.08);
}

.physical-game-inner {
  width: min(1240px, calc(100% - clamp(2rem, 6vw, 5rem)));
  margin: 0 auto;
  padding: clamp(5.5rem, 10vw, 9rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  grid-template-areas: "visual content";
  align-items: center;
  gap: clamp(3.5rem, 8vw, 8rem);
}

.physical-game-content {
  grid-area: content;
  min-width: 0;
}

.physical-game h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  font-weight: 780;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.physical-game-intro {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  line-height: 1.68;
  text-wrap: pretty;
}

.play-formats {
  margin-top: clamp(2.25rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.play-format {
  position: relative;
  padding: 25px clamp(1rem, 2.5vw, 1.75rem) 27px 0;
}

.play-format + .play-format {
  padding-right: 0;
  padding-left: clamp(1rem, 2.5vw, 1.75rem);
  border-left: 1px solid var(--line);
}

.play-format::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0;
  width: 44px;
  height: 5px;
  background: var(--yellow);
  border-radius: 999px;
}

.play-format-party::before {
  left: clamp(1rem, 2.5vw, 1.75rem);
  background: var(--orange);
}

.play-format-meta {
  margin: 0 0 9px;
  color: rgba(23, 20, 17, 0.48);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.play-format h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.play-format > p:last-child {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
  text-wrap: pretty;
}

.physical-game-modes {
  margin-top: 27px;
  display: flex;
  align-items: center;
  gap: 18px;
}

.physical-game-modes > p {
  margin: 0;
  color: rgba(23, 20, 17, 0.5);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.physical-game-modes ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}

.physical-game-modes li {
  padding: 7px 10px 8px;
  background: rgba(255, 253, 248, 0.64);
  border: 1px solid rgba(23, 20, 17, 0.1);
  border-radius: 999px;
  font-size: 0.69rem;
  font-weight: 700;
  line-height: 1;
}

.mode-challenge {
  box-shadow: inset 3px 0 #0395ff;
}

.mode-story {
  box-shadow: inset 3px 0 #9000ff;
}

.mode-question {
  box-shadow: inset 3px 0 #22ff22;
}

.physical-game-cta {
  width: min(100%, 238px);
  margin-top: 31px;
}

.physical-game-visual {
  grid-area: visual;
  position: relative;
  width: min(104%, 610px);
  margin: 0;
  justify-self: center;
  isolation: isolate;
}

.physical-game-visual::before {
  content: "";
  position: absolute;
  inset: 13% 5% 12%;
  z-index: -2;
  background: radial-gradient(ellipse at center, rgba(255, 213, 0, 0.14), rgba(255, 213, 0, 0.05) 42%, transparent 74%);
  filter: blur(26px);
}

.physical-game-visual::after {
  content: "";
  position: absolute;
  right: 17%;
  bottom: 6%;
  left: 17%;
  z-index: -1;
  height: 7%;
  background: rgba(83, 57, 21, 0.17);
  border-radius: 50%;
  filter: blur(22px);
}

.physical-game-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  filter:
    drop-shadow(0 20px 24px rgba(83, 57, 21, 0.14))
    saturate(1.04)
    contrast(1.015);
}

.physical-game-palette {
  position: absolute;
  right: 3%;
  bottom: 4%;
  z-index: 2;
  padding: 8px 10px;
  display: flex;
  gap: 6px;
  background: rgba(255, 253, 248, 0.84);
  border: 1px solid rgba(23, 20, 17, 0.08);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(83, 57, 21, 0.1);
}

.physical-game-palette i {
  width: 7px;
  height: 7px;
  display: block;
  border-radius: 50%;
}

.physical-game-palette i:nth-child(1) { background: #ffd500; }
.physical-game-palette i:nth-child(2) { background: #ff5000; }
.physical-game-palette i:nth-child(3) { background: #ff0000; }
.physical-game-palette i:nth-child(4) { background: #0395ff; }
.physical-game-palette i:nth-child(5) { background: #22ff22; }
.physical-game-palette i:nth-child(6) { background: #9000ff; }

@media (max-width: 900px) {
  .physical-game-inner {
    width: min(100% - 2.75rem, 700px);
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "content"
      "visual";
    gap: clamp(3.5rem, 9vw, 5rem);
  }

  .physical-game-content {
    width: min(100%, 650px);
  }

  .physical-game-visual {
    width: min(88vw, 560px);
  }
}

@media (max-width: 600px) {
  .physical-game-inner {
    width: min(100% - 1.75rem, 420px);
    padding: 4.75rem 0 5.25rem;
    gap: 3.25rem;
  }

  .physical-game h2 {
    font-size: clamp(2.65rem, 13vw, 3.8rem);
  }

  .play-formats {
    grid-template-columns: minmax(0, 1fr);
  }

  .play-format,
  .play-format + .play-format {
    padding: 22px 0 23px;
  }

  .play-format + .play-format {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .play-format-party::before {
    left: 0;
  }

  .physical-game-modes {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .physical-game-cta {
    width: 100%;
  }

  .physical-game-visual {
    width: min(100%, 390px);
  }

  .physical-game-palette {
    right: 1%;
  }
}

@media (max-width: 600px) {
  .one-word-inner {
    width: min(100% - 1.75rem, 420px);
    padding: 4.5rem 0 5rem;
  }

  .one-word-heading {
    margin-bottom: 5.25rem;
  }

  .one-word h2 {
    font-size: clamp(2.55rem, 13vw, 3.75rem);
  }

  .one-word-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "word"
      "card-games"
      "app-games";
    gap: 3.25rem;
  }

  .word-stack {
    width: min(80vw, 285px);
  }

  .word-stack-hint {
    top: -76px;
    right: auto;
    left: 50%;
    width: min(210px, 82vw);
    font-size: 0.63rem;
    transform: translateX(-50%);
  }

  .word-stack-hint::before {
    top: calc(100% + 5px);
    left: calc(50% - 10px);
    width: 20px;
    height: 22px;
    border-radius: 0 0 0 18px;
    transform: rotate(-5deg);
  }

  .word-stack-hint::after {
    top: calc(100% + 22px);
    left: calc(50% + 6px);
    transform: rotate(36deg);
  }

}

/* About page */
.about-page {
  overflow-x: hidden;
}

.about-hero {
  position: relative;
  overflow: clip;
  min-height: min(830px, 92svh);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 80% 48%, rgba(255, 213, 0, 0.13), transparent 28%),
    linear-gradient(180deg, #fffaf0 0%, #f8edda 100%);
  border-bottom: 1px solid rgba(23, 20, 17, 0.08);
}

.about-hero::after {
  content: "";
  position: absolute;
  right: -7%;
  bottom: 7%;
  width: min(44vw, 640px);
  height: 22%;
  background: rgba(255, 80, 0, 0.08);
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}

.about-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1240px, calc(100% - clamp(2rem, 6vw, 5rem)));
  margin: 0 auto;
  padding: clamp(8.5rem, 14vw, 11rem) 0 clamp(5rem, 8vw, 7rem);
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(0, 1.07fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
}

.about-hero-copy {
  min-width: 0;
}

.about-page .about-hero h1 {
  max-width: 690px;
  font-size: clamp(3.6rem, 6.3vw, 6.5rem);
  line-height: 0.94;
  text-wrap: balance;
}

.about-hero-intro {
  max-width: 600px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.72;
  text-wrap: pretty;
}

.about-hero-visual {
  position: relative;
  width: min(100%, 610px);
  margin: 0;
  justify-self: center;
  isolation: isolate;
}

.about-hero-visual::before {
  content: "";
  position: absolute;
  inset: 20% 8% 13%;
  z-index: -1;
  background: radial-gradient(ellipse, rgba(255, 213, 0, 0.19), transparent 70%);
  filter: blur(28px);
}

.about-hero-visual img {
  width: 100%;
  filter:
    drop-shadow(0 24px 28px rgba(83, 57, 21, 0.15))
    saturate(1.05)
    contrast(1.01);
}

.about-story {
  background: var(--white);
}

.about-story-inner {
  width: min(1240px, calc(100% - clamp(2rem, 6vw, 5rem)));
  margin: 0 auto;
  padding: clamp(5.5rem, 10vw, 9rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.73fr);
  grid-template-areas: "copy visual";
  align-items: center;
  gap: clamp(3.5rem, 9vw, 9rem);
}

.about-story-copy {
  grid-area: copy;
  min-width: 0;
}

.about-page main h2 {
  margin: 0;
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  font-weight: 780;
  letter-spacing: -0.06em;
  line-height: 0.98;
  text-wrap: balance;
}

.about-story h2 {
  max-width: 650px;
  margin-top: 17px;
}

.about-prose {
  max-width: 660px;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.about-prose p {
  margin: 0;
  color: rgba(23, 20, 17, 0.68);
  font-size: clamp(0.96rem, 1.25vw, 1.06rem);
  line-height: 1.78;
  text-wrap: pretty;
}

.about-prose p + p {
  margin-top: 1.25em;
}

.about-story-visual {
  grid-area: visual;
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 4 / 5;
  margin: 0;
  justify-self: end;
  overflow: hidden;
  border-radius: clamp(18px, 3vw, 30px);
  box-shadow: 0 24px 60px rgba(83, 57, 21, 0.13);
}

.about-story-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(23, 20, 17, 0.42));
  pointer-events: none;
}

.about-story-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story-visual figcaption {
  position: absolute;
  right: clamp(1.5rem, 4vw, 2.5rem);
  bottom: clamp(1.5rem, 4vw, 2.5rem);
  left: clamp(1.5rem, 4vw, 2.5rem);
  z-index: 1;
  display: grid;
  color: var(--white);
}

.about-story-visual figcaption span {
  font-size: 0.74rem;
  font-weight: 650;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about-story-visual figcaption strong {
  margin-top: 4px;
  font-size: clamp(1.65rem, 3vw, 2.5rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.about-freedom {
  background:
    linear-gradient(135deg, rgba(255, 213, 0, 0.05), transparent 38%),
    #f6ead8;
  border-top: 1px solid rgba(23, 20, 17, 0.07);
  border-bottom: 1px solid rgba(23, 20, 17, 0.07);
}

.about-freedom-inner {
  width: min(1120px, calc(100% - clamp(2rem, 8vw, 6rem)));
  margin: 0 auto;
  padding: clamp(5.5rem, 10vw, 9rem) 0;
}

.about-freedom-heading {
  max-width: 790px;
}

.about-freedom-heading h2 {
  margin-top: 17px;
}

.about-freedom-layout {
  margin-top: clamp(3rem, 7vw, 5.75rem);
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  align-items: center;
  gap: clamp(3rem, 9vw, 8rem);
}

.about-word-concept {
  position: relative;
  width: min(100%, 360px);
  margin: 0;
  padding: clamp(1rem, 3vw, 1.75rem) 0;
}

.about-word-concept::after {
  content: "";
  position: absolute;
  top: clamp(6.4rem, 11vw, 8.2rem);
  left: 13px;
  width: 1px;
  height: calc(100% - clamp(7.5rem, 13vw, 9.5rem));
  background: linear-gradient(180deg, rgba(23, 20, 17, 0.28), rgba(255, 80, 0, 0.42));
}

.about-word-concept > strong {
  display: block;
  color: var(--ink);
  font-size: clamp(5rem, 9vw, 8rem);
  font-weight: 780;
  letter-spacing: -0.075em;
  line-height: 0.88;
}

.about-word-concept figcaption {
  margin-top: clamp(2.25rem, 5vw, 3.5rem);
  display: grid;
  gap: 18px;
}

.about-word-concept figcaption span {
  position: relative;
  padding-left: 40px;
  color: rgba(23, 20, 17, 0.68);
  font-size: clamp(0.78rem, 1.15vw, 0.9rem);
  font-weight: 620;
  line-height: 1.4;
  text-wrap: balance;
}

.about-word-concept figcaption span::before {
  content: "";
  position: absolute;
  top: 0.63em;
  left: 13px;
  width: 18px;
  height: 1px;
  background: rgba(23, 20, 17, 0.32);
}

.about-word-concept figcaption span::after {
  content: "";
  position: absolute;
  top: calc(0.63em - 3px);
  left: 10px;
  width: 7px;
  height: 7px;
  background: var(--yellow);
  border: 1px solid rgba(23, 20, 17, 0.14);
  border-radius: 50%;
}

.about-word-concept figcaption span:nth-child(2)::after {
  background: var(--orange);
}

.about-word-concept figcaption span:nth-child(3)::after {
  background: var(--ink);
}

.about-freedom-copy {
  margin-top: 0;
}

.about-two-ways {
  background: var(--white);
}

.about-two-ways-inner {
  width: min(1120px, calc(100% - clamp(2rem, 8vw, 6rem)));
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(3.5rem, 9vw, 8rem);
}

.about-two-ways-heading h2 {
  max-width: 570px;
  margin-top: 17px;
  font-size: clamp(2.7rem, 4.7vw, 4.35rem);
}

.about-two-ways-copy > p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
  line-height: 1.72;
  text-wrap: pretty;
}

.about-formats {
  margin: clamp(2rem, 4vw, 3rem) 0 0;
  border-top: 1px solid var(--line);
}

.about-formats > div {
  padding: 20px 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid var(--line);
}

.about-formats dt {
  font-size: 1rem;
  font-weight: 750;
}

.about-formats dt span {
  margin-left: 8px;
  padding: 5px 8px;
  display: inline-block;
  color: #b53c00;
  background: rgba(255, 80, 0, 0.08);
  border: 1px solid rgba(255, 80, 0, 0.2);
  border-radius: 999px;
  font-size: 0.57rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
  vertical-align: 2px;
}

.about-formats dd {
  margin: 0;
  color: rgba(23, 20, 17, 0.52);
  font-size: 0.82rem;
  font-weight: 600;
}

.about-app-store-link {
  color: #a93600;
  text-decoration-color: rgba(169, 54, 0, 0.35);
  text-underline-offset: 3px;
}

.about-app-store-link:hover {
  text-decoration-color: currentColor;
}

.about-app-store-link:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.about-formats > div:first-child {
  box-shadow: inset 3px 0 var(--yellow);
  padding-left: 16px;
}

.about-formats > div:last-child {
  box-shadow: inset 3px 0 var(--orange);
  padding-left: 16px;
}

.about-closing {
  position: relative;
  background: var(--yellow);
  overflow: hidden;
}

.about-closing-inner {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100% - clamp(2rem, 8vw, 6rem)));
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 7.5rem) 0;
  text-align: center;
}

.about-closing .section-kicker {
  color: rgba(23, 20, 17, 0.58);
}

.about-closing h2 {
  margin-top: 17px;
}

.about-closing-inner > p:last-child {
  max-width: 620px;
  margin: 25px auto 0;
  color: rgba(23, 20, 17, 0.66);
  font-size: clamp(0.98rem, 1.4vw, 1.1rem);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .about-hero {
    min-height: auto;
  }

  .about-hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.75rem;
  }

  .about-hero-copy {
    max-width: 760px;
  }

  .about-hero-visual {
    width: min(78vw, 570px);
  }

  .about-story-inner {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "copy"
      "visual";
    gap: 4.5rem;
  }

  .about-story-visual {
    width: min(72vw, 430px);
    justify-self: start;
  }

  .about-freedom-layout {
    grid-template-columns: minmax(210px, 0.7fr) minmax(0, 1.3fr);
    gap: clamp(2.5rem, 7vw, 5rem);
  }

  .about-two-ways-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
  }

  .about-two-ways-copy > p {
    max-width: 680px;
  }
}

@media (max-width: 600px) {
  .about-hero-inner,
  .about-story-inner,
  .about-freedom-inner,
  .about-two-ways-inner,
  .about-closing-inner {
    width: min(100% - 1.75rem, 420px);
  }

  .about-hero-inner {
    padding: 7.5rem 0 4.5rem;
    gap: 2.5rem;
  }

  .about-page .about-hero h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .about-hero-intro {
    margin-top: 23px;
  }

  .about-hero-visual {
    width: min(100%, 390px);
  }

  .about-story-inner,
  .about-freedom-inner {
    padding: 4.75rem 0 5rem;
  }

  .about-page main h2,
  .about-two-ways-heading h2 {
    font-size: clamp(2.65rem, 13vw, 3.8rem);
  }

  .about-story-visual {
    width: 100%;
    max-width: 390px;
  }

  .about-freedom-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 3.25rem;
  }

  .about-word-concept {
    width: min(100%, 340px);
    justify-self: center;
  }

  .about-two-ways-inner {
    padding: 4.75rem 0 5rem;
  }

  .about-formats > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .about-closing-inner {
    padding: 4.75rem 0 5rem;
  }
}

@media (max-width: 360px) {
  .about-page .about-hero h1 {
    font-size: 2.85rem;
  }

}

/* FAQ page */
.faq-page {
  overflow-x: hidden;
}

.faq-hero {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 78% 26%, rgba(255, 213, 0, 0.11), transparent 25%),
    linear-gradient(180deg, #fffaf0 0%, #f7ebd7 100%);
  border-bottom: 1px solid rgba(23, 20, 17, 0.08);
}

.faq-hero::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 19%;
  width: clamp(44px, 6vw, 76px);
  height: 4px;
  background: linear-gradient(90deg, var(--yellow) 0 62%, var(--orange) 62%);
  border-radius: 999px;
  transform: rotate(-8deg);
}

.faq-hero-inner {
  width: min(1120px, calc(100% - clamp(2rem, 8vw, 6rem)));
  margin: 0 auto;
  padding: clamp(9rem, 15vw, 12rem) 0 clamp(5rem, 9vw, 7.5rem);
}

.faq-page .faq-hero h1 {
  max-width: 730px;
  font-size: clamp(3.8rem, 7vw, 7rem);
  line-height: 0.9;
}

.faq-hero-intro {
  max-width: 590px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.7;
  text-wrap: pretty;
}

.faq-list {
  background: var(--white);
}

.faq-list-inner {
  width: min(1120px, calc(100% - clamp(2rem, 8vw, 6rem)));
  margin: 0 auto;
  padding: clamp(5.5rem, 10vw, 9rem) 0;
}

.faq-group {
  display: grid;
  grid-template-columns: minmax(180px, 0.34fr) minmax(0, 1fr);
  gap: clamp(3rem, 8vw, 7rem);
}

.faq-group + .faq-group {
  margin-top: clamp(5rem, 9vw, 8rem);
}

.faq-group-heading {
  position: relative;
  align-self: start;
  padding-top: 21px;
  border-top: 1px solid var(--line);
}

.faq-group-heading::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--yellow);
  border-radius: 999px;
}

.faq-group:nth-child(2) .faq-group-heading::before {
  background: var(--orange);
}

.faq-group:nth-child(3) .faq-group-heading::before {
  background: linear-gradient(90deg, var(--yellow), var(--orange));
}

.faq-group-heading > span {
  color: rgba(23, 20, 17, 0.38);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.faq-page main .faq-group-heading h2 {
  margin: 11px 0 0;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 1.1;
  text-transform: none;
}

.faq-rows {
  min-width: 0;
  border-top: 1px solid var(--line);
}

.faq-rows details {
  border-bottom: 1px solid var(--line);
}

.faq-rows summary {
  position: relative;
  min-height: 78px;
  padding: 25px clamp(3.5rem, 7vw, 5.5rem) 25px 0;
  display: flex;
  align-items: center;
  color: var(--ink);
  cursor: pointer;
  font-size: clamp(1rem, 1.55vw, 1.18rem);
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.35;
  list-style: none;
  text-wrap: pretty;
}

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

.faq-rows summary::before,
.faq-rows summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4px;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease;
}

.faq-rows summary::after {
  transform: rotate(90deg);
}

.faq-rows details[open] summary::before,
.faq-rows details[open] summary::after {
  background: var(--orange);
}

.faq-rows details[open] summary::after {
  transform: rotate(0deg);
}

.faq-rows summary:hover {
  color: #c84100;
}

.faq-rows summary:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 6px;
  border-radius: 4px;
}

.faq-answer {
  max-width: 720px;
  padding: 0 clamp(3.5rem, 7vw, 5.5rem) 28px 0;
}

.faq-answer p {
  margin: 0;
  color: rgba(23, 20, 17, 0.65);
  font-size: clamp(0.92rem, 1.2vw, 1rem);
  line-height: 1.72;
  text-wrap: pretty;
}

.faq-answer a {
  color: #c84100;
  font-weight: 650;
  text-decoration-color: rgba(255, 80, 0, 0.38);
  text-underline-offset: 3px;
}

.faq-answer a:hover {
  text-decoration-color: currentColor;
}

.faq-answer a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
  border-radius: 3px;
}

.faq-contact {
  background:
    linear-gradient(135deg, rgba(255, 213, 0, 0.1), transparent 42%),
    #f5e8d3;
  border-top: 1px solid rgba(23, 20, 17, 0.07);
}

.faq-contact-inner {
  width: min(1120px, calc(100% - clamp(2rem, 8vw, 6rem)));
  margin: 0 auto;
  padding: clamp(5.5rem, 10vw, 9rem) 0;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: start;
  gap: clamp(3.5rem, 9vw, 8rem);
}

.faq-contact-copy {
  position: sticky;
  top: 3rem;
}

.faq-page main .faq-contact h2 {
  max-width: 480px;
  margin: 17px 0 0;
  font-size: clamp(2.8rem, 5.2vw, 4.8rem);
  font-weight: 780;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.faq-contact-copy > p:not(.section-kicker, .faq-contact-alternative) {
  margin: 23px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.6;
}

.faq-contact-alternative {
  max-width: 350px;
  margin: clamp(2.25rem, 5vw, 3.5rem) 0 0;
  color: rgba(23, 20, 17, 0.56);
  font-size: 0.82rem;
  line-height: 1.65;
}

.faq-contact-alternative a {
  color: var(--ink);
  font-weight: 700;
  text-decoration-color: rgba(255, 80, 0, 0.45);
  text-underline-offset: 3px;
}

.faq-contact-alternative a:hover {
  color: #c84100;
}

.faq-contact-alternative a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
  border-radius: 3px;
}

.faq-contact-form {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: grid;
  gap: 22px;
  background: rgba(255, 253, 248, 0.82);
  border: 1px solid rgba(23, 20, 17, 0.1);
  border-radius: clamp(16px, 2.5vw, 24px);
  box-shadow: 0 24px 60px rgba(83, 57, 21, 0.1);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.faq-field {
  display: grid;
  gap: 9px;
}

.faq-field label {
  color: rgba(23, 20, 17, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.faq-field input,
.faq-field textarea {
  width: 100%;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(23, 20, 17, 0.16);
  border-radius: 10px;
  font: inherit;
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq-field textarea {
  min-height: 148px;
  resize: vertical;
}

.faq-field input:hover,
.faq-field textarea:hover {
  border-color: rgba(23, 20, 17, 0.3);
}

.faq-field input:focus-visible,
.faq-field textarea:focus-visible {
  border-color: var(--orange);
  outline: 0;
  box-shadow: 0 0 0 3px rgba(255, 80, 0, 0.12);
}

.faq-contact-submit {
  min-width: 150px;
  justify-self: start;
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

.faq-contact-submit:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 5px;
}

@media (max-width: 900px) {
  .faq-group {
    grid-template-columns: minmax(145px, 0.28fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 6vw, 4.5rem);
  }

  .faq-contact-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 3.5rem;
  }

  .faq-contact-copy {
    position: static;
  }

  .faq-contact-alternative {
    margin-top: 2rem;
  }
}

@media (max-width: 600px) {
  .faq-hero-inner,
  .faq-list-inner,
  .faq-contact-inner {
    width: min(100% - 1.75rem, 420px);
  }

  .faq-hero-inner {
    padding: 7.5rem 0 4.75rem;
  }

  .faq-page .faq-hero h1 {
    font-size: clamp(3.25rem, 16vw, 4.5rem);
  }

  .faq-hero::after {
    right: 1.25rem;
    bottom: 2.75rem;
  }

  .faq-list-inner {
    padding: 4.75rem 0 5.25rem;
  }

  .faq-group {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.75rem;
  }

  .faq-group + .faq-group {
    margin-top: 4.75rem;
  }

  .faq-group-heading {
    padding-top: 17px;
  }

  .faq-page main .faq-group-heading h2 {
    font-size: 1.6rem;
  }

  .faq-rows summary {
    min-height: 72px;
    padding: 22px 3rem 22px 0;
  }

  .faq-answer {
    padding: 0 2.75rem 25px 0;
  }

  .faq-contact-inner {
    padding: 4.75rem 0 5rem;
  }

  .faq-page main .faq-contact h2 {
    font-size: clamp(2.65rem, 13vw, 3.8rem);
  }

  .faq-contact-form {
    padding: 1.25rem;
    border-radius: 16px;
  }

  .faq-contact-submit {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .faq-page .faq-hero h1 {
    font-size: 3.05rem;
  }

  .faq-rows summary {
    font-size: 0.96rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-rows summary::before,
  .faq-rows summary::after,
  .faq-field input,
  .faq-field textarea {
    transition: none;
  }
}

/* Reusable legal pages */
.legal-page {
  overflow-x: hidden;
}

.legal-hero {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 78% 24%, rgba(255, 213, 0, 0.1), transparent 24%),
    linear-gradient(180deg, #fffaf0 0%, #f6ead7 100%);
  border-bottom: 1px solid rgba(23, 20, 17, 0.08);
}

.legal-hero::after {
  content: "";
  position: absolute;
  right: 9%;
  bottom: 22%;
  width: clamp(42px, 5vw, 68px);
  height: 3px;
  background: linear-gradient(90deg, var(--yellow) 0 68%, var(--orange) 68%);
  border-radius: 999px;
  transform: rotate(-7deg);
}

.legal-hero-inner {
  width: min(1120px, calc(100% - clamp(2rem, 8vw, 6rem)));
  margin: 0 auto;
  padding: clamp(8.75rem, 14vw, 11rem) 0 clamp(4.5rem, 8vw, 6.5rem);
}

.legal-page .legal-hero h1 {
  max-width: 800px;
  font-size: clamp(3.5rem, 6.4vw, 6.25rem);
  line-height: 0.93;
}

.legal-effective-date {
  margin: 27px 0 0;
  color: rgba(23, 20, 17, 0.58);
  font-size: clamp(0.88rem, 1.2vw, 0.98rem);
  line-height: 1.5;
}

.legal-effective-date strong {
  font-weight: 650;
}

.legal-layout {
  width: min(1120px, calc(100% - clamp(2rem, 8vw, 6rem)));
  margin: 0 auto;
  padding: clamp(4.5rem, 9vw, 8rem) 0 clamp(5.5rem, 11vw, 9rem);
  display: grid;
  grid-template-columns: minmax(190px, 250px) minmax(0, 720px);
  align-items: start;
  justify-content: space-between;
  gap: clamp(3.5rem, 8vw, 7.5rem);
}

.legal-sidebar {
  position: sticky;
  top: 2.5rem;
}

.legal-toc {
  border-top: 1px solid var(--line);
}

.legal-toc summary {
  position: relative;
  padding: 18px 30px 16px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.12em;
  line-height: 1.3;
  list-style: none;
  text-transform: uppercase;
}

.legal-toc summary::-webkit-details-marker {
  display: none;
}

.legal-toc summary::before,
.legal-toc summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2px;
  width: 11px;
  height: 1px;
  background: var(--ink);
  transition: transform 180ms ease;
}

.legal-toc summary::after {
  transform: rotate(90deg);
}

.legal-toc[open] summary::after {
  transform: rotate(0deg);
}

.legal-toc summary:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 5px;
  border-radius: 3px;
}

.legal-toc ol {
  margin: 0;
  padding: 6px 0 0;
  display: grid;
  gap: 2px;
  list-style: none;
  counter-reset: legal-sections;
}

.legal-toc li {
  counter-increment: legal-sections;
}

.legal-toc a {
  position: relative;
  padding: 7px 5px 7px 27px;
  display: block;
  color: rgba(23, 20, 17, 0.54);
  border-radius: 5px;
  font-size: 0.7rem;
  font-weight: 570;
  line-height: 1.35;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.legal-toc a::before {
  content: counter(legal-sections, decimal-leading-zero);
  position: absolute;
  top: 7px;
  left: 0;
  color: rgba(23, 20, 17, 0.28);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.legal-toc a:hover {
  color: var(--ink);
  background: rgba(255, 213, 0, 0.09);
}

.legal-toc a:focus-visible {
  color: var(--ink);
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.legal-document {
  min-width: 0;
  color: rgba(23, 20, 17, 0.72);
  font-size: clamp(0.94rem, 1.15vw, 1rem);
  line-height: 1.76;
}

.legal-document > p {
  margin: 0;
  max-width: 70ch;
  text-wrap: pretty;
}

.legal-document > p + p {
  margin-top: 1.15em;
}

.legal-document h2 {
  max-width: 680px;
  margin: clamp(4rem, 8vw, 6.5rem) 0 1.35rem;
  color: var(--ink);
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 1.08;
  scroll-margin-top: 2.5rem;
  text-wrap: balance;
}

.legal-document h3 {
  max-width: 650px;
  margin: clamp(2.5rem, 5vw, 3.75rem) 0 1rem;
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.48rem);
  font-weight: 730;
  letter-spacing: -0.025em;
  line-height: 1.2;
  text-wrap: balance;
}

.legal-document h2:first-of-type {
  margin-top: clamp(3.5rem, 7vw, 5rem);
}

.legal-document h2::before {
  content: "";
  width: 38px;
  height: 3px;
  margin-bottom: 17px;
  display: block;
  background: linear-gradient(90deg, var(--yellow) 0 68%, var(--orange) 68%);
  border-radius: 999px;
}

.legal-document ul {
  max-width: 68ch;
  margin: 1.15rem 0 1.4rem;
  padding: 0;
  display: grid;
  gap: 0.55rem;
  list-style: none;
}

.legal-document li {
  position: relative;
  padding-left: 1.4rem;
}

.legal-document li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0.15rem;
  width: 5px;
  height: 5px;
  background: var(--yellow);
  border: 1px solid rgba(23, 20, 17, 0.15);
  border-radius: 50%;
}

.legal-document li:nth-child(even)::before {
  background: rgba(255, 80, 0, 0.68);
}

.legal-document li p {
  margin: 0;
}

.legal-document strong {
  color: rgba(23, 20, 17, 0.86);
  font-weight: 700;
}

.legal-document a {
  color: #bd3f00;
  overflow-wrap: anywhere;
  text-decoration-color: rgba(255, 80, 0, 0.38);
  text-underline-offset: 3px;
}

.legal-document a:hover {
  text-decoration-color: currentColor;
}

.legal-document a:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
  border-radius: 3px;
}

/* Manage Cookies */
.manage-cookies-page .legal-hero-summary {
  max-width: 610px;
  margin: 25px 0 0;
  color: rgba(23, 20, 17, 0.62);
  font-size: clamp(0.95rem, 1.25vw, 1.05rem);
  line-height: 1.65;
  text-wrap: pretty;
}

.manage-cookies-page .cookie-preference-control {
  margin: 2rem 0 0;
}

.manage-cookies-page .cky-banner-element {
  min-height: 50px;
  padding: 13px 22px;
  color: var(--ink);
  background: var(--yellow);
  border: 1px solid rgba(23, 20, 17, 0.16);
  border-radius: 9px;
  box-shadow: 0 9px 22px rgba(23, 20, 17, 0.1);
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 750;
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.manage-cookies-page .cky-banner-element:hover {
  background: #ffe03d;
  box-shadow: 0 11px 25px rgba(23, 20, 17, 0.14);
  transform: translateY(-1px);
}

.manage-cookies-page .cky-banner-element:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.manage-cookies-page .cookie-category-list > li {
  padding-block: 0.2rem;
}

.manage-cookies-page .cookie-category-list span {
  color: rgba(23, 20, 17, 0.58);
  font-size: 0.9em;
}

.manage-cookies-page .cookie-category-list p {
  margin: 0.25rem 0 0;
}

@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 3.75rem;
  }

  .legal-sidebar {
    position: static;
  }

  .legal-toc {
    padding: 0 1.25rem 1.25rem;
    background: rgba(255, 213, 0, 0.05);
    border: 1px solid rgba(23, 20, 17, 0.1);
    border-radius: 14px;
  }

  .legal-toc summary {
    padding-top: 20px;
  }

  .legal-toc ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 2rem;
  }

  .legal-document {
    max-width: 720px;
  }

  .legal-document h2 {
    scroll-margin-top: 1.5rem;
  }
}

@media (max-width: 600px) {
  .legal-hero-inner,
  .legal-layout {
    width: min(100% - 1.75rem, 420px);
  }

  .legal-hero-inner {
    padding: 7.5rem 0 4.5rem;
  }

  .legal-page .legal-hero h1 {
    font-size: clamp(3.15rem, 15vw, 4.25rem);
  }

  .legal-hero::after {
    right: 1.25rem;
    bottom: 2.6rem;
  }

  .legal-layout {
    padding: 3.75rem 0 5.5rem;
    gap: 3.25rem;
  }

  .legal-toc {
    padding-right: 1rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
    border-radius: 12px;
  }

  .legal-toc ol {
    grid-template-columns: minmax(0, 1fr);
  }

  .legal-toc a {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .legal-toc a::before {
    top: 8px;
  }

  .legal-document {
    font-size: 0.94rem;
    line-height: 1.72;
  }

  .legal-document h2 {
    margin-top: 4.25rem;
    font-size: clamp(1.75rem, 8.5vw, 2.25rem);
  }

  .legal-document h3 {
    margin-top: 2.75rem;
    font-size: 1.22rem;
  }

  .manage-cookies-page .cky-banner-element {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .legal-page .legal-hero h1 {
    font-size: 3rem;
  }

  .legal-document h2 {
    font-size: 1.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .legal-toc summary::before,
  .legal-toc summary::after,
  .legal-toc a {
    transition: none;
  }

  .manage-cookies-page .cky-banner-element {
    transition: none;
  }
}

/* Stripe post-purchase Thank You page */
.thank-you-page {
  overflow-x: hidden;
}

.thank-you-hero {
  position: relative;
  overflow: clip;
  background:
    radial-gradient(circle at 50% 38%, rgba(255, 213, 0, 0.19), transparent 31%),
    linear-gradient(180deg, #fffaf0 0%, #f7ead4 100%);
  border-bottom: 1px solid rgba(23, 20, 17, 0.08);
}

.thank-you-hero::after {
  content: "";
  position: absolute;
  right: 9%;
  bottom: 18%;
  width: clamp(48px, 6vw, 78px);
  height: 3px;
  background: linear-gradient(90deg, var(--yellow) 0 68%, var(--orange) 68%);
  border-radius: 999px;
  transform: rotate(-7deg);
}

.thank-you-hero-inner {
  width: min(760px, calc(100% - clamp(2rem, 8vw, 6rem)));
  min-height: min(760px, 88svh);
  margin: 0 auto;
  padding: clamp(9rem, 18vw, 12rem) 0 clamp(6rem, 11vw, 8.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-you-success-mark {
  width: clamp(68px, 8vw, 88px);
  height: clamp(68px, 8vw, 88px);
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border: 1px solid rgba(23, 20, 17, 0.14);
  border-radius: 50%;
  box-shadow: 0 18px 42px rgba(106, 76, 15, 0.14);
}

.thank-you-success-mark svg {
  width: 72%;
  height: 72%;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thank-you-page .thank-you-hero h1 {
  max-width: 720px;
  font-size: clamp(3.4rem, 7vw, 6.2rem);
  line-height: 0.96;
}

.thank-you-hero-intro {
  max-width: 620px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  line-height: 1.7;
  text-wrap: pretty;
}

.thank-you-next {
  background: var(--white);
}

.thank-you-next-inner {
  width: min(1080px, calc(100% - clamp(2rem, 8vw, 6rem)));
  margin: 0 auto;
  padding: clamp(5.5rem, 10vw, 8.5rem) 0;
}

.thank-you-next-heading {
  max-width: 650px;
  margin: 0 auto clamp(3.25rem, 6vw, 5rem);
  text-align: center;
}

.thank-you-next-heading h2 {
  margin: 0;
  font-size: clamp(2.75rem, 5.2vw, 4.7rem);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 1;
}

.thank-you-steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.thank-you-steps li {
  min-width: 0;
  padding: clamp(2rem, 4vw, 3rem);
  display: grid;
  align-content: start;
  gap: 1.5rem;
}

.thank-you-steps li + li {
  border-left: 1px solid var(--line);
}

.thank-you-steps li > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 213, 0, 0.45);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.thank-you-steps li:nth-child(2) > span {
  background: rgba(255, 80, 0, 0.16);
}

.thank-you-steps li:nth-child(3) > span {
  background: rgba(255, 213, 0, 0.24);
}

.thank-you-steps h3 {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.thank-you-steps p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
  text-wrap: pretty;
}

.thank-you-closing {
  background:
    linear-gradient(135deg, rgba(255, 213, 0, 0.12), transparent 44%),
    #f5e8d3;
  border-top: 1px solid rgba(23, 20, 17, 0.07);
}

.thank-you-closing-inner {
  width: min(790px, calc(100% - clamp(2rem, 8vw, 6rem)));
  margin: 0 auto;
  padding: clamp(5.5rem, 11vw, 8.5rem) 0;
  text-align: center;
}

.thank-you-closing h2 {
  margin: 0;
  font-size: clamp(2.65rem, 5.5vw, 4.8rem);
  font-weight: 780;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.thank-you-signoff {
  margin: 28px 0 0;
  font-size: 1rem;
  font-weight: 760;
}

.thank-you-support {
  margin-top: 8px;
  display: inline-block;
  color: var(--orange-text);
  font-size: 0.92rem;
  font-weight: 680;
  text-decoration-color: rgba(184, 60, 0, 0.38);
  text-underline-offset: 4px;
}

.thank-you-support:hover {
  text-decoration-color: currentColor;
}

.thank-you-support:focus-visible,
.thank-you-social a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.thank-you-social {
  margin-top: clamp(3rem, 6vw, 4.5rem);
}

.thank-you-social > p {
  margin: 0 0 14px;
  color: rgba(23, 20, 17, 0.58);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.thank-you-social nav {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.thank-you-social a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.72);
  border: 1px solid rgba(23, 20, 17, 0.12);
  border-radius: 50%;
  transition: background 160ms ease, transform 160ms ease;
}

.thank-you-social a:hover {
  background: var(--yellow);
  transform: translateY(-2px);
}

.thank-you-social svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.thank-you-social a:first-child svg {
  fill: currentColor;
  stroke: none;
}

.thank-you-social-dot {
  fill: currentColor;
  stroke: currentColor;
}

@media (max-width: 780px) {
  .thank-you-hero-inner {
    min-height: 700px;
  }

  .thank-you-steps {
    grid-template-columns: minmax(0, 1fr);
  }

  .thank-you-steps li {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 1.25rem;
  }

  .thank-you-steps li + li {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
}

@media (max-width: 600px) {
  .thank-you-hero::after {
    display: none;
  }

  .thank-you-hero-inner,
  .thank-you-next-inner,
  .thank-you-closing-inner {
    width: min(100% - 1.75rem, 420px);
  }

  .thank-you-hero-inner {
    min-height: auto;
    padding: 8rem 0 5.5rem;
  }

  .thank-you-page .thank-you-hero h1 {
    font-size: clamp(3rem, 15vw, 4.2rem);
  }

  .thank-you-next-inner,
  .thank-you-closing-inner {
    padding: 4.75rem 0 5.25rem;
  }

  .thank-you-next-heading {
    margin-bottom: 2.75rem;
  }

  .thank-you-next-heading h2,
  .thank-you-closing h2 {
    font-size: clamp(2.5rem, 12.5vw, 3.6rem);
  }

  .thank-you-steps li {
    padding: 1.75rem 0.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-you-social a {
    transition: none;
  }
}

/* WordPress fallback templates */
.wp-content-shell {
  width: min(900px, calc(100% - clamp(2rem, 8vw, 6rem)));
  min-height: 65vh;
  margin: 0 auto;
  padding: clamp(9rem, 16vw, 12rem) 0 clamp(5rem, 10vw, 8rem);
}

.wp-content-article + .wp-content-article {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--line);
}

.wp-content-article h1,
.wp-content-article h2,
.wp-not-found h1 {
  margin: 0 0 1.5rem;
}

.entry-content,
.wp-content-article > p,
.wp-not-found > p:not(.section-kicker) {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.75;
}

.wp-not-found {
  text-align: center;
}

.wp-not-found > p {
  margin-right: auto;
  margin-left: auto;
}

.wp-not-found .cta {
  margin: 2rem auto 0;
}

/* Shared server-side form feedback */
.lpw-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.lpw-form-feedback {
  width: 100%;
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid currentColor;
  border-radius: 0.75rem;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.45;
}

.lpw-form-feedback--success {
  color: #125c24;
  background: #effaf1;
}

.lpw-form-feedback--error {
  color: #8a2500;
  background: #fff2ec;
}

.live-footer .lpw-form-feedback {
  color: var(--white);
  background: rgb(255 255 255 / 8%);
}

.live-footer .lpw-form-feedback--success {
  border-color: var(--yellow);
}

.live-footer .lpw-form-feedback--error {
  border-color: var(--orange);
}

.lpw-form-feedback:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}
