@font-face {
  font-family: "Open Sans";
  src: url("fonts/OpenSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("fonts/OpenSans-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("fonts/OpenSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #19252a;
  --muted: #687378;
  --line: #dfe4e6;
  --soft: #f5f7f7;
  --green: #4cff0b;
  --green-dark: #16882d;
  --green-hover: #2fd600;
  --blue: #00a0e3;
  --danger: #b72929;
  --shadow: 0 18px 48px rgba(25, 37, 42, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html {
    overflow-x: clip;
  }
}

html.reveal-loading body {
  visibility: hidden;
  opacity: 0;
}

html.reveal-loading *,
html.reveal-loading *::before,
html.reveal-loading *::after {
  animation-play-state: paused !important;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Open Sans", Arial, sans-serif;
  line-height: 1.55;
}

button,
input,
select {
  font: inherit;
}

button,
select,
label {
  cursor: pointer;
}

a {
  color: inherit;
}

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

.preview-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 34px;
  padding: 7px 20px;
  color: #fff;
  background: #172428;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.preview-note::before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.shipping-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 10px 20px;
  background: var(--green);
  font-weight: 800;
  letter-spacing: .03em;
  text-align: center;
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid #edf0f1;
  background: rgba(255,255,255,.97);
}

.sticky-site-chrome {
  display: contents;
}

.sticky-site-chrome .site-header {
  backdrop-filter: blur(12px);
}

.site-page .site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 8px 24px rgba(25, 37, 42, 0.06);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 48px));
  min-height: 88px;
  margin: 0 auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  display: block;
  width: 186px;
  max-height: 62px;
}

.main-nav {
  position: absolute;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  transform: translateX(-50%);
}

.main-nav a {
  text-decoration: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .22s ease, opacity .18s ease;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  position: absolute;
  left: 0;
  content: "";
}

.menu-toggle-lines::before { top: -6px; }
.menu-toggle-lines::after { top: 6px; }

.site-header.menu-open .menu-toggle-lines {
  background: transparent;
}

.site-header.menu-open .menu-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.site-header.menu-open .menu-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  font-size: 18px;
}

.cart-button {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -3px;
  right: -2px;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 10px;
  font-weight: 700;
}

.page-shell {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  padding: 30px 0 24px;
  color: var(--muted);
  font-size: 13px;
}

.breadcrumb a {
  color: var(--blue);
  text-decoration: none;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
  gap: clamp(42px, 6vw, 84px);
  padding-bottom: 80px;
}

.product-gallery {
  min-width: 0;
}

.main-image-wrap {
  position: relative;
  display: grid;
  min-height: 610px;
  overflow: hidden;
  place-items: center;
  border-radius: 6px;
  background: linear-gradient(145deg, #f7f9f9, #e8edef);
}

.main-image-wrap img {
  display: block;
  width: 100%;
  height: 610px;
  object-fit: contain;
}

.image-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #fff;
  background: rgba(25,37,42,.86);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.thumb-row {
  display: grid;
  grid-template-columns: repeat(3, 98px);
  gap: 14px;
  margin-top: 16px;
}

.thumb {
  display: grid;
  width: 98px;
  height: 98px;
  overflow: hidden;
  padding: 0;
  place-items: center;
  border: 2px solid transparent;
  border-radius: 4px;
  background: #f2f4f4;
}

.thumb.active {
  border-color: var(--blue);
}

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

.product-info {
  padding-top: 16px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.product-title {
  margin-bottom: 10px;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #ffaf16;
  font-size: 14px;
}

.rating span {
  color: var(--muted);
  font-size: 13px;
}

.price {
  margin-bottom: 25px;
  font-size: 30px;
  font-weight: 700;
}

.product-copy {
  max-width: 620px;
  margin-bottom: 30px;
  color: #485358;
  font-size: 17px;
  line-height: 1.75;
}

.choice-label,
.field-label {
  display: block;
  margin-bottom: 9px;
  font-size: 13px;
  font-weight: 700;
}

.choice-group {
  margin-bottom: 24px;
}

.select-wrap {
  position: relative;
}

.select-wrap select {
  width: 100%;
  height: 56px;
  appearance: none;
  padding: 0 46px 0 16px;
  border: 1px solid #cfd6d8;
  border-radius: 4px;
  color: var(--ink);
  background: #fff;
}

.select-wrap::after {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  color: var(--muted);
  content: "▾";
  pointer-events: none;
}

.purchase-row {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 12px;
}

.quantity {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  height: 56px;
  border: 1px solid #cfd6d8;
  border-radius: 4px;
  background: #fff;
}

.quantity button {
  border: 0;
  color: var(--muted);
  background: transparent;
  font-size: 20px;
}

.quantity output {
  display: grid;
  place-items: center;
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border: 2px solid var(--blue);
  border-radius: 4px;
  color: var(--blue);
  background: #fff;
  font-weight: 700;
  text-decoration: none;
  transition: transform .16s ease, background .16s ease, box-shadow .16s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,160,227,.15);
}

.button-buy {
  width: 100%;
  min-height: 64px;
  margin-top: 12px;
  border-color: var(--green-dark);
  color: #102714;
  background: var(--green);
  font-size: 18px;
}

.button-buy:hover,
.place-order:hover {
  background: var(--green-hover);
  box-shadow: 0 10px 24px rgba(22,136,45,.2);
}

.buy-note {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.express-mini {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.express-mini p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.express-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.express-chip {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #526066;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
}

.product-meta {
  display: flex;
  gap: 22px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  max-width: 340px;
  padding: 14px 18px;
  border-radius: 4px;
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* Checkout */
.checkout-header .header-inner {
  min-height: 74px;
}

.checkout-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 38px 0 30px;
}

.checkout-heading h1 {
  margin-bottom: 4px;
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1.1;
  letter-spacing: -.04em;
}

.checkout-heading p {
  margin-bottom: 0;
  color: var(--muted);
}

.back-link {
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(350px, .82fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
  padding-bottom: 90px;
}

.checkout-card {
  margin-bottom: 18px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.step-number {
  display: grid;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: #15331b;
  background: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.section-heading h2 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -.02em;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.field.full {
  grid-column: 1 / -1;
}

.field input,
.field select,
.promo-row input {
  width: 100%;
  height: 52px;
  padding: 0 14px;
  border: 1px solid #cfd6d8;
  border-radius: 4px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

.field input:focus,
.field select:focus,
.promo-row input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,160,227,.1);
}

.optional {
  color: var(--muted);
  font-weight: 400;
}

.check-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
  color: #526066;
  font-size: 13px;
}

.check-line input {
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
  accent-color: var(--green-dark);
}

.payment-intro {
  margin: -13px 0 22px 40px;
  color: var(--muted);
  font-size: 13px;
}

.payment-option {
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.payment-option.selected {
  border-color: var(--green-dark);
  box-shadow: 0 0 0 2px rgba(76,255,11,.14);
}

.payment-radio {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 13px 16px;
  font-weight: 700;
}

.payment-radio input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--green-dark);
}

.method-mark {
  margin-left: auto;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.method-mark.paypal {
  color: #003087;
  font-size: 16px;
  font-style: italic;
}

.method-mark.venmo {
  color: #008cff;
  font-size: 16px;
}

.card-logos {
  display: flex;
  margin-left: auto;
  gap: 5px;
}

.card-logo {
  padding: 3px 6px;
  border: 1px solid #dce1e3;
  border-radius: 3px;
  color: #35444a;
  background: #f8f9f9;
  font-size: 9px;
  font-weight: 800;
}

.payment-panel {
  display: none;
  padding: 6px 16px 18px 46px;
  border-top: 1px solid #edf0f1;
}

.payment-option.selected .payment-panel {
  display: block;
}

.card-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 14px;
}

.card-fields .field:first-child,
.card-fields .field:nth-child(4) {
  grid-column: 1 / -1;
}

.payment-help {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.order-summary {
  position: sticky;
  top: 24px;
  padding: 30px;
  border-radius: 8px;
  background: var(--soft);
}

.order-summary h2 {
  margin-bottom: 24px;
  font-size: 20px;
}

.summary-product {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid #d8dfe1;
}

.summary-image {
  position: relative;
  display: grid;
  width: 86px;
  height: 86px;
  overflow: hidden;
  place-items: center;
  border: 1px solid #d8dfe1;
  border-radius: 5px;
  background: #fff;
}

.summary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.summary-qty {
  position: absolute;
  top: -1px;
  right: -1px;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border-radius: 0 5px 0 8px;
  color: #fff;
  background: var(--ink);
  font-size: 11px;
  font-weight: 700;
}

.summary-name {
  margin: 0 0 3px;
  font-weight: 700;
  line-height: 1.3;
}

.summary-variant {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.summary-price {
  font-weight: 700;
}

.promo-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 20px 0;
  border-bottom: 1px solid #d8dfe1;
}

.promo-row button {
  padding: 0 18px;
  border: 0;
  border-radius: 4px;
  color: #fff;
  background: #69767b;
  font-weight: 700;
}

.totals {
  padding: 18px 0;
  border-bottom: 1px solid #d8dfe1;
}

.total-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 10px;
  font-size: 14px;
}

.total-row:last-child {
  margin-bottom: 0;
}

.shipping-message {
  margin: 3px 0 0;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.shipping-message.qualified {
  display: inline-block;
  padding: 4px 9px;
  border-radius: 999px;
  color: #15331b;
  background: rgba(76, 255, 11, .3);
}

.grand-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0 4px;
  font-size: 16px;
  font-weight: 700;
}

.grand-total strong {
  font-size: 27px;
}

.grand-total small {
  margin-right: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
}

.place-order {
  width: 100%;
  min-height: 62px;
  margin-top: 18px;
  border: 2px solid var(--green-dark);
  border-radius: 4px;
  color: #102714;
  background: var(--green);
  font-size: 17px;
  font-weight: 800;
  transition: background .16s ease, transform .16s ease, box-shadow .16s ease;
}

.place-order:hover {
  transform: translateY(-1px);
}

.secure-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.site-footer {
  padding: 34px 24px;
  color: #b9c2c5;
  background: #172428;
  font-size: 12px;
  text-align: center;
}

@media (max-width: 980px) {
  .main-nav {
    gap: 20px;
    font-size: 12px;
  }

  .logo img {
    width: 155px;
  }

  .product-layout,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .product-info {
    padding-top: 0;
  }

  .order-summary {
    position: static;
    grid-row: 1;
  }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: 40;
    display: none;
    width: 100vw;
    padding: 18px 24px 24px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--line);
    background: rgba(255,255,255,.99);
    box-shadow: 0 18px 35px rgba(25,37,42,.14);
    font-size: 14px;
    transform: translateX(-50%);
  }

  .main-nav a {
    padding: 13px 4px;
    text-align: center;
  }

  .site-header.menu-open .main-nav {
    display: flex;
    animation: mobile-menu-in .25s ease both;
  }

  .menu-toggle {
    display: grid;
  }
}

@media (max-width: 640px) {
  .header-inner,
  .page-shell {
    width: min(100% - 28px, 1240px);
  }

  .header-inner {
    min-height: 72px;
  }

  .logo img {
    width: 145px;
  }

  .header-actions .icon-button:not(.cart-button) {
    display: none;
  }

  .shipping-bar {
    min-height: 44px;
    font-size: 13px;
  }

  .product-layout {
    gap: 34px;
  }

  .main-image-wrap,
  .main-image-wrap img {
    min-height: 390px;
    height: 390px;
  }

  .thumb-row {
    grid-template-columns: repeat(3, 80px);
  }

  .thumb {
    width: 80px;
    height: 80px;
  }

  .product-title {
    font-size: 38px;
  }

  .purchase-row {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .product-meta {
    flex-direction: column;
    gap: 4px;
  }

  .checkout-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .checkout-card,
  .order-summary {
    padding: 20px;
  }

  .field-grid,
  .card-fields {
    grid-template-columns: 1fr;
  }

  .field.full,
  .card-fields .field:first-child,
  .card-fields .field:nth-child(4) {
    grid-column: auto;
  }

  .payment-panel {
    padding-left: 16px;
  }

  .card-logos .card-logo:nth-child(-n+2) {
    display: none;
  }

  .summary-product {
    grid-template-columns: 72px minmax(0, 1fr) auto;
  }

  .summary-image {
    width: 72px;
    height: 72px;
  }
}

/* Shared site redesign pages */
.site-page {
  background: #fff;
}

.site-page .main-nav a {
  position: relative;
}

.site-page .main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--green);
  content: "";
  opacity: 0;
  transform: scaleX(.4);
  transition: opacity .16s ease, transform .16s ease;
}

.site-page .main-nav a:hover::after,
.site-page .main-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.section {
  padding: clamp(66px, 8vw, 108px) 0;
}

.section-soft {
  background: var(--soft);
}

.section-blue {
  color: #fff;
  background: #00a3e0;
}

.section-inner {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.section-heading-wide {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 38px;
}

.section-heading-wide h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.section-heading-wide p {
  max-width: 440px;
  margin-bottom: 4px;
  color: var(--muted);
}

.section-blue .section-heading-wide p,
.section-blue .eyebrow {
  color: rgba(255,255,255,.82);
}

.home-hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  color: #fff;
  background: linear-gradient(120deg, #008fcf 0%, #00b7eb 68%, #55dff4 100%);
}

.hero-doodle,
.hero-art-doodle {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  font-weight: 600;
  line-height: 1;
}

.hero-doodle-one {
  top: 68px;
  left: 31%;
  color: rgba(255, 224, 32, .8);
  font-size: 62px;
  transform: rotate(10deg);
}

.hero-doodle-two {
  top: 82px;
  right: 4%;
  color: rgba(255,255,255,.72);
  font-size: 34px;
  transform: rotate(-12deg);
}

.hero-doodle-three {
  bottom: 112px;
  left: 36%;
  color: #ff4b9a;
  font-size: 42px;
  transform: rotate(-11deg);
}

.hero-doodle-four {
  right: 3%;
  bottom: 142px;
  color: rgba(76,255,11,.55);
  font-size: 68px;
  transform: rotate(14deg);
}

.home-hero::before,
.home-hero::after {
  position: absolute;
  border: 2px solid rgba(255,255,255,.18);
  border-radius: 50%;
  content: "";
}

.home-hero::before {
  top: -170px;
  right: -100px;
  width: 520px;
  height: 520px;
  animation: hero-circle-one 13s ease-in-out infinite alternate;
}

.home-hero::after {
  bottom: -230px;
  left: 34%;
  width: 460px;
  height: 460px;
  animation: hero-circle-two 16s ease-in-out infinite alternate;
}

.home-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  gap: 40px;
  align-items: center;
  width: min(1240px, calc(100% - 48px));
  min-height: 680px;
  margin: 0 auto;
  padding: 70px 0;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.4);
  border-radius: 999px;
  background: rgba(255,255,255,.11);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateX(-46px);
  animation: hero-kicker-in .9s cubic-bezier(.16, 1, .3, 1) .08s forwards;
}

.home-hero h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(52px, 7vw, 92px);
  line-height: .97;
  letter-spacing: -.065em;
}

.hero-title-line {
  display: block;
  overflow: hidden;
  padding: 0 .04em .08em 0;
  margin-bottom: -.08em;
}

.hero-title-line > span {
  display: inline-block;
  transform: translateY(118%);
  animation: title-line-rise 1.15s cubic-bezier(.16, 1, .3, 1) forwards;
}

.hero-title-line:nth-child(2) > span {
  animation-delay: .16s;
}

.hero-title-line:nth-child(3) > span {
  animation-delay: .32s;
}

.home-hero h1 em {
  color: var(--green);
  font-style: normal;
}

.hero-copy {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255,255,255,.9);
  font-size: 19px;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(32px);
  animation: hero-copy-in .95s cubic-bezier(.16, 1, .3, 1) .48s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  animation: hero-actions-in .85s cubic-bezier(.16, 1, .3, 1) .58s forwards;
}

.hero-actions .button {
  min-width: 160px;
  border-color: #fff;
  color: #fff;
  background: transparent;
}

.hero-actions .button-primary {
  border-color: var(--green);
  color: #12301a;
  background: var(--green);
}

.hero-art {
  position: relative;
  display: grid;
  min-height: 510px;
  place-items: center;
}

.hero-orbit {
  position: absolute;
  z-index: 0;
  border: 2px solid rgba(255,255,255,.25);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  width: 470px;
  height: 390px;
  transform: rotate(-16deg);
  animation: hero-orbit-one-drift 13s ease-in-out infinite alternate;
}

.hero-orbit-two {
  width: 390px;
  height: 480px;
  border-color: rgba(255,255,255,.15);
  border-style: dashed;
  transform: rotate(18deg);
  animation: hero-orbit-two-drift 16s ease-in-out infinite alternate;
}

.hero-art-doodle-one {
  top: 23%;
  left: 0;
  color: #ffe025;
  font-size: 42px;
  transform: rotate(-16deg);
}

.hero-art-doodle-two {
  top: 24%;
  right: 8%;
  color: #ff4b9a;
  font-size: 40px;
  transform: rotate(12deg);
}

.hero-art-doodle-three {
  right: -1%;
  bottom: 31%;
  color: rgba(255,255,255,.58);
  font-size: 54px;
}

.hero-character-group {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(440px, 100%);
  min-height: 510px;
  place-items: center;
  opacity: 0;
  transform-origin: 62% 82%;
  animation: hero-character-fade-right .72s ease-out .12s both;
}

.hero-character-group::before {
  display: none;
}

.hero-character-group video,
.hero-character-group img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-height: 530px;
  object-fit: contain;
  filter: drop-shadow(0 22px 22px rgba(0,66,98,.18));
}

.hero-character-fallback {
  display: none !important;
}

.hero-character-group.show-static-character .hero-character-animation {
  display: none;
}

.hero-character-group.show-static-character .hero-character-fallback {
  display: block !important;
}

.hero-bubble {
  position: absolute;
  z-index: 3;
  padding: 11px 15px;
  border-radius: 14px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 12px 30px rgba(0,65,95,.15);
  font-size: 12px;
  font-weight: 800;
  opacity: 0;
  transform: rotate(var(--bubble-rotation, 0deg)) scale(.58);
  animation: hero-bubble-pop .82s linear both;
}

.hero-bubble.one {
  top: 14%;
  left: 2%;
  --bubble-rotation: -5deg;
  animation-delay: 1.4s;
}

.hero-bubble.two {
  right: 0;
  bottom: 16%;
  --bubble-rotation: 5deg;
  animation-delay: 1.55s;
}

.trust-band {
  position: relative;
  z-index: 3;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 24px 0 18px;
}

.trust-grid article {
  display: flex;
  min-height: 104px;
  align-items: center;
  gap: 16px;
  padding: 10px 24px;
  border-right: 1px solid var(--line);
}

.trust-grid article:last-child {
  border-right: 0;
}

.trust-icon {
  display: grid;
  flex: 0 0 66px;
  width: 66px;
  height: 66px;
  place-items: center;
  border-radius: 46% 54% 49% 51% / 55% 44% 56% 45%;
  font-size: 31px;
}

.trust-icon-purple { background: #eee9ff; }
.trust-icon-green { color: #2fba36; background: #e5f8e4; }
.trust-icon-yellow { color: #ffae00; background: #fff6d5; }
.trust-icon-pink { color: #f1287d; background: #ffe8f1; }

.trust-grid h2 {
  margin: 0 0 5px;
  font-size: 14px;
}

.trust-grid p {
  margin: 0;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.4;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.section-link-row {
  display: flex;
  margin-top: 34px;
  justify-content: flex-end;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .025em;
  text-decoration: none;
}

.arrow-link-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #15331b;
  background: var(--green);
  transition: transform .2s ease, background .2s ease;
}

.arrow-link-icon svg {
  display: block;
  width: 22px;
  height: 22px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transform: translateY(-.5px);
}

.arrow-link:hover .arrow-link-icon,
.arrow-link:focus-visible .arrow-link-icon {
  background: var(--green-hover);
  transform: translateX(4px);
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
  transition: transform .18s ease, box-shadow .18s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.product-card-media {
  position: relative;
  display: grid;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  place-items: center;
  background: #f1f4f4;
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.product-card:hover .product-card-media img {
  transform: scale(1.035);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #15331b;
  background: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.product-card-body {
  padding: 19px;
}

.product-card-body h3 {
  min-height: 46px;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.4;
}

.product-card-price {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: 800;
}

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.product-card-actions a,
.product-card-actions button {
  min-height: 42px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.product-card-actions a {
  display: grid;
  place-items: center;
}

.product-card-actions button {
  border-color: var(--green-dark);
  background: var(--green);
}

.story-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(45px, 8vw, 110px);
  align-items: center;
}

.story-art {
  position: relative;
  display: grid;
  min-height: 520px;
  overflow: hidden;
  place-items: center;
  border-radius: 12px;
  background: #eef3f4;
}

.story-art::after {
  position: absolute;
  right: -100px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: var(--green);
  content: "";
  opacity: .55;
}

.story-art img {
  position: relative;
  z-index: 1;
  width: min(440px, 90%);
  max-height: 500px;
  object-fit: contain;
}

.home-story .story-art {
  min-height: 600px;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  isolation: isolate;
}

.home-story .story-art img {
  z-index: 3;
  width: min(540px, 96%);
  max-height: 570px;
  filter: drop-shadow(0 18px 18px rgba(25,37,42,.16));
  transform: rotate(1.5deg);
}

.home-story .story-art::after {
  display: none;
}

.story-blob {
  position: absolute;
  z-index: 0;
  display: block;
  pointer-events: none;
}

.story-blob-yellow {
  top: 5%;
  right: -4%;
  width: 78%;
  height: 57%;
  border-radius: 48% 52% 43% 57% / 56% 44% 56% 44%;
  background: #ffdc4a;
  transform: rotate(12deg);
}

.story-blob-lavender {
  right: 2%;
  bottom: 1%;
  width: 92%;
  height: 50%;
  border-radius: 55% 45% 57% 43% / 43% 56% 44% 57%;
  background: #ded9ff;
  transform: rotate(-8deg);
}

.story-star {
  position: absolute;
  z-index: 4;
  right: -2%;
  bottom: 24%;
  color: #ffbf00;
  font-size: 34px;
  line-height: 1;
  transform: rotate(12deg);
}

.newsletter {
  padding: 76px 0 68px;
  background: #fff;
}

.newsletter-inner {
  position: relative;
  display: grid;
  grid-template-columns: 105px 1fr 1.2fr;
  gap: 20px;
  align-items: center;
  width: min(1240px, calc(100% - 48px));
  min-height: 128px;
  margin: 0 auto;
  padding: 24px 32px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(100deg, #fff0ba, #fffbea);
}

.newsletter-mail {
  display: grid;
  width: 76px;
  height: 68px;
  place-items: center;
  border: 7px solid #ffc8dc;
  border-radius: 18px;
  color: #ef287a;
  background: #fff2f7;
  box-shadow: 0 8px 12px rgba(255,45,135,.12);
  font-size: 42px;
  font-weight: 900;
  transform: rotate(-7deg);
}

.newsletter-copy h2 {
  margin: 0 0 3px;
  font-size: 22px;
}

.newsletter-copy p {
  max-width: 380px;
  margin: 0;
  color: #4e5a5f;
  font-size: 12px;
}

.newsletter-form {
  display: flex;
  min-height: 54px;
  overflow: hidden;
  border: 1px solid #e3ddcb;
  border-radius: 9px;
  background: #fff;
}

.newsletter-form input {
  min-width: 0;
  flex: 1;
  padding: 0 20px;
  border: 0;
  outline: 0;
}

.newsletter-form button {
  min-width: 165px;
  border: 0;
  color: #fff;
  background: var(--blue);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease;
}

.newsletter-form button:hover,
.newsletter-form button:focus-visible {
  background: #007db7;
}

.newsletter-spark {
  position: absolute;
  right: 14px;
  color: #ef2a82;
  font-size: 44px;
  transform: rotate(90deg);
}

.story-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: -.05em;
}

.story-copy p {
  color: #4e5a5f;
  font-size: 16px;
  line-height: 1.8;
}

.story-copy .button {
  margin-top: 12px;
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}

.learning-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.learning-card {
  min-height: 260px;
  padding: 30px;
  border-radius: 9px;
  color: var(--ink);
  background: #fff;
}

.learning-icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 42px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  font-size: 24px;
}

.learning-card h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.learning-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 5vw, 66px) 0;
  color: #fff;
  background: linear-gradient(120deg, #008fcf, #00b7eb);
}

.page-hero::before {
  z-index: 1;
  position: absolute;
  right: clamp(36px, 9vw, 150px);
  bottom: -52px;
  width: clamp(120px, 14vw, 205px);
  height: 115%;
  background: url("media/juggler.png") bottom center / contain no-repeat;
  content: "";
  opacity: 0;
  transform: translateY(22px) rotate(2deg);
  animation: character-peek 2.2s cubic-bezier(.16, 1, .3, 1) .2s both;
}

.page-hero::after {
  display: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.page-hero-decor {
  position: absolute;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.page-hero-orbit,
.page-hero-doodle {
  position: absolute;
  display: block;
}

.page-hero-orbit {
  border: 2px solid rgba(255,255,255,.24);
  border-radius: 50%;
}

.page-hero-orbit-one {
  top: -165px;
  right: -45px;
  width: 470px;
  height: 330px;
  animation: page-orbit-one-drift 14s ease-in-out infinite alternate;
}

.page-hero-orbit-two {
  right: 95px;
  bottom: -185px;
  width: 390px;
  height: 300px;
  border-color: rgba(255,255,255,.15);
  border-style: dashed;
  animation: page-orbit-two-drift 17s ease-in-out infinite alternate;
}

.page-hero-doodle {
  font-weight: 600;
  line-height: 1;
}

.page-hero-doodle-one {
  top: 22px;
  left: 36%;
  color: rgba(255,224,37,.8);
  font-size: 48px;
  transform: rotate(12deg);
}

.page-hero-doodle-two {
  top: 30px;
  right: 5%;
  color: #ff4b9a;
  font-size: 32px;
  transform: rotate(-10deg);
}

.page-hero-doodle-three {
  right: 29%;
  bottom: 18px;
  color: rgba(76,255,11,.58);
  font-size: 52px;
  transform: rotate(16deg);
}

.page-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1;
  letter-spacing: -.06em;
}

.page-hero p {
  max-width: 660px;
  margin-bottom: 0;
  color: rgba(255,255,255,.9);
  font-size: 16px;
}

.page-hero .eyebrow {
  opacity: 0;
  transform: translateY(30px);
  animation: internal-kicker-rise 1.8s cubic-bezier(.16, 1, .3, 1) .18s forwards;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
}

.shop-toolbar p {
  margin: 0;
  color: var(--muted);
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-chip {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #58666b;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
}

.filter-chip.active {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}

.mission-callout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
  padding: clamp(36px, 6vw, 70px);
  border-radius: 12px;
  color: #fff;
  background: var(--ink);
}

.mission-callout h2 {
  margin-bottom: 14px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

.mission-callout p {
  margin-bottom: 18px;
  color: #c4ced1;
  line-height: 1.8;
}

.mission-callout h3 {
  margin: 28px 0 10px;
  color: #fff;
  font-size: 21px;
}

.mission-stat {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 26px 0 34px;
  padding: 22px 0;
  border-top: 1px solid rgba(196,206,209,.38);
  border-bottom: 1px solid rgba(196,206,209,.38);
}

.mission-stat strong {
  display: block;
  color: var(--green);
  font-size: 68px;
  line-height: 1;
}

.mission-stat span {
  display: block;
  margin-top: 0;
  color: #fff;
  font-weight: 700;
}

.contact-grid {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: clamp(36px, 7vw, 90px);
  align-items: start;
}

.contact-panel {
  padding: 36px;
  border-radius: 10px;
  color: #fff;
  background: var(--ink);
}

.contact-panel h2 {
  margin-bottom: 16px;
  font-size: 28px;
}

.contact-panel p {
  color: #c7d0d3;
}

.contact-detail {
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.15);
}

.contact-detail span {
  display: block;
  margin-bottom: 4px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.contact-detail a {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.contact-form {
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.contact-form h2 {
  margin-bottom: 24px;
  font-size: 28px;
}

.contact-form textarea {
  width: 100%;
  min-height: 160px;
  resize: vertical;
  padding: 14px;
  border: 1px solid #cfd6d8;
  border-radius: 4px;
  font: inherit;
}

.contact-form .button {
  margin-top: 18px;
  border-color: var(--green-dark);
  color: #15331b;
  background: var(--green);
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}

.cart-table {
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fff;
}

.cart-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 120px 90px;
  gap: 18px;
  align-items: center;
  padding: 22px;
}

.cart-item img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 5px;
  background: var(--soft);
}

.cart-item h2 {
  margin-bottom: 4px;
  font-size: 17px;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.cart-total-price {
  font-weight: 800;
  text-align: right;
}

.cart-summary-card {
  padding: 28px;
  border-radius: 9px;
  background: var(--soft);
}

.cart-summary-card h2 {
  margin-bottom: 22px;
  font-size: 21px;
}

.cart-summary-card .button-buy {
  margin-top: 20px;
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.account-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}

.account-card h2 {
  margin-bottom: 8px;
  font-size: 27px;
}

.account-card > p {
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 14px;
}

.account-card .field {
  margin-bottom: 16px;
}

.account-card .button {
  width: 100%;
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 760px);
  gap: clamp(40px, 7vw, 100px);
  justify-content: center;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 116px;
  padding: 20px;
  border-radius: 7px;
  background: var(--soft);
}

.legal-nav strong {
  display: block;
  margin-bottom: 12px;
  font-size: 13px;
}

.legal-nav a {
  display: block;
  padding: 7px 0;
  color: var(--muted);
  font-size: 12px;
  text-decoration: none;
}

.legal-content h2 {
  margin: 38px 0 12px;
  font-size: 24px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: #4f5b60;
  line-height: 1.8;
}

.footer-main {
  padding: 62px 0 34px;
  color: #c2cbce;
  background: #172428;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 44px;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.footer-brand img {
  width: 175px;
  margin-bottom: 17px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 340px;
  color: #9eabad;
  font-size: 13px;
}

.footer-column h3 {
  margin-bottom: 14px;
  color: #fff;
  font-size: 13px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  padding: 5px 0;
  color: #aeb9bc;
  font-size: 13px;
  text-decoration: none;
}

.footer-bottom {
  width: min(1240px, calc(100% - 48px));
  margin: 36px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #829094;
  font-size: 11px;
}

/* Scroll reveal motion */
.reveal-ready .scroll-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .78s ease, transform .85s cubic-bezier(.16, 1, .3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-ready .scroll-reveal.reveal-left {
  transform: translateX(-54px);
}

.reveal-ready .scroll-reveal.reveal-right {
  transform: translateX(54px);
}

.reveal-ready .scroll-reveal.reveal-scale {
  transform: translateY(20px) scale(.94);
}

.reveal-ready .scroll-reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

@keyframes hero-circle-one {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-46px, 34px, 0) scale(1.09); }
}

@keyframes hero-circle-two {
  from { transform: translate3d(0, 0, 0) rotate(0); }
  to { transform: translate3d(48px, -32px, 0) rotate(14deg); }
}

@keyframes hero-orbit-one-drift {
  from { transform: translate3d(0, 0, 0) rotate(-16deg) scale(1); }
  to { transform: translate3d(-24px, 18px, 0) rotate(-10deg) scale(1.06); }
}

@keyframes hero-orbit-two-drift {
  from { transform: translate3d(0, 0, 0) rotate(18deg); }
  to { transform: translate3d(28px, -18px, 0) rotate(25deg); }
}

@keyframes page-orbit-one-drift {
  from { transform: translate3d(0, 0, 0) rotate(-12deg); }
  to { transform: translate3d(-30px, 18px, 0) rotate(-5deg) scale(1.05); }
}

@keyframes page-orbit-two-drift {
  from { transform: translate3d(0, 0, 0) rotate(17deg); }
  to { transform: translate3d(24px, -14px, 0) rotate(24deg); }
}

@keyframes title-line-rise {
  from { transform: translateY(118%); }
  to { transform: translateY(0); }
}

@keyframes hero-kicker-in {
  from { opacity: 0; transform: translateX(-46px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes hero-copy-in {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-character-fade-right {
  from {
    opacity: 0;
    transform: translateX(36px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes hero-bubble-pop {
  0% { opacity: 0; transform: rotate(var(--bubble-rotation, 0deg)) scale(.35); }
  18% { opacity: 1; }
  42% { opacity: 1; transform: rotate(var(--bubble-rotation, 0deg)) scale(1.18); }
  62% { opacity: 1; transform: rotate(var(--bubble-rotation, 0deg)) scale(.88); }
  78% { opacity: 1; transform: rotate(var(--bubble-rotation, 0deg)) scale(1.075); }
  91% { opacity: 1; transform: rotate(var(--bubble-rotation, 0deg)) scale(.975); }
  100% { opacity: 1; transform: rotate(var(--bubble-rotation, 0deg)) scale(1); }
}

@keyframes hero-actions-in {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes internal-kicker-rise {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes internal-circle-drift {
  0% { transform: translate3d(0, 0, 0) rotate(0deg) scale(.96); border-radius: 50%; }
  25% { transform: translate3d(-35px, 22px, 0) rotate(8deg) scale(1.04); border-radius: 46% 54% 57% 43%; }
  50% { transform: translate3d(-52px, 45px, 0) rotate(18deg) scale(1.09); border-radius: 55% 45% 44% 56%; }
  75% { transform: translate3d(-18px, 32px, 0) rotate(28deg) scale(1.02); border-radius: 43% 57% 52% 48%; }
  100% { transform: translate3d(0, 0, 0) rotate(36deg) scale(.96); border-radius: 50%; }
}

@keyframes character-peek {
  from { opacity: 0; transform: translateY(52px) rotate(5deg); }
  to { opacity: 1; transform: translateY(0) rotate(2deg); }
}

@keyframes mobile-menu-in {
  from { opacity: 0; transform: translate(-50%, -8px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* Testimonial carousel */
.testimonial-section {
  overflow: hidden;
  padding: clamp(76px, 9vw, 120px) 0;
  background: #fff;
}

.testimonial-heading {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto 46px;
  text-align: center;
}

.testimonial-heading h2 {
  margin-bottom: 10px;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing: -.04em;
}

.testimonial-heading p {
  color: var(--muted);
}

.testimonial-viewport {
  overflow: hidden;
  width: 100%;
  padding: 35px 0 70px;
}

.testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(700px, 68vw);
  gap: 40px;
  align-items: center;
  transition: transform .72s cubic-bezier(.16, 1, .3, 1);
  will-change: transform;
}

.testimonial-slide {
  position: relative;
  min-height: 290px;
  padding: 55px 64px 48px 94px;
  border-radius: 22px;
  color: #778186;
  background: #f2f5f6;
  opacity: .22;
  transform: scale(.91);
  transition: opacity .55s ease, transform .6s cubic-bezier(.16, 1, .3, 1), background .45s ease, color .45s ease, box-shadow .45s ease;
}

.testimonial-slide::after {
  position: absolute;
  bottom: -24px;
  left: calc(50% - 24px);
  width: 48px;
  height: 48px;
  border-radius: 0 0 8px 0;
  background: inherit;
  content: "";
  transform: rotate(45deg);
}

.testimonial-slide.active {
  color: #fff;
  background: #08a5dd;
  box-shadow: 40px 55px 60px -30px rgba(0,0,0,.3);
  opacity: 1;
  transform: scale(1);
}

.testimonial-quote-mark {
  position: absolute;
  top: 42px;
  left: 42px;
  color: rgba(0,85,125,.28);
  font-size: 70px;
  font-weight: 800;
  line-height: 1;
}

.testimonial-slide blockquote {
  margin: 0;
  font-size: clamp(18px, 1.65vw, 25px);
  line-height: 1.7;
}

.testimonial-person {
  position: absolute;
  top: calc(100% + 44px);
  right: 0;
  left: 0;
  color: var(--ink);
  text-align: center;
}

.testimonial-person strong,
.testimonial-person span {
  display: block;
}

.testimonial-person strong {
  margin-bottom: 2px;
  font-size: 16px;
}

.testimonial-person span {
  color: var(--muted);
  font-size: 13px;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 42px;
}

.testimonial-controls button {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  font-size: 26px;
  transition: transform .16s ease, background .16s ease;
}

.testimonial-controls button:hover {
  transform: scale(1.08);
  background: var(--green);
}

@media (max-width: 720px) {
  .home-hero .hero-character-group,
  .home-hero .hero-bubble {
    opacity: 0;
    animation: none;
  }

  .home-hero .hero-character-group {
    transform: translateX(36px);
  }

  .home-hero .hero-art.mobile-motion-visible .hero-character-group {
    animation: hero-character-fade-right .72s ease-out .08s both;
  }

  .home-hero .hero-art.mobile-motion-visible .hero-bubble {
    animation: hero-bubble-pop .76s linear both;
  }

  .home-hero .hero-art.mobile-motion-visible .hero-bubble.one {
    animation-delay: 1.4s;
  }

  .home-hero .hero-art.mobile-motion-visible .hero-bubble.two {
    animation-delay: 1.55s;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal-ready .scroll-reveal {
    opacity: 1;
    transform: none;
  }

  .hero-actions,
  .hero-title-line > span,
  .hero-kicker,
  .hero-copy,
  .hero-character-group,
  .hero-bubble,
  .page-hero .eyebrow,
  .page-hero::before {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

  .hero-character-animation {
    display: none !important;
  }

  .hero-character-fallback {
    display: block !important;
  }
}

@media (max-width: 1050px) {
  .reveal-ready .scroll-reveal.reveal-left,
  .reveal-ready .scroll-reveal.reveal-right {
    transform: translateY(32px);
  }

  .trust-grid article {
    gap: 12px;
    padding: 10px 14px;
  }

  .trust-icon {
    flex-basis: 56px;
    width: 56px;
    height: 56px;
  }

  .newsletter-inner {
    grid-template-columns: 86px 1fr 1.1fr;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .home-hero-inner,
  .story-grid,
  .mission-callout,
  .contact-grid,
  .cart-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .home-hero-inner {
    padding-bottom: 30px;
  }

  .hero-art {
    min-height: 430px;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid article:nth-child(2) {
    border-right: 0;
  }

  .trust-grid article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .newsletter-inner {
    grid-template-columns: 80px 1fr;
  }

  .newsletter-form {
    grid-column: 1 / -1;
  }

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

  .mission-stat {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.2);
    border-bottom: 1px solid rgba(255,255,255,.2);
    border-left: 0;
  }

  .legal-nav {
    position: static;
  }

  .testimonial-track {
    grid-auto-columns: min(620px, 82vw);
  }
}

@media (max-width: 640px) {
  .section-inner,
  .home-hero-inner,
  .trust-grid,
  .page-hero-inner,
  .footer-grid,
  .footer-bottom {
    width: min(100% - 28px, 1240px);
  }

  .home-hero,
  .home-hero-inner {
    min-height: 0;
  }

  .home-hero h1 {
    font-size: 46px;
  }

  .hero-character-group::before {
    width: 310px;
    height: 310px;
  }

  .hero-character-group {
    min-height: 430px;
  }

  .trust-grid,
  .learning-grid,
  .account-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid {
    padding: 12px 0;
  }

  .trust-grid article,
  .trust-grid article:nth-child(2),
  .trust-grid article:nth-child(-n+2) {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid article:last-child {
    border-bottom: 0;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .section-link-row {
    margin-top: 28px;
    justify-content: center;
  }

  .trust-item,
  .trust-item:first-child {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .section-heading-wide,
  .shop-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-card-body h3 {
    min-height: 0;
    font-size: 13px;
  }

  .product-card-body {
    padding: 12px;
  }

  .product-card-price {
    margin-bottom: 11px;
    font-size: 16px;
  }

  .product-card-actions {
    grid-template-columns: 1fr 42px;
    gap: 5px;
  }

  .product-card-actions a,
  .product-card-actions button {
    min-height: 38px;
    padding: 0 7px;
    font-size: 10px;
  }

  .story-art {
    min-height: 390px;
  }

  .home-story .story-art {
    min-height: 470px;
  }

  .story-blob-yellow {
    right: 1%;
    width: 76%;
  }

  .story-blob-lavender {
    right: 4%;
    width: 88%;
  }

  .newsletter {
    padding: 48px 0 44px;
  }

  .newsletter-inner {
    width: min(100% - 28px, 1240px);
    padding: 22px;
    grid-template-columns: 60px 1fr;
  }

  .newsletter-mail {
    width: 56px;
    height: 52px;
    border-width: 5px;
    font-size: 29px;
  }

  .newsletter-copy h2 {
    font-size: 18px;
  }

  .newsletter-form {
    min-height: 49px;
  }

  .newsletter-form button {
    min-width: 120px;
  }

  .newsletter-spark {
    display: none;
  }

  .page-hero {
    padding: 34px 0 38px;
  }

  .page-hero::before {
    right: 14px;
    bottom: -36px;
    width: 118px;
    opacity: 1;
  }

  .page-hero::after {
    top: -185px;
    right: -180px;
    width: 360px;
    height: 360px;
  }

  .page-hero-orbit-one {
    top: -95px;
    right: -155px;
    width: 360px;
    height: 245px;
  }

  .page-hero-orbit-two {
    right: -55px;
    bottom: -170px;
    width: 310px;
    height: 245px;
  }

  .page-hero-doodle-one {
    display: none;
  }

  .page-hero-doodle-two {
    top: 16px;
    right: 3%;
    font-size: 25px;
  }

  .page-hero-doodle-three {
    right: 34%;
    bottom: 8px;
    font-size: 34px;
  }

  .page-hero h1 {
    max-width: calc(100% - 72px);
    font-size: 36px;
  }

  .page-hero p:not(.eyebrow) {
    max-width: calc(100% - 64px);
    font-size: 14px;
  }

  .testimonial-heading {
    width: min(100% - 28px, 1240px);
  }

  .testimonial-track {
    grid-auto-columns: 86vw;
    gap: 18px;
  }

  .testimonial-slide {
    min-height: 330px;
    padding: 48px 28px 38px 65px;
  }

  .testimonial-quote-mark {
    top: 38px;
    left: 24px;
    font-size: 54px;
  }

  .cart-item {
    grid-template-columns: 86px minmax(0, 1fr);
  }

  .cart-item img {
    width: 86px;
    height: 86px;
  }

  .cart-item .quantity,
  .cart-total-price {
    grid-column: 2;
  }

  .cart-total-price {
    text-align: left;
  }
}

@media (max-width: 400px) {
  .home-hero h1 {
    font-size: 40px;
  }
}

@media (max-width: 720px) {
  .site-page .main-nav a::after {
    right: auto;
    bottom: 6px;
    left: 50%;
    width: 36px;
    margin-left: -18px;
  }
}
