:root {
  --site-ink: #15130f;
  --site-muted: #6c665e;
  --site-line: #15130f;
  --site-soft-line: #c9c1b4;
  --site-paper: #fffdf8;
  --site-paper-warm: #f4ffe5;
  --site-bg: #e8e8e8;
  --site-lemon: #d9f75f;
  --site-peach: #c9f26a;
  --site-lime-soft: #aceb48;
  --site-mint: #78daa0;
  --site-lime: #cfff6a;
  --site-leaf: #63c96c;
  --site-shadow: #15130f;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  color: var(--site-ink);
  background: var(--site-bg);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--site-ink);
  background:
    repeating-linear-gradient(0deg, rgba(21, 19, 15, 0.025) 0 1px, transparent 1px 6px),
    var(--site-bg);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.34) 0 1px, transparent 1px 12px),
    linear-gradient(0deg, rgba(255, 253, 248, 0.18) 0 1px, transparent 1px 12px);
  opacity: 0.45;
}

a {
  color: inherit;
}

.social-logo-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 56px;
  pointer-events: none;
}

.site-brand {
  position: absolute;
  top: 10px;
  left: 16px;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 11px 6px 7px;
  border: 1.5px solid var(--site-line);
  border-radius: 8px;
  background: var(--site-paper);
  color: var(--site-ink);
  font-size: 17px;
  font-weight: 890;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  box-shadow: 4px 4px 0 rgba(21, 19, 15, 0.18);
  pointer-events: auto;
}

.site-brand:hover,
.site-brand:focus-visible {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 5px 5px 0 rgba(21, 19, 15, 0.2);
}

.site-mark {
  position: relative;
  width: 22px;
  height: 25px;
  flex: 0 0 22px;
  border: 0;
  border-radius: 0;
  background: url("/assets/harmonade-lime-sticker.png") center / contain no-repeat;
  box-shadow: none;
  filter:
    drop-shadow(0.7px 0 0 #fffdf8)
    drop-shadow(-0.7px 0 0 #fffdf8)
    drop-shadow(0 0.7px 0 #fffdf8)
    drop-shadow(0 -0.7px 0 #fffdf8)
    drop-shadow(1px 1.5px 0 rgba(21, 19, 15, 0.2));
  transform: rotate(7deg);
}

.site-mark::before,
.site-mark::after {
  display: none;
}

.site-menu {
  position: absolute;
  top: 10px;
  left: 50vw;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  padding: 4px;
  border: 1.5px solid var(--site-line);
  border-radius: 8px;
  background: var(--site-paper);
  box-shadow: 4px 4px 0 rgba(21, 19, 15, 0.16);
  transform: translateX(-50%);
  pointer-events: auto;
}

.site-menu a {
  min-width: 60px;
  min-height: 34px;
  display: inline-grid;
  place-items: center;
  padding: 0 10px;
  border-radius: 6px;
  color: color-mix(in srgb, var(--site-ink) 72%, var(--site-muted));
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-decoration: none;
}

.site-menu a:hover,
.site-menu a:focus-visible {
  color: var(--site-ink);
  background: var(--site-paper-warm);
  outline: none;
}

.site-menu a[aria-current="page"] {
  color: #241404;
  background: linear-gradient(135deg, var(--site-lemon), var(--site-lime) 62%, var(--site-leaf));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.58);
}

.account-bar {
  position: absolute;
  top: 10px;
  right: 16px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
}

.account-button {
  position: relative;
  min-width: 0;
  min-height: 34px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0;
  border: 1.5px solid var(--site-line);
  border-radius: 10px;
  background:
    repeating-linear-gradient(0deg, rgba(31, 29, 26, 0.024) 0 1px, transparent 1px 5px),
    color-mix(in srgb, var(--site-paper) 94%, white);
  color: var(--site-ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
  box-shadow:
    3px 3px 0 rgba(21, 19, 15, 0.2),
    0 10px 22px rgba(21, 19, 15, 0.16),
    inset 0 1px rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.account-button:hover,
.account-button:focus-visible {
  outline: none;
  transform: translateY(-1px);
  background:
    repeating-linear-gradient(0deg, rgba(31, 29, 26, 0.02) 0 1px, transparent 1px 5px),
    var(--site-paper-warm);
  box-shadow:
    4px 4px 0 rgba(21, 19, 15, 0.22),
    0 12px 26px rgba(21, 19, 15, 0.2),
    inset 0 1px rgba(255, 255, 255, 0.58);
}

.account-button[data-open-auth] {
  min-width: 34px;
  width: 34px;
  padding: 0;
  border-color: var(--site-ink);
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.82), transparent 30%),
    repeating-linear-gradient(135deg, rgba(21, 19, 15, 0.03) 0 1px, transparent 1px 8px),
    linear-gradient(135deg, var(--site-lemon), var(--site-lime) 58%, var(--site-leaf));
  color: #241707;
  box-shadow:
    4px 4px 0 rgba(21, 19, 15, 0.24),
    0 12px 26px rgba(185, 232, 79, 0.2),
    inset 0 1px rgba(255, 255, 255, 0.62);
}

.account-button[data-open-auth]:hover,
.account-button[data-open-auth]:focus-visible {
  border-color: color-mix(in srgb, var(--site-leaf) 58%, var(--site-ink));
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.88), transparent 31%),
    repeating-linear-gradient(135deg, rgba(21, 19, 15, 0.034) 0 1px, transparent 1px 8px),
    linear-gradient(135deg, #fff06a, #d9f765 48%, #8ee36d 74%, #69c879);
  box-shadow:
    5px 5px 0 rgba(21, 19, 15, 0.26),
    0 0 0 3px rgba(185, 232, 79, 0.14),
    0 14px 30px rgba(118, 216, 109, 0.14),
    inset 0 1px rgba(255, 255, 255, 0.68);
}

.account-avatar,
.account-glyph,
.profile-avatar {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border: 1.5px solid var(--site-ink);
  border-radius: 50% 52% 48% 54%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.84), transparent 30%),
    linear-gradient(135deg, var(--site-lemon), var(--site-lime) 62%, var(--site-leaf));
  color: #1f1d1a;
  box-shadow: 1.5px 1.5px 0 var(--site-ink);
  font-weight: 950;
  text-transform: uppercase;
}

.account-avatar,
.account-glyph {
  width: 18px;
  height: 18px;
  font-size: 8px;
}

.account-glyph::before {
  width: 7px;
  height: 7px;
  content: "";
  border: 1.5px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 7px 0 -2px currentColor;
}

.account-name {
  max-width: 104px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.account-button span[data-auth-button-label],
.account-name {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.account-button[hidden],
.auth-layer[hidden],
.profile-layer[hidden] {
  display: none !important;
}

body.auth-open {
  overflow: hidden;
}

.auth-layer,
.profile-layer {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(900px 540px at 50% 0%, rgba(185, 232, 79, 0.22), transparent 70%),
    rgba(31, 29, 26, 0.36);
  color: var(--site-ink);
  backdrop-filter: blur(16px);
}

.auth-layer:not([hidden]),
.profile-layer:not([hidden]) {
  animation: siteAuthLayerIn 220ms ease both;
}

.site-auth-card,
.site-profile-card {
  position: relative;
  width: min(100%, 430px);
  padding: 24px;
  border: 2px solid var(--site-line);
  border-radius: 14px;
  background:
    repeating-linear-gradient(0deg, rgba(21, 19, 15, 0.032) 0 1px, transparent 1px 7px),
    linear-gradient(180deg, var(--site-paper), var(--site-paper-warm));
  box-shadow:
    7px 7px 0 rgba(21, 19, 15, 0.24),
    0 22px 56px rgba(21, 19, 15, 0.24);
  transform-origin: top center;
}

.auth-layer:not([hidden]) .site-auth-card,
.profile-layer:not([hidden]) .site-profile-card {
  animation: siteAuthCardIn 360ms cubic-bezier(0.075, 0.82, 0.165, 1) both;
}

.site-auth-card h2,
.site-profile-card h2 {
  margin: 8px 0 8px;
  font-size: clamp(1.8rem, 5vw, 2.7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.site-auth-card p,
.site-profile-card p {
  margin: 0;
  color: var(--site-muted);
  font-size: 0.95rem;
  font-weight: 680;
  line-height: 1.45;
}

.site-auth-kicker {
  color: color-mix(in srgb, var(--site-leaf) 72%, var(--site-ink));
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-auth-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1.5px solid var(--site-line);
  border-radius: 10px;
  background: var(--site-paper);
  box-shadow: 2px 2px 0 rgba(21, 19, 15, 0.18);
  cursor: pointer;
}

.site-auth-close:hover,
.site-auth-close:focus-visible {
  outline: none;
  transform: translateY(-1px);
  background: var(--site-paper-warm);
}

.site-close-x {
  position: relative;
  width: 12px;
  height: 12px;
}

.site-close-x::before,
.site-close-x::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  content: "";
}

.site-close-x::before {
  transform: rotate(45deg);
}

.site-close-x::after {
  transform: rotate(-45deg);
}

.site-auth-form {
  display: grid;
  gap: 10px;
  margin: 12px 0 10px;
}

.site-auth-form label {
  display: grid;
  gap: 7px;
  color: var(--site-muted);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-auth-form input {
  min-height: 43px;
  width: 100%;
  border: 1.5px solid var(--site-line);
  border-radius: 10px;
  padding: 0 13px;
  background: #fffefb;
  color: var(--site-ink);
  box-shadow: inset 2px 2px 0 rgba(21, 19, 15, 0.06);
  outline: none;
}

.site-auth-form input:focus-visible {
  border-color: color-mix(in srgb, var(--site-leaf) 58%, var(--site-line));
  box-shadow:
    inset 2px 2px 0 rgba(21, 19, 15, 0.04),
    0 0 0 3px rgba(185, 232, 79, 0.24);
}

.site-auth-primary,
.site-auth-google,
.site-auth-dev,
.site-auth-secondary {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--site-line);
  border-radius: 11px;
  padding: 0 14px;
  color: var(--site-ink);
  font-size: 0.82rem;
  font-weight: 950;
  text-decoration: none;
  box-shadow: 3px 3px 0 rgba(21, 19, 15, 0.2);
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    filter 160ms ease;
}

.site-auth-google {
  width: 100%;
  gap: 10px;
  margin-top: 20px;
  color: #241707;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.76), transparent 30%),
    repeating-linear-gradient(135deg, rgba(21, 19, 15, 0.028) 0 1px, transparent 1px 8px),
    linear-gradient(135deg, var(--site-lemon), var(--site-lime) 54%, var(--site-leaf) 76%, var(--site-mint));
  box-shadow:
    4px 4px 0 rgba(21, 19, 15, 0.24),
    0 13px 24px rgba(185, 232, 79, 0.18),
    inset 0 1px rgba(255, 255, 255, 0.58);
}

.site-auth-primary {
  width: 100%;
  background: linear-gradient(135deg, var(--site-lemon), var(--site-lime) 64%, var(--site-leaf));
}

.site-auth-dev {
  width: auto;
  margin-top: 8px;
  background: var(--site-paper);
}

.site-auth-secondary {
  background: var(--site-paper);
}

.site-auth-primary:hover,
.site-auth-primary:focus-visible,
.site-auth-google:hover,
.site-auth-google:focus-visible,
.site-auth-dev:hover,
.site-auth-dev:focus-visible,
.site-auth-secondary:hover,
.site-auth-secondary:focus-visible {
  outline: none;
  transform: translateY(-1px);
  filter: saturate(1.05);
  box-shadow: 4px 4px 0 rgba(21, 19, 15, 0.24);
}

.site-auth-google.is-loading {
  pointer-events: none;
  filter: saturate(0.8);
}

.site-auth-google.is-loading .site-google-mark {
  animation: siteGooglePulse 620ms ease-in-out infinite;
}

.site-google-mark {
  width: 21px;
  height: 21px;
  display: inline-grid;
  place-items: center;
  border: 1.5px solid var(--site-line);
  border-radius: 50%;
  background: #fff;
  box-shadow: 1.5px 1.5px 0 rgba(21, 19, 15, 0.18);
  transition: transform 160ms ease;
}

.site-google-mark svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.site-google-blue {
  stroke: #4285f4;
}

.site-google-red {
  stroke: #ea4335;
}

.site-google-yellow {
  stroke: #fbbc05;
}

.site-google-green {
  stroke: #34a853;
}

.site-auth-google:hover .site-google-mark,
.site-auth-google:focus-visible .site-google-mark {
  transform: rotate(-6deg) scale(1.04);
}

.site-auth-divider {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  margin: 14px 0 0;
  color: var(--site-muted);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-auth-divider::before,
.site-auth-divider::after {
  height: 1.5px;
  background: rgba(21, 19, 15, 0.18);
  content: "";
}

.site-auth-status {
  min-height: 18px;
  display: block;
  margin-top: 12px;
  color: color-mix(in srgb, var(--site-leaf) 70%, var(--site-ink));
  font-size: 0.78rem;
  font-weight: 850;
}

.site-auth-admin {
  width: max-content;
  max-width: 100%;
  margin: 3px auto 0;
  color: var(--site-muted);
  font-size: 0.56rem;
  font-weight: 850;
  text-align: center;
}

.site-auth-admin[hidden] {
  display: none !important;
}

.site-auth-admin summary {
  cursor: pointer;
  list-style: none;
  opacity: 0.42;
}

.site-auth-admin summary::-webkit-details-marker {
  display: none;
}

.site-auth-admin summary:hover,
.site-auth-admin summary:focus-visible {
  outline: none;
  opacity: 1;
}

.site-auth-admin .site-auth-dev {
  min-height: 22px;
  margin-top: 7px;
  padding: 0 8px;
  border-radius: 7px;
  font-size: 0.56rem;
  box-shadow:
    2px 2px 0 rgba(21, 19, 15, 0.16),
    inset 0 1px rgba(255, 255, 255, 0.5);
}

.site-profile-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding-right: 34px;
}

.profile-avatar {
  width: 56px;
  height: 56px;
  font-size: 1.05rem;
}

.site-profile-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}

@keyframes siteAuthLayerIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes siteGooglePulse {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.08) rotate(-8deg);
  }
}

@keyframes siteAuthCardIn {
  from {
    opacity: 0;
    transform: translateY(-10px) rotate(-0.8deg) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(-0.2deg) scale(1);
  }
}

.site-main {
  min-height: 100vh;
}

.home-main {
  display: block;
  overflow: hidden;
}

.landing-hero {
  position: relative;
  min-height: 74svh;
  display: grid;
  align-items: center;
  padding: 104px clamp(24px, 4vw, 58px) 64px;
  overflow: hidden;
  border-bottom: 2px solid var(--site-line);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.96), rgba(246, 255, 226, 0.98) 70%, rgba(191, 239, 92, 0.32)),
    var(--site-paper);
}

.home-main .landing-hero {
  min-height: clamp(620px, 82svh, 820px);
}

.landing-hero::after,
.intro-section::after,
.creator-section::after,
.workflow-section::after,
.final-cta::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(0deg, rgba(21, 19, 15, 0.025) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(21, 19, 15, 0.018) 0 1px, transparent 1px 9px);
  mix-blend-mode: multiply;
}

.hero-visual {
  position: absolute;
  right: max(-28px, calc((100vw - 1160px) / 2 - 100px));
  bottom: clamp(72px, 9vh, 104px);
  z-index: 0;
  width: min(620px, 46vw);
  pointer-events: none;
}

.home-main .hero-visual {
  position: absolute;
  right: max(112px, calc((100vw - 1160px) / 2 + 44px));
  bottom: clamp(92px, 11vh, 128px);
  width: min(600px, 46vw);
  height: auto;
}

.hero-app-shot {
  position: absolute;
  right: max(24px, calc((100vw - 1160px) / 2 - 32px));
  bottom: 82px;
  z-index: 0;
  width: min(540px, 43vw);
  display: block;
  border: 2px solid var(--site-line);
  border-radius: 8px;
  background: var(--site-paper);
  box-shadow:
    12px 12px 0 rgba(21, 19, 15, 0.2),
    0 28px 70px rgba(21, 19, 15, 0.16);
  transform: rotate(1.4deg);
}

.hero-visual .hero-app-shot {
  position: relative;
  right: auto;
  bottom: auto;
  width: 100%;
  transform: none;
}

.hero-app-frame {
  position: relative;
  width: 100%;
  transform: rotate(1.1deg);
  transform-origin: 50% 52%;
}

.home-main .hero-app-frame {
  position: relative;
  top: auto;
  right: auto;
  width: 100%;
  transform: rotate(1.1deg);
}

.hero-phone-preview {
  position: absolute;
  left: 74.55%;
  top: 24.15%;
  width: 22.55%;
  height: 70.35%;
  overflow: hidden;
  border: 1.5px solid rgba(21, 19, 15, 0.48);
  border-radius: 10% / 6%;
  background:
    repeating-linear-gradient(0deg, rgba(255, 253, 248, 0.12) 0 1px, transparent 1px 6px),
    linear-gradient(180deg, rgba(255, 253, 248, 0.78), rgba(238, 255, 197, 0.68));
  box-shadow:
    inset 0 0 0 1px rgba(255, 253, 248, 0.48),
    3px 4px 0 rgba(21, 19, 15, 0.12);
}

.hero-phone-main {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(1.05) contrast(0.96);
}

.hero-lemonade-sticker {
  position: absolute;
  top: -94px;
  right: -42px;
  z-index: 2;
  width: min(236px, 36%);
  aspect-ratio: 1024 / 1536;
  filter:
    drop-shadow(6px 7px 0 rgba(21, 19, 15, 0.2))
    drop-shadow(0 18px 32px rgba(21, 19, 15, 0.16));
  transform: rotate(8deg);
  transform-origin: 48% 84%;
}

.home-main .hero-lemonade-sticker {
  position: absolute;
  top: -100px;
  left: auto;
  right: -80px;
  width: min(250px, 40%);
  transform: rotate(8deg);
}

.hero-lemonade-art {
  width: 100%;
  height: auto;
  display: block;
}

.hero-lemonade-labels {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}

.hero-lemonade-labels text {
  fill: rgba(24, 18, 12, 0.82);
  stroke: rgba(255, 253, 248, 0.5);
  stroke-width: 3.2px;
  paint-order: stroke fill;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 37px;
  font-weight: 920;
  letter-spacing: 0;
  text-anchor: middle;
  text-transform: uppercase;
  dominant-baseline: central;
  filter: drop-shadow(1.5px 1.5px 0 rgba(21, 19, 15, 0.1));
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(470px, 46vw);
  margin-left: max(16px, calc((100vw - 1160px) / 2 - 64px));
}

.home-main .hero-copy {
  width: min(520px, 42vw);
  transform: translateX(clamp(-72px, -5vw, -42px));
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--site-muted);
  font-size: 12px;
  font-weight: 840;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: 5.9rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.9;
}

.landing-hero h1 {
  max-width: 100%;
  background: transparent;
  box-shadow: none;
  color: var(--site-ink);
  font-family: "Snell Roundhand", "Apple Chancery", "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(4.6rem, 8.9vw, 7.6rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.78;
  text-shadow: none;
  transform: translateX(-8px) rotate(-1deg);
  -webkit-text-stroke: 0;
  filter: none;
  overflow-wrap: normal;
  word-break: keep-all;
}

.home-main .landing-hero h1 {
  font-size: clamp(4.6rem, 8.9vw, 7.6rem);
}

h2 {
  margin: 0;
  font-size: 3.25rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.98;
}

h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 880;
  letter-spacing: 0;
  line-height: 1.12;
}

.lead {
  max-width: 540px;
  margin: 28px 0 0;
  color: color-mix(in srgb, var(--site-ink) 68%, var(--site-muted));
  font-size: 1.24rem;
  font-weight: 640;
  line-height: 1.28;
}

.home-main .hero-claim {
  max-width: min(540px, 100%);
  padding: 14px 18px 16px;
  border: 1.5px solid var(--site-line);
  border-radius: 8px;
  background:
    repeating-linear-gradient(0deg, rgba(21, 19, 15, 0.03) 0 1px, transparent 1px 6px),
    linear-gradient(135deg, rgba(255, 253, 248, 0.98), rgba(255, 245, 174, 0.94) 58%, rgba(218, 248, 93, 0.7));
  color: var(--site-ink);
  font-size: 1.46rem;
  font-weight: 760;
  line-height: 1.15;
  box-shadow:
    5px 5px 0 rgba(21, 19, 15, 0.16),
    inset 0 1px rgba(255, 255, 255, 0.78);
}

.site-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.site-button {
  min-height: 40px;
  display: inline-grid;
  place-items: center;
  padding: 0 18px;
  border: 1.5px solid var(--site-line);
  border-radius: 8px;
  background: var(--site-paper);
  color: var(--site-ink);
  font-size: 13px;
  font-weight: 840;
  letter-spacing: 0;
  text-decoration: none;
  box-shadow: 4px 4px 0 rgba(21, 19, 15, 0.18);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.site-button:hover,
.site-button:focus-visible {
  outline: none;
  background: #fff9ee;
  transform: translateY(-2px);
  box-shadow: 5px 6px 0 rgba(21, 19, 15, 0.2);
}

.site-button.primary {
  background: linear-gradient(135deg, var(--site-lemon), var(--site-lime) 62%, var(--site-leaf));
}

.site-button.social-hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px 0 11px;
  background:
    radial-gradient(circle at 26% 18%, rgba(255, 255, 255, 0.92), transparent 30%),
    repeating-linear-gradient(135deg, rgba(21, 19, 15, 0.026) 0 1px, transparent 1px 8px),
    linear-gradient(135deg, #fff56d 0%, #e8ff68 44%, #c8ff5d 67%, #75dc6d 100%);
  box-shadow:
    4px 4px 0 rgba(21, 19, 15, 0.2),
    0 12px 24px rgba(185, 232, 79, 0.16),
    inset 0 1px rgba(255, 255, 255, 0.66);
}

.site-button.social-hero-button:hover,
.site-button.social-hero-button:focus-visible {
  background:
    radial-gradient(circle at 26% 18%, rgba(255, 255, 255, 0.94), transparent 30%),
    repeating-linear-gradient(135deg, rgba(21, 19, 15, 0.026) 0 1px, transparent 1px 8px),
    linear-gradient(135deg, #fff879 0%, #edff70 38%, #d6ff64 64%, #80e073 100%);
}

.site-button.social-hero-button .social-icon {
  width: 21px;
  height: 21px;
}

.citrus-doodle {
  --citrus-size: 64px;
  --citrus-rotate: -8deg;
  position: absolute;
  z-index: 2;
  width: var(--citrus-size);
  aspect-ratio: 580 / 683;
  pointer-events: none;
  background: url("/assets/harmonade-lime-sticker.png") center / contain no-repeat;
  filter:
    drop-shadow(2px 0 0 #fffdf8)
    drop-shadow(-2px 0 0 #fffdf8)
    drop-shadow(0 2px 0 #fffdf8)
    drop-shadow(0 -2px 0 #fffdf8)
    drop-shadow(6px 7px 0 rgba(21, 19, 15, 0.22));
  transform: rotate(var(--citrus-rotate));
}

.citrus-doodle::before,
.citrus-doodle::after,
.citrus-doodle > span,
.citrus-doodle > span::before,
.citrus-doodle > span::after {
  position: absolute;
  display: none;
  content: "";
}

.citrus-doodle::before {
  inset: 7% 5% 2% 11%;
  border: 2px solid var(--site-line);
  border-radius: 58% 42% 56% 44% / 48% 55% 45% 52%;
  background:
    radial-gradient(circle at 31% 24%, rgba(255, 255, 255, 0.92) 0 12%, transparent 13%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.26) 0 2px, transparent 2px 8px),
    linear-gradient(135deg, #f3ff83 0%, #d6f75e 45%, #93df58 100%);
  box-shadow:
    -7px 7px 0 rgba(222, 255, 117, 0.78),
    -14px 14px 0 rgba(126, 216, 104, 0.52),
    2px 2px 0 rgba(21, 19, 15, 0.28),
    inset -8px -10px 0 rgba(48, 141, 61, 0.12),
    inset 3px 4px 0 rgba(255, 255, 255, 0.28);
}

.citrus-doodle > span {
  inset: 20%;
  overflow: hidden;
  border: 1.5px solid rgba(21, 19, 15, 0.54);
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 28%, rgba(255, 255, 255, 0.9) 0 8%, transparent 9%),
    radial-gradient(circle, #fffdf0 0 9%, transparent 10%),
    conic-gradient(from -18deg,
      #fff6ad 0deg 24deg,
      #dff76b 24deg 32deg,
      #f7ffc4 32deg 58deg,
      #bce958 58deg 67deg,
      #fbffc9 67deg 91deg,
      #d4f45f 91deg 101deg,
      #fff7b5 101deg 129deg,
      #bde95a 129deg 138deg,
      #f6ffc6 138deg 166deg,
      #dff76b 166deg 176deg,
      #fff6ad 176deg 204deg,
      #bce958 204deg 214deg,
      #fbffc9 214deg 242deg,
      #d4f45f 242deg 252deg,
      #f7ffc4 252deg 279deg,
      #bde95a 279deg 288deg,
      #fff8ba 288deg 318deg,
      #d8f462 318deg 329deg,
      #fbffc9 329deg 360deg);
  box-shadow:
    0 0 0 5px rgba(255, 253, 248, 0.64),
    -6px 6px 0 rgba(231, 255, 127, 0.52),
    -12px 12px 0 rgba(112, 201, 120, 0.25),
    inset -3px -4px 0 rgba(74, 164, 60, 0.1);
}

.citrus-doodle > span::before {
  inset: 2%;
  border-radius: 50%;
  background:
    repeating-conic-gradient(from -18deg,
      rgba(21, 19, 15, 0.36) 0deg 1.35deg,
      transparent 1.35deg 30deg);
  opacity: 0.62;
  -webkit-mask: radial-gradient(circle, transparent 0 12%, #000 13% 70%, transparent 71%);
  mask: radial-gradient(circle, transparent 0 12%, #000 13% 70%, transparent 71%);
}

.citrus-doodle > span::after {
  inset: 36%;
  border: 1px solid rgba(21, 19, 15, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.78) 0 20%, transparent 21%),
    linear-gradient(135deg, #fffbe2, #dff76b);
  box-shadow:
    0 0 0 4px rgba(255, 253, 248, 0.32),
    1px 1px 0 rgba(21, 19, 15, 0.18);
}

.citrus-doodle::after {
  top: 2%;
  right: -7%;
  width: 31%;
  height: 18%;
  border: 1.5px solid var(--site-line);
  border-radius: 70% 10% 70% 10%;
  background: linear-gradient(135deg, #c8f75d, #58c870);
  box-shadow: inset 1px 1px 0 rgba(255, 255, 255, 0.48);
  transform: rotate(19deg);
}

.citrus-doodle.is-lemon {
  --citrus-rotate: 10deg;
}

.citrus-doodle.is-lemon::before {
  border-radius: 62% 38% 58% 42% / 48% 54% 46% 52%;
  background:
    radial-gradient(circle at 29% 24%, rgba(255, 255, 255, 0.9) 0 12%, transparent 13%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0 2px, transparent 2px 8px),
    linear-gradient(135deg, #fbff92 0%, #dff86c 52%, #a8df56 100%);
}

.citrus-doodle.is-lemon > span {
  inset: 21%;
  background:
    radial-gradient(circle at 38% 28%, rgba(255, 255, 255, 0.88) 0 8%, transparent 9%),
    radial-gradient(circle, #fffdf0 0 9%, transparent 10%),
    conic-gradient(from -18deg,
      #fff8b8 0deg 25deg,
      #dbf668 25deg 33deg,
      #f8ffc7 33deg 60deg,
      #bfe95a 60deg 70deg,
      #fbffc9 70deg 96deg,
      #d2f35d 96deg 106deg,
      #fff5ab 106deg 134deg,
      #c8ee5d 134deg 144deg,
      #f6ffc8 144deg 174deg,
      #dff76b 174deg 184deg,
      #fff8b8 184deg 214deg,
      #bde95a 214deg 224deg,
      #fbffc9 224deg 254deg,
      #d4f45f 254deg 265deg,
      #f7ffc4 265deg 294deg,
      #bfe95a 294deg 304deg,
      #fff6b2 304deg 334deg,
      #d8f462 334deg 345deg,
      #fbffc9 345deg 360deg);
}

.citrus-doodle.is-harmony-lemon {
  --citrus-size: clamp(108px, 10vw, 158px);
  --citrus-rotate: 9deg;
}

.citrus-doodle.is-harmony-lemon::before {
  box-shadow:
    -8px 8px 0 rgba(236, 255, 134, 0.84),
    -16px 16px 0 rgba(185, 237, 99, 0.72),
    -24px 24px 0 rgba(89, 200, 111, 0.48),
    2px 2px 0 rgba(21, 19, 15, 0.3),
    inset -9px -10px 0 rgba(48, 141, 61, 0.12),
    inset 3px 4px 0 rgba(255, 255, 255, 0.3);
}

.citrus-doodle.is-harmony-lemon > span {
  inset: 24%;
  box-shadow:
    0 0 0 7px rgba(255, 253, 248, 0.66),
    -7px 7px 0 rgba(231, 255, 127, 0.58),
    -14px 14px 0 rgba(112, 201, 120, 0.32);
}

.citrus-hero-harmony {
  top: clamp(72px, 11vh, 118px);
  right: clamp(10px, 5vw, 88px);
  opacity: 0.96;
}

.citrus-doodle.citrus-unlimited-title {
  --citrus-size: clamp(62px, 5.7vw, 88px);
  --citrus-rotate: -7deg;
  position: relative;
  z-index: 1;
  aspect-ratio: 592 / 515;
  background-image: url("/assets/harmonade-lime-slice-sticker.png");
  filter:
    drop-shadow(2px 0 0 #fffdf8)
    drop-shadow(-2px 0 0 #fffdf8)
    drop-shadow(0 2px 0 #fffdf8)
    drop-shadow(0 -2px 0 #fffdf8)
    drop-shadow(5px 6px 0 rgba(21, 19, 15, 0.2));
  flex: 0 0 var(--citrus-size);
  margin-left: 8px;
}

.hero-notes {
  position: relative;
  z-index: 2;
  width: min(520px, 100%);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 9px;
  max-width: 520px;
  margin-left: max(0px, calc((100vw - 1160px) / 2 - 28px));
  margin-top: 22px;
}

.hero-notes > span,
.hero-notes a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 12px 0 8px;
  border: 1.5px solid var(--site-line);
  border-radius: 8px;
  background: var(--site-paper);
  color: var(--site-ink);
  font-size: 12px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 3px 3px 0 rgba(21, 19, 15, 0.16);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.hero-notes > span {
  padding-left: 12px;
}

.hero-notes a:hover,
.hero-notes a:focus-visible {
  outline: none;
  background: #fff9ee;
  transform: translateY(-1px);
  box-shadow: 4px 5px 0 rgba(21, 19, 15, 0.18);
}

.studio-social-links {
  max-width: 360px;
}

html[dir="rtl"] .site-header,
html[dir="rtl"] .landing-hero,
html[dir="rtl"] .landing-section,
html[dir="rtl"] .about-hero,
html[dir="rtl"] .final-cta {
  direction: ltr;
}

html[dir="rtl"] .hero-copy,
html[dir="rtl"] .hero-notes,
html[dir="rtl"] .section-copy,
html[dir="rtl"] .workflow-step,
html[dir="rtl"] .paper-card,
html[dir="rtl"] .maker-card,
html[dir="rtl"] .proof-card,
html[dir="rtl"] .about-hero-copy,
html[dir="rtl"] .build-copy,
html[dir="rtl"] .cta-inner {
  direction: rtl;
  text-align: right;
}

html[dir="rtl"] .site-brand,
html[dir="rtl"] .site-button,
html[dir="rtl"] .hero-app-shot,
html[dir="rtl"] .social-icon,
html[dir="rtl"] .language-control {
  direction: ltr;
}

@media (min-width: 1081px) {
  html[dir="rtl"] .landing-hero .hero-copy {
    width: min(520px, calc(100vw - 760px));
  }

  html[dir="rtl"] .landing-hero h1 {
    font-size: 5.35rem;
  }
}

.social-icon {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1.5px solid var(--site-line);
  border-radius: 50%;
  background:
    repeating-linear-gradient(0deg, rgba(21, 19, 15, 0.035) 0 1px, transparent 1px 5px),
    var(--site-paper);
  color: var(--site-ink);
  box-shadow: 1.5px 1.5px 0 rgba(21, 19, 15, 0.72);
}

.social-icon.is-instagram {
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.95), transparent 32%),
    linear-gradient(145deg, #fff56d 0%, #f2ff72 42%, #c9ff5f 70%, #78dc6e 100%);
}

.social-icon.is-tiktok {
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.92), transparent 32%),
    linear-gradient(145deg, #fffdf8, #e8fff8 48%, #ecffd8);
}

.social-logo {
  width: 14px;
  height: 14px;
  display: block;
  flex: 0 0 auto;
}

.social-icon.is-instagram .social-logo {
  color: #221611;
}

.social-icon.is-tiktok .social-logo {
  width: 15px;
  height: 15px;
}

.landing-section {
  position: relative;
  scroll-margin-top: 86px;
  padding: 92px 24px;
  border-bottom: 2px solid var(--site-line);
  background: var(--site-bg);
}

#polar-clips {
  scroll-margin-top: 0;
}

.section-inner {
  position: relative;
  z-index: 1;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.section-copy p:not(.eyebrow) {
  max-width: 650px;
  margin: 20px 0 0;
  color: var(--site-muted);
  font-size: 1.05rem;
  font-weight: 560;
  line-height: 1.52;
}

.section-copy.compact {
  max-width: 760px;
}

.intro-section {
  background:
    linear-gradient(180deg, #f3f1eb, #e8e8e8),
    var(--site-bg);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(180px, 0.78fr));
  gap: 18px;
  align-items: stretch;
}

.paper-card,
.workflow-step {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border: 2px solid var(--site-line);
  border-radius: 8px;
  background:
    repeating-linear-gradient(0deg, rgba(21, 19, 15, 0.022) 0 1px, transparent 1px 5px),
    var(--site-paper);
  box-shadow: 7px 7px 0 rgba(21, 19, 15, 0.16);
}

.paper-card p,
.workflow-step p {
  margin: 0;
  color: var(--site-muted);
  font-size: 0.95rem;
  font-weight: 560;
  line-height: 1.42;
}

.paper-card:hover,
.workflow-step:hover {
  transform: translateY(-2px) rotate(-0.4deg);
  box-shadow: 9px 9px 0 rgba(21, 19, 15, 0.18);
}

.card-index,
.workflow-step span {
  width: max-content;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1.5px solid var(--site-line);
  border-radius: 999px;
  background: var(--site-lemon);
  color: var(--site-ink);
  font-size: 0.75rem;
  font-weight: 860;
}

.accent-peach .card-index,
.accent-lime span {
  background: var(--site-lime);
}

.accent-mint .card-index,
.accent-mint span {
  background: var(--site-mint);
}

.accent-lemon span {
  background: var(--site-lemon);
}

.creator-section {
  padding-top: 72px;
  background:
    linear-gradient(180deg, var(--site-paper) 0%, #f4ffe5 100%),
    var(--site-paper);
}

.creator-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(270px, 380px) minmax(280px, 0.72fr);
  gap: 28px;
  align-items: center;
}

.creator-copy {
  align-self: start;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.social-links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 1.5px solid var(--site-line);
  border-radius: 8px;
  background: var(--site-paper);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 3px 3px 0 rgba(21, 19, 15, 0.15);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 4px 5px 0 rgba(21, 19, 15, 0.18);
}

.clip-proof-links {
  width: 100%;
  max-width: 100%;
  margin: 14px 0 0;
}

.social-player-shell {
  position: relative;
  width: min(100%, 360px);
  justify-self: center;
  padding: 10px;
  border: 2px solid var(--site-line);
  border-radius: 8px;
  background: #17120f;
  box-shadow:
    10px 10px 0 rgba(21, 19, 15, 0.2),
    0 28px 50px rgba(21, 19, 15, 0.16);
}

.social-player-frame {
  position: relative;
  touch-action: pan-y;
}

.player-topbar {
  height: 28px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 4px;
}

.player-topbar span {
  width: 9px;
  height: 9px;
  border: 1px solid #000;
  border-radius: 50%;
  background: var(--site-lemon);
}

.player-topbar span:nth-child(2) {
  background: var(--site-peach);
}

.player-topbar span:nth-child(3) {
  background: var(--site-mint);
}

.social-player {
  width: 100%;
  aspect-ratio: 9 / 16;
  display: block;
  border: 1.5px solid #000;
  border-radius: 6px;
  background: #000;
  object-fit: cover;
}

.player-play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 2px solid #000;
  border-radius: 50%;
  background:
    repeating-linear-gradient(0deg, rgba(21, 19, 15, 0.04) 0 1px, transparent 1px 5px),
    linear-gradient(135deg, var(--site-lemon), var(--site-lime) 72%, var(--site-leaf));
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.78);
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.player-play-button:hover,
.player-play-button:focus-visible {
  outline: none;
  transform: translate(-50%, calc(-50% - 2px));
  box-shadow: 6px 7px 0 rgba(0, 0, 0, 0.82);
}

.player-play-button[hidden] {
  display: none;
}

.player-play-button span {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 20px solid #000;
}

.clip-nav-button {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1.5px solid #000;
  border-radius: 50%;
  background:
    repeating-linear-gradient(0deg, rgba(21, 19, 15, 0.04) 0 1px, transparent 1px 5px),
    linear-gradient(135deg, var(--site-paper), var(--site-lemon) 64%, var(--site-lime));
  color: #17120f;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.72);
  transform: translateY(-50%);
  cursor: pointer;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.clip-nav-button:hover,
.clip-nav-button:focus-visible {
  outline: none;
  background:
    repeating-linear-gradient(0deg, rgba(21, 19, 15, 0.04) 0 1px, transparent 1px 5px),
    linear-gradient(135deg, #fffdf8, var(--site-lemon) 52%, var(--site-leaf));
  transform: translateY(calc(-50% - 2px));
  box-shadow: 5px 6px 0 rgba(0, 0, 0, 0.78);
}

.clip-nav-button span {
  width: 12px;
  height: 12px;
  border-top: 2.5px solid currentColor;
  border-right: 2.5px solid currentColor;
}

.clip-nav-button-prev {
  left: 10px;
}

.clip-nav-button-next {
  right: 10px;
}

.clip-nav-button-prev span {
  margin-left: 4px;
  transform: rotate(225deg);
}

.clip-nav-button-next span {
  margin-right: 4px;
  transform: rotate(45deg);
}

.player-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 4px 2px;
  color: var(--site-paper);
}

.player-caption strong {
  min-width: 0;
  font-size: 0.88rem;
  line-height: 1.2;
}

.player-caption a {
  flex: 0 0 auto;
  color: var(--site-lemon);
  font-size: 0.78rem;
  font-weight: 820;
  text-decoration: none;
}

.clip-list {
  display: grid;
  gap: 10px;
  scroll-behavior: smooth;
  touch-action: pan-x pan-y;
}

.clip-button {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(122px, 0.36fr) minmax(0, 1fr);
  gap: 4px 12px;
  align-items: center;
  padding: 12px;
  border: 1.5px solid var(--site-line);
  border-radius: 8px;
  background: var(--site-paper);
  color: var(--site-ink);
  text-align: left;
  box-shadow: 4px 4px 0 rgba(21, 19, 15, 0.14);
  cursor: pointer;
  scroll-margin: 8px;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.clip-button:hover,
.clip-button:focus-visible {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 5px 6px 0 rgba(21, 19, 15, 0.18);
}

.clip-button.is-active {
  background:
    repeating-linear-gradient(0deg, rgba(21, 19, 15, 0.026) 0 1px, transparent 1px 5px),
    linear-gradient(135deg, var(--site-lemon), #f2ffad 52%, #e8ffd2);
}

.clip-source {
  grid-row: span 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 48px;
  min-width: 0;
  padding: 0 8px;
  border: 1.5px solid var(--site-line);
  border-radius: 8px;
  background: var(--site-paper-warm);
  font-size: 0.72rem;
  font-weight: 880;
}

.clip-source.is-instagram {
  background:
    repeating-linear-gradient(0deg, rgba(21, 19, 15, 0.025) 0 1px, transparent 1px 5px),
    linear-gradient(145deg, #fff8df, #ffe8bc 48%, #e8ffd2);
}

.clip-source.is-tiktok {
  background:
    repeating-linear-gradient(0deg, rgba(21, 19, 15, 0.025) 0 1px, transparent 1px 5px),
    linear-gradient(145deg, #fffdf8, #e8fff8 52%, #f0ffd8);
}

.clip-source .social-logo {
  width: 17px;
  height: 17px;
}

.clip-source > span {
  min-width: 0;
  overflow-wrap: normal;
  white-space: nowrap;
}

.clip-button strong {
  min-width: 0;
  font-size: 0.95rem;
  line-height: 1.14;
}

.clip-button span:last-child {
  color: var(--site-muted);
  font-size: 0.78rem;
  font-weight: 760;
}

.workflow-section {
  background: #efeee8;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(170px, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.workflow-step {
  min-height: 260px;
}

.final-cta {
  background:
    linear-gradient(180deg, #f4ffe5, #ffe8b7),
    var(--site-paper-warm);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-inner h2 {
  max-width: 790px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(4, minmax(132px, 0.46fr));
  align-items: start;
  gap: 22px;
  padding: 28px clamp(18px, 4vw, 42px);
  border-top: 2px solid var(--site-line);
  background:
    repeating-linear-gradient(0deg, rgba(21, 19, 15, 0.024) 0 1px, transparent 1px 5px),
    var(--site-paper);
  color: var(--site-muted);
  font-size: 0.84rem;
  font-weight: 760;
}

.site-footer-brand {
  max-width: 360px;
}

.site-footer-brand span,
.site-footer-map h2 {
  display: block;
  margin: 0 0 9px;
  color: var(--site-ink);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-footer-brand p {
  max-width: 34ch;
  margin: 0;
  line-height: 1.55;
}

.site-footer-map {
  display: grid;
  gap: 8px;
}

.site-footer-map h2 {
  font-size: 0.72rem;
}

.site-footer a {
  width: fit-content;
  color: var(--site-muted);
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--site-ink);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.about-main {
  display: block;
  min-height: 100vh;
  overflow: hidden;
}

.about-hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.78fr);
  gap: 48px;
  align-items: center;
  padding: 120px clamp(24px, 5vw, 72px) 82px;
  border-bottom: 2px solid var(--site-line);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 247, 232, 0.98) 74%, rgba(185, 232, 79, 0.22)),
    var(--site-paper);
}

.about-hero::after,
.about-section::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(0deg, rgba(21, 19, 15, 0.024) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(21, 19, 15, 0.016) 0 1px, transparent 1px 9px);
  mix-blend-mode: multiply;
}

.about-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-left: max(0px, calc((100vw - 1160px) / 2 - 28px));
}

.about-hero h1 {
  font-size: 4.15rem;
  line-height: 0.95;
}

.about-hero .lead {
  max-width: 700px;
  font-size: 1.28rem;
}

.about-hero-board {
  position: relative;
  z-index: 1;
  justify-self: end;
  width: min(100%, 520px);
  padding: 10px;
  border: 2px solid var(--site-line);
  border-radius: 8px;
  background: var(--site-paper);
  box-shadow:
    12px 12px 0 rgba(21, 19, 15, 0.18),
    0 26px 60px rgba(21, 19, 15, 0.12);
  transform: rotate(1deg);
}

.about-hero-board img {
  width: 100%;
  display: block;
  border: 1.5px solid var(--site-line);
  border-radius: 6px;
}

.about-build-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.about-build-tags span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1.5px solid var(--site-line);
  border-radius: 8px;
  background: var(--site-paper-warm);
  font-size: 0.75rem;
  font-weight: 840;
  box-shadow: 2px 2px 0 rgba(21, 19, 15, 0.14);
}

.about-section {
  position: relative;
  scroll-margin-top: 86px;
  padding: 92px 24px;
  border-bottom: 2px solid var(--site-line);
  background: var(--site-bg);
}

.maker-section {
  background:
    linear-gradient(180deg, #f3f1eb, #e8e8e8),
    var(--site-bg);
}

.maker-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) repeat(3, minmax(180px, 0.66fr));
  gap: 18px;
  align-items: stretch;
}

.maker-card,
.build-board,
.about-video-card,
.proof-card {
  position: relative;
  z-index: 1;
  border: 2px solid var(--site-line);
  border-radius: 8px;
  background:
    repeating-linear-gradient(0deg, rgba(21, 19, 15, 0.022) 0 1px, transparent 1px 5px),
    var(--site-paper);
  box-shadow: 7px 7px 0 rgba(21, 19, 15, 0.16);
}

.maker-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 20px;
}

.maker-card.is-active {
  background:
    repeating-linear-gradient(0deg, rgba(21, 19, 15, 0.022) 0 1px, transparent 1px 5px),
    linear-gradient(135deg, #fffbe8, #f3ffad 58%, #dcffc4);
}

.maker-card p,
.proof-card p,
.build-readout p {
  margin: 14px 0 0;
  color: var(--site-muted);
  font-size: 0.98rem;
  font-weight: 560;
  line-height: 1.48;
}

.maker-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.maker-links a {
  min-height: 32px;
  display: inline-grid;
  place-items: center;
  padding: 0 11px;
  border: 1.5px solid var(--site-line);
  border-radius: 8px;
  background: var(--site-paper);
  color: var(--site-ink);
  font-size: 0.78rem;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 2px 2px 0 rgba(21, 19, 15, 0.14);
}

.maker-links a:hover,
.maker-links a:focus-visible {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 3px 4px 0 rgba(21, 19, 15, 0.18);
}

.build-section {
  background:
    linear-gradient(180deg, var(--site-paper), #f4ffe5),
    var(--site-paper);
}

.build-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: end;
}

.build-board {
  min-height: 380px;
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  grid-column: 1 / 2;
  gap: 16px;
  padding: 18px;
  background:
    repeating-linear-gradient(0deg, rgba(21, 19, 15, 0.022) 0 1px, transparent 1px 5px),
    #fffdf8;
}

.build-controls {
  display: grid;
  gap: 10px;
}

.build-tab {
  min-height: 54px;
  padding: 0 12px;
  border: 1.5px solid var(--site-line);
  border-radius: 8px;
  background: var(--site-paper-warm);
  color: var(--site-ink);
  font-size: 0.86rem;
  font-weight: 870;
  text-align: left;
  box-shadow: 3px 3px 0 rgba(21, 19, 15, 0.14);
  cursor: pointer;
}

.build-tab:hover,
.build-tab:focus-visible {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 4px 5px 0 rgba(21, 19, 15, 0.18);
}

.build-tab.is-active {
  background: linear-gradient(135deg, var(--site-lemon), var(--site-lime) 68%, #e8ffd2);
}

.build-readout {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 18px;
  border: 1.5px solid var(--site-line);
  border-radius: 8px;
  background: #17120f;
  color: var(--site-paper);
}

.build-readout h3 {
  margin-top: 18px;
}

.build-readout p {
  color: color-mix(in srgb, var(--site-paper) 72%, #b9afa2);
}

.build-meters {
  display: grid;
  gap: 10px;
}

.build-meters span {
  height: 18px;
  padding: 3px;
  border: 1.5px solid #000;
  border-radius: 8px;
  background: var(--site-paper);
}

.build-meters i {
  height: 100%;
  display: block;
  border: 1px solid #000;
  border-radius: 5px;
  background: linear-gradient(90deg, var(--site-lemon), var(--site-lime), var(--site-leaf));
  transition: width 220ms ease;
}

.about-video-card {
  width: min(100%, 360px);
  justify-self: end;
  padding: 10px;
  background: #17120f;
}

.about-video-card video {
  width: 100%;
  display: block;
  aspect-ratio: 9 / 16;
  border: 1.5px solid #000;
  border-radius: 6px;
  background: #000;
  object-fit: cover;
}

.about-video-card div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 4px 2px;
  color: var(--site-paper);
}

.about-video-card a {
  color: var(--site-lemon);
  font-size: 0.78rem;
  font-weight: 820;
  text-decoration: none;
}

.proof-section {
  background: #efeee8;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(180px, 0.72fr));
  gap: 18px;
  align-items: stretch;
}

.proof-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
}

.proof-card span {
  width: max-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1.5px solid var(--site-line);
  border-radius: 999px;
  background: var(--site-lemon);
  font-size: 0.75rem;
  font-weight: 870;
}

.proof-card.accent-peach span {
  background: var(--site-peach);
}

.proof-card.accent-mint span {
  background: var(--site-mint);
}

.pricing-main {
  display: block;
  overflow: hidden;
}

.pricing-hero {
  position: relative;
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(320px, 520px) minmax(320px, 500px);
  justify-content: center;
  align-items: stretch;
  gap: clamp(22px, 5vw, 64px);
  padding: 104px clamp(24px, 5vw, 72px) 34px;
  overflow: hidden;
  border-bottom: 2px solid var(--site-line);
  background:
    radial-gradient(720px 340px at 76% 14%, rgba(185, 232, 79, 0.24), transparent 70%),
    radial-gradient(620px 320px at 16% 88%, rgba(255, 176, 103, 0.22), transparent 68%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 247, 232, 0.98) 70%, rgba(185, 232, 79, 0.24)),
    var(--site-paper);
}

.pricing-hero::after,
.pricing-section::after,
.pricing-unlimited-section::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(0deg, rgba(21, 19, 15, 0.024) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(21, 19, 15, 0.016) 0 1px, transparent 1px 9px);
  mix-blend-mode: multiply;
}

.pricing-hero-copy {
  position: relative;
  z-index: 1;
  width: min(500px, 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 0;
}

.pricing-hero-copy h2 {
  max-width: 500px;
  font-size: clamp(2.45rem, 4.4vw, 4.5rem);
  line-height: 0.92;
}

.pricing-hero-copy .lead {
  max-width: 450px;
  margin-top: 20px;
  font-size: clamp(1.02rem, 1.6vw, 1.22rem);
}

.pricing-meter {
  position: relative;
  z-index: 1;
  min-height: 280px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 12px;
  padding: clamp(24px, 3vw, 34px);
  border: 2px solid var(--site-line);
  border-radius: 16px;
  background:
    radial-gradient(220px 130px at 24% 12%, rgba(255, 255, 255, 0.8), transparent 68%),
    repeating-linear-gradient(0deg, rgba(21, 19, 15, 0.024) 0 1px, transparent 1px 5px),
    linear-gradient(135deg, #d9ff62 0%, #d9f765 44%, #9be76c 72%, #70c978 100%);
  color: #211405;
  box-shadow:
    11px 11px 0 rgba(21, 19, 15, 0.22),
    0 30px 64px rgba(185, 232, 79, 0.18),
    inset 0 1px rgba(255, 255, 255, 0.68);
  transform: rotate(-0.8deg);
}

.pricing-unlimited-card h1 {
  margin: 0;
  color: #211405;
  font-size: clamp(4.8rem, 10vw, 8.2rem);
  font-weight: 950;
  line-height: 0.82;
  letter-spacing: 0;
}

.pricing-unlimited-card p {
  max-width: 390px;
  margin: 0;
  color: #211405;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  font-weight: 850;
  line-height: 1.28;
}

.pricing-meter span,
.pricing-meter small,
.pricing-save-ribbon,
.pricing-chip,
.price-lockup em {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1.5px solid var(--site-line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  color: var(--site-ink);
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 2px 2px 0 rgba(21, 19, 15, 0.16);
}

.pricing-meter strong,
.pricing-save-strip strong {
  font-size: clamp(3.4rem, 7vw, 5.8rem);
  font-weight: 950;
  line-height: 0.86;
  letter-spacing: 0;
}

.pricing-save-strip {
  width: min(100%, 430px);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 12px 14px;
  border: 2px solid var(--site-line);
  border-radius: 999px;
  background:
    repeating-linear-gradient(0deg, rgba(21, 19, 15, 0.024) 0 1px, transparent 1px 5px),
    var(--site-paper);
  box-shadow: 5px 5px 0 rgba(21, 19, 15, 0.18);
}

.pricing-save-strip span,
.pricing-save-strip small {
  color: var(--site-muted);
  font-size: 0.78rem;
  font-weight: 920;
  line-height: 1;
  text-transform: uppercase;
}

.pricing-save-strip strong {
  color: var(--site-ink);
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.pricing-unlimited-section {
  position: relative;
  padding: 48px 24px 64px;
  border-bottom: 2px solid var(--site-line);
  background:
    radial-gradient(720px 300px at 76% 28%, rgba(185, 232, 79, 0.2), transparent 72%),
    linear-gradient(180deg, #e8e8e8, #f5f2e9),
    var(--site-bg);
}

.pricing-unlimited-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 330px);
  align-items: center;
  gap: clamp(18px, 4vw, 44px);
  padding: clamp(22px, 3vw, 34px);
  border: 2px solid var(--site-line);
  border-radius: 18px;
  background:
    radial-gradient(260px 150px at 14% 16%, rgba(255, 255, 255, 0.78), transparent 68%),
    repeating-linear-gradient(0deg, rgba(21, 19, 15, 0.024) 0 1px, transparent 1px 5px),
    linear-gradient(135deg, #d9ff62 0%, #d9f765 43%, #9be76c 72%, #70c978 100%);
  color: #211405;
  box-shadow:
    10px 10px 0 rgba(21, 19, 15, 0.2),
    0 28px 60px rgba(185, 232, 79, 0.16),
    inset 0 1px rgba(255, 255, 255, 0.68);
  transform: rotate(-0.35deg);
}

.pricing-unlimited-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}

.pricing-unlimited-copy > span {
  width: max-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1.5px solid var(--site-line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  color: var(--site-ink);
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1;
  box-shadow: 2px 2px 0 rgba(21, 19, 15, 0.16);
}

.pricing-unlimited-title-row {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 18px);
}

.pricing-unlimited-copy h2 {
  margin: 0;
  color: #211405;
  font-size: clamp(3.35rem, 7.2vw, 6.4rem);
  font-weight: 950;
  line-height: 0.88;
  letter-spacing: 0;
  overflow-wrap: normal;
  white-space: nowrap;
}

.pricing-unlimited-copy p {
  max-width: 360px;
  margin: 0;
  color: #211405;
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  font-weight: 850;
  line-height: 1.28;
}

.pricing-unlimited-card .pricing-save-strip {
  width: 100%;
  grid-template-columns: minmax(0, 1fr);
  justify-self: end;
  gap: 8px;
  margin: 0;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 253, 248, 0.78);
}

.pricing-unlimited-card .pricing-save-strip strong {
  min-width: 0;
  font-size: 1.18rem;
  line-height: 1.1;
}

.pricing-unlimited-card .pricing-save-strip small {
  max-width: none;
  line-height: 1.15;
  text-align: left;
}

.pricing-section {
  position: relative;
  padding: 92px 24px;
  border-bottom: 2px solid var(--site-line);
  background:
    linear-gradient(180deg, #f5f2e9, #e8e8e8),
    var(--site-bg);
}

.pricing-plans-section {
  padding-top: 54px;
  padding-bottom: 46px;
  background:
    radial-gradient(720px 340px at 78% 0%, rgba(185, 232, 79, 0.2), transparent 70%),
    radial-gradient(620px 320px at 12% 16%, rgba(185, 232, 79, 0.22), transparent 66%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), #f5f2e9 72%, #e8e8e8),
    var(--site-bg);
}

.pricing-hero + .pricing-section {
  padding-top: 42px;
}

.pricing-layout {
  display: grid;
  gap: clamp(16px, 2.4vw, 26px);
}

.pricing-plans-copy {
  max-width: min(100%, 920px);
  justify-self: center;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.pricing-plans-copy .eyebrow,
.pricing-plans-copy h1,
.pricing-plans-copy p:not(.eyebrow) {
  grid-column: 1;
}

.pricing-plans-copy h1 {
  max-width: none;
  font-size: clamp(3rem, 5.4vw, 5.2rem);
  line-height: 0.92;
  white-space: nowrap;
}

.pricing-plans-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
}

.pricing-plans-copy p.pricing-checkout-status {
  grid-column: 1;
  min-height: 32px;
  width: fit-content;
  max-width: min(100%, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 4px 0 0;
  padding: 7px 10px;
  border: 1.5px solid color-mix(in srgb, var(--site-line) 84%, transparent);
  border-radius: 10px;
  background:
    repeating-linear-gradient(0deg, rgba(21, 19, 15, 0.024) 0 1px, transparent 1px 5px),
    rgba(255, 253, 248, 0.72);
  color: color-mix(in srgb, var(--site-ink) 72%, var(--site-muted));
  font-size: 0.78rem;
  font-weight: 840;
  line-height: 1.25;
  box-shadow: 3px 3px 0 rgba(21, 19, 15, 0.11);
}

.pricing-plans-copy p.pricing-checkout-status:empty {
  display: none;
}

.pricing-hero + .pricing-section .section-copy.compact {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  align-items: end;
  column-gap: clamp(24px, 5vw, 72px);
}

.pricing-hero + .pricing-section .section-copy.compact .eyebrow,
.pricing-hero + .pricing-section .section-copy.compact h2 {
  grid-column: 1;
}

.pricing-hero + .pricing-section .section-copy.compact p:not(.eyebrow) {
  grid-column: 2;
  max-width: 440px;
  margin: 0 0 8px;
}

.pricing-grid {
  width: min(1040px, 100%);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  justify-self: center;
}

.pricing-card {
  position: relative;
  min-height: 440px;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  align-content: start;
  gap: 16px;
  padding: clamp(18px, 2.4vw, 24px);
  border: 2px solid var(--site-line);
  border-radius: 14px;
  background:
    radial-gradient(360px 180px at 12% 0%, rgba(185, 232, 79, 0.2), transparent 72%),
    repeating-linear-gradient(0deg, rgba(21, 19, 15, 0.024) 0 1px, transparent 1px 5px),
    linear-gradient(180deg, var(--site-paper), var(--site-paper-warm));
  box-shadow:
    6px 6px 0 rgba(21, 19, 15, 0.15),
    0 18px 36px rgba(21, 19, 15, 0.08);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.pricing-card:hover,
.pricing-card:focus-within {
  transform: translateY(-2px) rotate(-0.15deg);
  box-shadow:
    8px 8px 0 rgba(21, 19, 15, 0.17),
    0 22px 42px rgba(21, 19, 15, 0.1);
}

.pricing-card.featured {
  background:
    radial-gradient(420px 190px at 12% 0%, rgba(185, 232, 79, 0.32), transparent 72%),
    radial-gradient(360px 190px at 100% 8%, rgba(185, 232, 79, 0.24), transparent 72%),
    repeating-linear-gradient(0deg, rgba(21, 19, 15, 0.024) 0 1px, transparent 1px 5px),
    linear-gradient(180deg, #fffdf8, #eaffb7);
  box-shadow:
    7px 7px 0 rgba(21, 19, 15, 0.18),
    0 22px 48px rgba(185, 232, 79, 0.14);
}

.pricing-save-ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  background: linear-gradient(135deg, var(--site-lemon), var(--site-lime) 62%, var(--site-leaf));
}

.pricing-card-head {
  display: grid;
  gap: 9px;
  padding-right: 78px;
}

.pricing-card:not(.featured) .pricing-card-head {
  padding-right: 0;
}

.pricing-card-head h3 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1;
}

.pricing-card-head p {
  max-width: 480px;
  margin: 0;
  color: var(--site-muted);
  font-size: 0.92rem;
  font-weight: 620;
  line-height: 1.34;
}

.pricing-chip {
  width: max-content;
  background: var(--site-paper);
}

.pricing-chip.gradient {
  background: linear-gradient(135deg, var(--site-lemon), var(--site-lime) 62%, var(--site-leaf));
}

.price-lockup {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 7px;
  padding-block: 0;
}

.price-lockup strong {
  color: var(--site-ink);
  font-size: clamp(2.75rem, 5.5vw, 4.1rem);
  font-weight: 950;
  line-height: 0.86;
}

.price-lockup span {
  margin-bottom: 5px;
  color: var(--site-muted);
  font-size: 0.92rem;
  font-weight: 850;
}

.price-lockup.yearly {
  grid-template-columns: auto 1fr;
}

.price-lockup.yearly > div,
.price-lockup.yearly small {
  grid-column: 1 / -1;
}

.price-lockup s {
  color: color-mix(in srgb, var(--site-muted) 80%, var(--site-ink));
  font-size: 0.9rem;
  font-weight: 860;
  text-decoration-color: var(--site-leaf);
  text-decoration-thickness: 3px;
}

.price-lockup em {
  margin-left: 6px;
  font-style: normal;
  background: linear-gradient(135deg, var(--site-lemon), var(--site-peach));
}

.price-lockup small {
  color: color-mix(in srgb, var(--site-leaf) 72%, var(--site-ink));
  font-size: 0.82rem;
  font-weight: 900;
}

.pricing-cta {
  width: 100%;
  min-height: 42px;
  border-radius: 999px;
  font-size: 0.86rem;
}

.pricing-cta[aria-busy="true"] {
  pointer-events: none;
  opacity: 0.74;
  transform: translateY(1px);
}

.pricing-features {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-features li {
  position: relative;
  min-height: 32px;
  display: flex;
  align-items: center;
  padding: 7px 10px 7px 32px;
  border: 1.5px solid rgba(21, 19, 15, 0.14);
  border-radius: 9px;
  background: rgba(255, 253, 248, 0.62);
  color: color-mix(in srgb, var(--site-ink) 80%, var(--site-muted));
  font-size: 0.85rem;
  font-weight: 720;
  line-height: 1.25;
}

.pricing-features li::before {
  position: absolute;
  left: 9px;
  top: 50%;
  width: 13px;
  height: 13px;
  content: "";
  border: 1.5px solid var(--site-line);
  border-radius: 50% 52% 48% 54%;
  background: linear-gradient(135deg, var(--site-lemon), var(--site-peach));
  box-shadow: 1.5px 1.5px 0 rgba(21, 19, 15, 0.18);
  transform: translateY(-50%) rotate(-8deg);
}

.pricing-included {
  background: #efeee8;
}

.included-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(180px, 0.72fr));
  gap: 18px;
  align-items: stretch;
}

.included-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border: 2px solid var(--site-line);
  border-radius: 8px;
  background:
    repeating-linear-gradient(0deg, rgba(21, 19, 15, 0.022) 0 1px, transparent 1px 5px),
    var(--site-paper);
  box-shadow: 7px 7px 0 rgba(21, 19, 15, 0.16);
}

.included-card span {
  width: max-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1.5px solid var(--site-line);
  border-radius: 999px;
  background: var(--site-lemon);
  font-size: 0.75rem;
  font-weight: 870;
}

.included-card.accent-peach span {
  background: var(--site-peach);
}

.included-card.accent-mint span {
  background: var(--site-mint);
}

.included-card p {
  margin: 0;
  color: var(--site-muted);
  font-size: 0.95rem;
  font-weight: 560;
  line-height: 1.42;
}

.guide-section {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(255, 246, 227, 0.95)),
    var(--site-paper);
}

.guide-section-inner {
  display: grid;
  gap: 20px;
}

.guide-grid,
.seo-grid,
.seo-proof-grid,
.seo-related-grid,
.seo-faq-list {
  display: grid;
  gap: 16px;
}

.guide-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.guide-card,
.seo-card,
.seo-step-card,
.seo-related-card,
.seo-faq-card,
.seo-showcase,
.seo-story-panel {
  position: relative;
  border: 2px solid var(--site-line);
  border-radius: 12px;
  background:
    repeating-linear-gradient(0deg, rgba(21, 19, 15, 0.022) 0 1px, transparent 1px 5px),
    var(--site-paper);
  box-shadow: 7px 7px 0 rgba(21, 19, 15, 0.14);
}

.guide-card {
  display: grid;
  gap: 10px;
  padding: 20px;
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.guide-card:hover,
.guide-card:focus-visible,
.seo-related-card:hover,
.seo-related-card:focus-visible {
  transform: translateY(-2px) rotate(-0.2deg);
  box-shadow: 9px 9px 0 rgba(21, 19, 15, 0.16);
}

.guide-card span,
.seo-badge,
.seo-card-tag {
  width: max-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1.5px solid var(--site-line);
  border-radius: 999px;
  background: var(--site-lemon);
  color: var(--site-ink);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.guide-card strong,
.seo-related-card strong {
  color: var(--site-ink);
  font-size: 1.18rem;
  line-height: 1.1;
}

.guide-card p,
.seo-card p,
.seo-step-card p,
.seo-related-card p,
.seo-faq-card p,
.seo-story-panel p {
  margin: 0;
  color: var(--site-muted);
  line-height: 1.52;
}

.guide-card.accent-peach span {
  background: var(--site-peach);
}

.guide-card.accent-mint span {
  background: var(--site-mint);
}

.guide-card.accent-yellow span {
  background: color-mix(in srgb, var(--site-lemon) 72%, #fff 28%);
}

.seo-main {
  display: block;
  min-height: 100vh;
  overflow: hidden;
}

.seo-hero,
.seo-section {
  position: relative;
}

.seo-hero::after,
.seo-section::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(0deg, rgba(21, 19, 15, 0.024) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, rgba(21, 19, 15, 0.016) 0 1px, transparent 1px 9px);
  mix-blend-mode: multiply;
}

.seo-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 44px;
  align-items: center;
  padding: 120px clamp(24px, 5vw, 72px) 78px;
  border-bottom: 2px solid var(--site-line);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 247, 232, 0.98) 76%, rgba(220, 255, 122, 0.18)),
    var(--site-paper);
}

.seo-hero.copy-peach {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 240, 231, 0.98) 72%, rgba(255, 197, 168, 0.24)),
    var(--site-paper);
}

.seo-hero.copy-mint {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(240, 252, 246, 0.98) 72%, rgba(166, 230, 205, 0.22)),
    var(--site-paper);
}

.seo-hero.copy-ink {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(242, 243, 247, 0.98) 72%, rgba(195, 207, 235, 0.24)),
    var(--site-paper);
}

.seo-hero-copy,
.seo-hero-visual,
.seo-section > .section-inner {
  position: relative;
  z-index: 1;
}

.seo-hero-copy {
  max-width: 760px;
  margin-left: max(0px, calc((100vw - 1160px) / 2 - 28px));
}

.seo-hero-copy h1 {
  margin-bottom: 18px;
  font-size: clamp(3.35rem, 6.4vw, 5.9rem);
  line-height: 0.95;
  text-wrap: balance;
}

.seo-hero-copy .lead {
  max-width: 28ch;
  margin-bottom: 20px;
}

.seo-note-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.seo-note-row span,
.seo-note-row a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1.5px solid var(--site-line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.9);
  color: var(--site-ink);
  font-size: 0.78rem;
  font-weight: 820;
  text-decoration: none;
  box-shadow: 4px 4px 0 rgba(21, 19, 15, 0.12);
}

.seo-hero-visual {
  width: min(100%, 520px);
  justify-self: end;
}

.seo-showcase {
  display: grid;
  gap: 18px;
  padding: 18px;
  transform: rotate(1deg);
}

.seo-showcase-media {
  overflow: hidden;
  border: 2px solid var(--site-line);
  border-radius: 10px;
  background: #f0ede4;
}

.seo-showcase-media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

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

.seo-mini-card {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1.5px solid rgba(21, 19, 15, 0.15);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.8);
}

.seo-mini-card strong {
  color: var(--site-ink);
  font-size: 0.96rem;
}

.seo-mini-card span {
  color: var(--site-muted);
  font-size: 0.82rem;
  line-height: 1.42;
}

.seo-section {
  padding: 72px 0;
  border-bottom: 2px solid var(--site-line);
  background: #efeee8;
}

.seo-section.alt-paper {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 247, 232, 0.98)),
    var(--site-paper);
}

.seo-section.alt-mint {
  background:
    linear-gradient(180deg, rgba(244, 251, 246, 0.96), rgba(232, 247, 240, 0.98)),
    #eff4ee;
}

.seo-section.alt-peach {
  background:
    linear-gradient(180deg, rgba(255, 249, 245, 0.98), rgba(255, 239, 230, 0.98)),
    #f5f1ea;
}

.seo-layout-two {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: 20px;
  align-items: start;
}

.seo-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.seo-proof-grid,
.seo-related-grid,
.seo-faq-list {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.seo-card,
.seo-step-card,
.seo-related-card,
.seo-faq-card,
.seo-story-panel {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.seo-card h3,
.seo-step-card h3,
.seo-story-panel h3,
.seo-faq-card h3 {
  margin: 0;
  color: var(--site-ink);
  font-size: 1.34rem;
  line-height: 1.08;
}

.seo-step-card ol,
.seo-step-card ul,
.seo-card ul,
.seo-story-panel ul,
.seo-faq-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--site-muted);
}

.seo-card ul li,
.seo-step-card ul li,
.seo-step-card ol li,
.seo-story-panel ul li,
.seo-faq-card ul li {
  line-height: 1.46;
}

.seo-signal-list {
  display: grid;
  gap: 12px;
}

.seo-signal {
  display: grid;
  gap: 7px;
  padding: 15px 16px;
  border: 1.5px solid rgba(21, 19, 15, 0.15);
  border-radius: 10px;
  background: rgba(255, 253, 248, 0.72);
}

.seo-signal strong {
  color: var(--site-ink);
  font-size: 0.98rem;
}

.seo-signal span {
  color: var(--site-muted);
  font-size: 0.86rem;
  line-height: 1.42;
}

.seo-story-panel img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 2px solid var(--site-line);
  border-radius: 10px;
}

.seo-story-panel .seo-chip-row,
.seo-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.seo-chip-row span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1.5px solid rgba(21, 19, 15, 0.15);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.84);
  color: var(--site-ink);
  font-size: 0.74rem;
  font-weight: 820;
}

.seo-related-card {
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.seo-related-card span {
  color: var(--site-muted);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.seo-final-cta {
  background:
    linear-gradient(180deg, rgba(255, 246, 227, 0.98), rgba(255, 253, 248, 0.98)),
    var(--site-paper);
}

.seo-final-cta .cta-inner h2 {
  max-width: 620px;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 5.3rem;
  }

  h2 {
    font-size: 2.65rem;
  }

  .hero-app-shot {
    right: 18px;
    bottom: 88px;
    width: 450px;
  }

  .hero-visual {
    right: -18px;
    bottom: 76px;
    width: min(520px, 48vw);
  }

  .hero-lemonade-sticker {
    top: -82px;
    right: -32px;
    width: min(210px, 38%);
  }

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

  .home-main .hero-app-frame {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    transform: rotate(1.1deg);
  }

  .home-main .hero-visual {
    right: 96px;
    bottom: 92px;
    width: min(480px, 50vw);
  }

  .home-main .hero-lemonade-sticker {
    top: -78px;
    left: auto;
    right: -70px;
    width: min(210px, 39%);
    transform: rotate(8deg);
  }

  .home-main .hero-copy {
    width: min(440px, 42vw);
    transform: none;
  }

  .lead {
    max-width: 520px;
    font-size: 1.2rem;
  }

  .intro-grid,
  .creator-layout,
  .workflow-grid {
    grid-template-columns: 1fr 1fr;
  }

  .creator-copy {
    grid-column: 1 / -1;
  }

  .about-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-hero-copy {
    margin-left: 0;
  }

  .about-hero-board {
    justify-self: start;
    width: min(100%, 620px);
  }

  .maker-layout,
  .proof-grid,
  .included-grid {
    grid-template-columns: 1fr 1fr;
  }

  .maker-copy,
  .proof-grid .section-copy,
  .included-grid .section-copy {
    grid-column: 1 / -1;
  }

  .build-layout {
    grid-template-columns: 1fr;
  }

  .about-video-card {
    justify-self: start;
  }

  .pricing-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .pricing-hero-copy {
    margin-left: 0;
  }

  .pricing-meter {
    width: min(100%, 520px);
    min-height: 250px;
    justify-self: start;
  }

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

  .pricing-plans-copy p:not(.eyebrow) {
    grid-column: 1;
    max-width: 650px;
    margin: 18px 0 0;
  }

  .pricing-unlimited-card {
    grid-template-columns: 1fr;
    transform: none;
  }

  .pricing-unlimited-card .pricing-save-strip {
    justify-self: start;
  }

  .site-footer {
    grid-template-columns: minmax(220px, 1fr) repeat(2, minmax(132px, 1fr));
  }

  .seo-hero {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 112px 18px 58px;
  }

  .seo-hero-copy {
    margin-left: 0;
  }

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

  .seo-layout-two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .home-main .landing-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-main .hero-copy {
    width: min(100%, 560px);
    margin-left: 0;
    transform: none;
  }

  .home-main .hero-visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 452px);
    height: auto;
    justify-self: start;
    margin-left: clamp(20px, 5vw, 42px);
    margin-top: 30px;
  }

  .home-main .hero-app-frame {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    transform: rotate(0.7deg);
  }

  .home-main .hero-visual .hero-app-shot {
    width: 100%;
    margin-top: 0;
    transform: none;
  }

  .home-main .hero-lemonade-sticker {
    position: absolute;
    top: -54px;
    left: auto;
    right: -86px;
    width: min(174px, 38%);
    transform: rotate(7deg);
  }

  .home-main .landing-hero h1 {
    font-size: clamp(4rem, 15vw, 6rem);
    transform: translateX(-4px) rotate(-1deg);
  }
}

@media (max-width: 780px) {
  .landing-hero {
    min-height: auto;
    padding: 104px 18px 44px;
  }

  .home-main .landing-hero {
    min-height: auto;
  }

  .home-main .hero-copy {
    width: min(470px, calc(100vw - 42px));
    transform: translateX(-8px);
  }

  .home-main .hero-claim {
    max-width: min(470px, calc(100vw - 42px));
  }

  .home-main .site-actions {
    width: min(470px, calc(100vw - 42px));
  }

  .citrus-hero-harmony {
    --citrus-size: 92px;
    top: 78px;
    right: 8px;
  }

  .hero-copy {
    margin-left: 0;
  }

  .hero-notes {
    width: min(100%, 440px);
    justify-self: center;
    justify-content: center;
    margin: 18px auto 0;
  }

  h1 {
    font-size: 3.65rem;
  }

  .landing-hero h1 {
    font-size: clamp(3.35rem, 17vw, 4.8rem);
    letter-spacing: -0.05em;
    line-height: 0.78;
    transform: translateX(-2px) rotate(-1deg);
  }

  .home-main .landing-hero h1 {
    font-size: clamp(4.3rem, 14vw, 5.6rem);
  }

  h2 {
    font-size: 2.2rem;
  }

  .lead {
    margin-top: 22px;
    font-size: 1.12rem;
  }

  .landing-hero > .hero-app-shot {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 440px);
    justify-self: center;
    margin-top: 24px;
    transform: rotate(0.7deg);
  }

  .hero-notes {
    margin-top: 18px;
  }

  .site-actions {
    margin-top: 24px;
  }

  .landing-section {
    padding: 64px 18px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 22px 18px;
  }

  .site-footer-brand {
    grid-column: 1 / -1;
  }

  .paper-card,
  .workflow-step,
  .maker-card,
  .proof-card {
    min-height: auto;
  }

  .intro-grid,
  .creator-layout,
  .workflow-grid,
  .maker-layout,
  .proof-grid,
  .included-grid {
    grid-template-columns: 1fr;
  }

  .clip-list {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 2px 4px 12px;
    margin: 0 -4px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .clip-button {
    flex: 0 0 min(86vw, 360px);
    scroll-snap-align: center;
  }

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

  .pricing-hero {
    padding: 100px 18px 36px;
    gap: 28px;
  }

  .pricing-plans-section {
    padding: 54px 18px 42px;
  }

  .pricing-plans-copy h1 {
    font-size: 2.9rem;
  }

  .pricing-plans-copy p:not(.eyebrow) {
    margin-top: 0;
    font-size: 0.95rem;
    line-height: 1.38;
  }

  .pricing-plans-copy p.pricing-checkout-status {
    width: fit-content;
    max-width: min(100%, 520px);
    margin-top: 4px;
  }

  .pricing-unlimited-section {
    padding: 42px 18px 56px;
  }

  .pricing-unlimited-card {
    padding: 22px;
  }

  .pricing-unlimited-copy {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .pricing-unlimited-copy h2 {
    font-size: clamp(2.85rem, 10vw, 3.8rem);
  }

  .citrus-doodle.citrus-unlimited-title {
    --citrus-size: 42px;
  }

  .pricing-unlimited-copy p {
    font-size: 0.94rem;
  }

  .pricing-unlimited-card .pricing-save-strip {
    width: 100%;
    grid-template-columns: minmax(0, 1fr);
  }

  .pricing-section {
    padding: 64px 18px;
  }

  .pricing-hero + .pricing-section {
    padding-top: 48px;
  }

  .pricing-hero + .pricing-section .section-copy.compact {
    display: block;
  }

  .pricing-hero + .pricing-section .section-copy.compact p:not(.eyebrow) {
    max-width: 650px;
    margin: 18px 0 0;
  }

  .pricing-card {
    min-height: 0;
    gap: 12px;
    padding: 14px;
    border-radius: 12px;
  }

  .pricing-card-head {
    gap: 7px;
    padding-right: 0;
  }

  .pricing-card-head h3 {
    font-size: 1.15rem;
    line-height: 1.04;
  }

  .pricing-card-head p {
    font-size: 0.78rem;
    line-height: 1.28;
  }

  .pricing-save-ribbon {
    position: static;
    width: max-content;
    order: -1;
  }

  .pricing-chip,
  .pricing-save-ribbon,
  .price-lockup em {
    min-height: 24px;
    padding: 0 8px;
    font-size: 0.62rem;
  }

  .price-lockup strong {
    font-size: clamp(2.25rem, 10vw, 3rem);
  }

  .price-lockup span {
    margin-bottom: 4px;
    font-size: 0.76rem;
  }

  .price-lockup s,
  .price-lockup small {
    font-size: 0.72rem;
  }

  .price-lockup em {
    margin-left: 0;
    margin-top: 5px;
  }

  .pricing-cta {
    min-height: 36px;
    font-size: 0.76rem;
  }

  .pricing-features {
    gap: 6px;
  }

  .pricing-features li {
    min-height: 28px;
    padding: 6px 7px 6px 26px;
    font-size: 0.72rem;
    line-height: 1.18;
  }

  .pricing-features li::before {
    left: 8px;
    width: 10px;
    height: 10px;
  }

  .pricing-card {
    min-height: auto;
  }

  .about-hero {
    padding: 112px 18px 52px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .about-hero h1 {
    font-size: 3.25rem;
  }

  .about-hero .lead {
    font-size: 1.08rem;
  }

  .about-hero-board {
    width: 100%;
    justify-self: stretch;
    transform: none;
  }

  .about-section {
    padding: 64px 18px;
  }

  .build-board {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .seo-showcase-grid {
    grid-template-columns: 1fr 1fr;
  }

  .build-controls {
    grid-template-columns: 1fr 1fr;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    height: 102px;
  }

  .site-brand {
    left: 10px;
  }

  .account-bar {
    right: 10px;
  }

  .site-menu {
    top: 56px;
    left: 10px;
    right: 10px;
    width: auto;
    justify-content: stretch;
    transform: none;
  }

  .site-menu a {
    flex: 1;
    min-width: 0;
  }

  .landing-hero {
    padding: 112px 18px 42px;
  }

  .landing-hero h1 {
    font-size: 4.7rem;
  }

  .home-main .hero-visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(100%, 430px);
    height: auto;
    justify-self: start;
    margin-left: clamp(10px, 3vw, 24px);
    margin-top: 58px;
  }

  .home-main .hero-app-frame {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    transform: rotate(0.7deg);
  }

  .home-main .hero-lemonade-sticker {
    position: absolute;
    top: -50px;
    left: auto;
    right: -82px;
    width: min(160px, 38%);
    transform: rotate(7deg);
  }

  .home-main .hero-notes {
    display: none;
  }

  .home-main .studio-social-links,
  .home-main .clip-proof-links {
    display: flex;
    width: min(100%, calc(100vw - 36px));
    max-width: 360px;
    justify-content: center;
  }

  .about-hero {
    padding-top: 134px;
  }

  .seo-hero {
    padding-top: 134px;
  }

  .seo-hero-copy h1 {
    font-size: 3.4rem;
  }

  .seo-showcase-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .site-brand {
    max-width: calc(100vw - 164px);
  }

  .citrus-hero-harmony {
    display: none;
  }

  .account-button {
    justify-content: center;
    padding: 0;
  }

  .account-button[data-open-auth] {
    width: 34px;
    min-width: 34px;
    padding: 0;
  }

  .site-profile-actions {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.95rem;
  }

  h2 {
    font-size: 1.82rem;
  }

  .lead {
    font-size: 1.03rem;
  }

  .pricing-grid {
    width: min(100%, 390px);
    grid-template-columns: 1fr;
  }

  .pricing-plans-copy h1 {
    font-size: clamp(2.55rem, 12vw, 3rem);
  }

  .home-main .lead {
    margin-top: 16px;
    font-size: 1.02rem;
  }

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

  .home-main .hero-claim {
    max-width: min(100%, 420px);
  }

  .home-main .site-actions {
    width: 100%;
    margin-top: 18px;
  }

  .site-actions,
  .site-actions .site-button,
  .social-links,
  .social-links a {
    width: 100%;
  }

  .landing-hero > .hero-app-shot,
  .hero-visual,
  .social-player-shell,
  .about-video-card {
    width: min(100%, 312px);
    justify-self: center;
  }

  .clip-nav-button {
    width: 38px;
    height: 38px;
  }

  .clip-nav-button-prev {
    left: 8px;
  }

  .clip-nav-button-next {
    right: 8px;
  }

  .home-main .hero-visual {
    position: relative;
    width: min(100%, 320px);
    height: auto;
    justify-self: start;
    margin-left: 8px;
    margin-top: 50px;
  }

  .home-main .hero-app-frame {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    transform: rotate(-2.6deg) translateY(-2px);
  }

  .home-main .hero-visual .hero-app-shot {
    width: 100%;
    margin-top: 0;
    transform: none;
    box-shadow:
      9px 10px 0 rgba(21, 19, 15, 0.18),
      0 22px 48px rgba(21, 19, 15, 0.14);
  }

  .home-main .hero-lemonade-sticker {
    position: absolute;
    top: -52px;
    left: auto;
    right: -20px;
    width: min(104px, 32%);
    filter:
      drop-shadow(4px 5px 0 rgba(21, 19, 15, 0.17))
      drop-shadow(0 12px 22px rgba(21, 19, 15, 0.13));
    transform: rotate(7deg);
  }

  .hero-lemonade-labels text {
    font-size: 39px;
    letter-spacing: 0;
    stroke-width: 3.4px;
  }

  .home-main h1 {
    margin-top: -2px;
    font-size: 4rem;
  }

  .hero-notes {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 336px);
    margin-top: 18px;
  }

  .hero-notes > span,
  .hero-notes a {
    width: 100%;
    justify-content: center;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .guide-card,
  .seo-card,
  .seo-step-card,
  .seo-related-card,
  .seo-faq-card,
  .seo-showcase,
  .seo-story-panel {
    padding: 16px;
    box-shadow: 4px 4px 0 rgba(21, 19, 15, 0.15);
  }

  .paper-card,
  .workflow-step,
  .maker-card,
  .proof-card,
  .build-board {
    padding: 16px;
    box-shadow: 4px 4px 0 rgba(21, 19, 15, 0.15);
  }

  .clip-button {
    grid-template-columns: 1fr;
  }

  .clip-source {
    grid-row: auto;
    width: max-content;
    min-height: 28px;
    padding: 0 10px;
  }

  .about-hero h1 {
    font-size: 2.7rem;
  }

  .about-build-tags,
  .maker-links {
    width: 100%;
  }

  .about-build-tags span,
  .maker-links a {
    flex: 1;
    justify-content: center;
  }

  .build-controls {
    grid-template-columns: 1fr;
  }

  .build-tab {
    min-height: 46px;
  }
}

@media (max-width: 520px) and (max-height: 700px) {
  .home-main .landing-hero {
    padding-bottom: 24px;
  }

  .home-main .hero-visual {
    width: min(100%, 296px);
    margin-top: 42px;
  }

  .home-main .hero-lemonade-sticker {
    width: min(94px, 32%);
    top: -44px;
    right: -18px;
  }
}

/* Locked modern auth layer: Home/About must match the App auth, not the older paper modal. */
.account-bar .account-button[data-open-auth] {
  min-width: 34px;
  width: 34px;
  padding: 0;
  border: 1.5px solid color-mix(in srgb, var(--site-ink) 84%, transparent) !important;
  border-radius: 10px !important;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.9), transparent 31%),
    repeating-linear-gradient(135deg, rgba(31, 29, 26, 0.03) 0 1px, transparent 1px 8px),
    linear-gradient(135deg, #d9ff62 0%, #d9f765 42%, #9be76c 70%, #70c978 100%) !important;
  color: #211405 !important;
  box-shadow:
    4px 4px 0 rgba(31, 29, 26, 0.24),
    0 13px 28px rgba(185, 232, 79, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.38) inset !important;
  filter: saturate(1.02);
}

.account-bar .account-button[data-open-auth]:hover,
.account-bar .account-button[data-open-auth]:focus-visible {
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.95), transparent 32%),
    repeating-linear-gradient(135deg, rgba(31, 29, 26, 0.034) 0 1px, transparent 1px 8px),
    linear-gradient(135deg, #e4ff7c 0%, #b9ed63 40%, #73d975 70%, #4ac982 100%) !important;
  box-shadow:
    5px 5px 0 rgba(31, 29, 26, 0.27),
    0 0 0 3px rgba(185, 232, 79, 0.13),
    0 16px 34px rgba(86, 207, 126, 0.17),
    0 0 0 1px rgba(255, 255, 255, 0.46) inset !important;
}

.auth-layer,
.profile-layer {
  z-index: 2147483000;
}

.site-auth-card,
.site-profile-card {
  width: min(430px, calc(100vw - 32px));
  border: 1.5px solid color-mix(in srgb, var(--site-ink) 72%, transparent) !important;
  border-radius: 24px !important;
  background:
    radial-gradient(280px 150px at 18% 0%, rgba(213, 255, 125, 0.5), transparent 72%),
    radial-gradient(260px 150px at 100% 0%, rgba(185, 232, 79, 0.24), transparent 70%),
    repeating-linear-gradient(0deg, rgba(31, 29, 26, 0.026) 0 1px, transparent 1px 5px),
    linear-gradient(180deg, #fffdf8, #eaffb7) !important;
  box-shadow:
    7px 7px 0 rgba(31, 29, 26, 0.22),
    0 28px 72px rgba(31, 29, 26, 0.24),
    inset 0 1px rgba(255, 255, 255, 0.72) !important;
  overflow: hidden;
}

.site-auth-google,
.site-auth-primary {
  min-height: 54px;
  border: 1.5px solid color-mix(in srgb, var(--site-ink) 78%, transparent) !important;
  border-radius: 999px !important;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.88), transparent 31%),
    repeating-linear-gradient(135deg, rgba(31, 29, 26, 0.032) 0 1px, transparent 1px 8px),
    linear-gradient(135deg, #d9ff62 0%, #d9f765 42%, #9be76c 70%, #70c978 100%) !important;
  color: #211405 !important;
  box-shadow:
    5px 5px 0 rgba(31, 29, 26, 0.24),
    0 15px 30px rgba(185, 232, 79, 0.2),
    inset 0 1px rgba(255, 255, 255, 0.66) !important;
  filter: saturate(1.02);
}

.site-auth-google:hover,
.site-auth-google:focus-visible,
.site-auth-primary:hover,
.site-auth-primary:focus-visible {
  background:
    radial-gradient(circle at 30% 18%, rgba(255, 255, 255, 0.94), transparent 32%),
    repeating-linear-gradient(135deg, rgba(31, 29, 26, 0.034) 0 1px, transparent 1px 8px),
    linear-gradient(135deg, #e4ff7c 0%, #b9ed63 40%, #73d975 70%, #4ac982 100%) !important;
  box-shadow:
    6px 6px 0 rgba(31, 29, 26, 0.27),
    0 0 0 3px rgba(185, 232, 79, 0.13),
    0 18px 38px rgba(86, 207, 126, 0.17),
    inset 0 1px rgba(255, 255, 255, 0.72) !important;
}

.site-profile-card {
  padding: 22px !important;
  isolation: isolate;
}

.site-profile-card > :not(.site-profile-citrus):not(.site-auth-close) {
  position: relative;
  z-index: 1;
}

.site-profile-card .site-auth-close {
  position: absolute;
  z-index: 5;
}

.site-profile-citrus {
  --citrus-size: 104px;
  top: -38px;
  right: auto;
  left: 50%;
  z-index: 2;
  opacity: 0.96;
  aspect-ratio: 1;
  overflow: hidden;
  border: 1.5px solid color-mix(in srgb, var(--site-ink) 64%, transparent);
  border-radius: 35% 65% 42% 58% / 54% 39% 61% 46%;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.12), rgba(255, 253, 248, 0)),
    url("/assets/harmonade-profile-lime-character.jpg") center / cover no-repeat;
  box-shadow:
    9px 12px 0 rgba(31, 29, 26, 0.19),
    0 18px 34px rgba(31, 29, 26, 0.18),
    inset -10px -14px 0 rgba(31, 29, 26, 0.08),
    inset 0 1px rgba(255, 255, 255, 0.42);
  filter: none;
  transform: translateX(-50%) rotate(-11deg) perspective(520px) rotateY(-12deg) rotateX(5deg);
  transform-origin: 50% 64%;
}

.site-profile-head {
  gap: 13px;
  min-width: 0;
  padding: 15px 48px 15px 15px;
  border: 1.5px solid color-mix(in srgb, var(--site-ink) 44%, transparent);
  border-radius: 20px;
  background:
    radial-gradient(180px 90px at 20% 0%, rgba(224, 255, 112, 0.5), transparent 72%),
    repeating-linear-gradient(0deg, rgba(31, 29, 26, 0.018) 0 1px, transparent 1px 5px),
    color-mix(in srgb, var(--site-paper) 92%, white);
  box-shadow:
    4px 4px 0 rgba(31, 29, 26, 0.14),
    inset 0 1px rgba(255, 255, 255, 0.66);
}

.site-profile-head h2 {
  max-width: 100%;
  margin-bottom: 5px;
  overflow: hidden;
  font-size: clamp(1.45rem, 6vw, 2.15rem);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-profile-head p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-profile-actions {
  grid-template-columns: 1fr;
  margin-top: 14px;
}

.site-profile-actions .site-auth-secondary {
  min-height: 48px;
  border-radius: 999px;
  background:
    repeating-linear-gradient(0deg, rgba(31, 29, 26, 0.02) 0 1px, transparent 1px 5px),
    color-mix(in srgb, #fffdf8 84%, #dfff77);
}

.site-profile-card-large {
  width: min(960px, calc(100vw - 32px)) !important;
  max-height: min(760px, calc(100svh - 32px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  padding: 0 !important;
}

.site-profile-card-large .site-profile-citrus {
  --citrus-size: 122px;
  top: -42px;
  right: auto;
  left: 50%;
}

.site-profile-card-large .site-profile-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 22px 64px 18px 22px;
  border: 0;
  border-bottom: 1.5px solid color-mix(in srgb, var(--site-ink) 42%, transparent);
  border-radius: 0;
  box-shadow: none;
}

.site-profile-identity {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-profile-heading {
  min-width: 0;
}

.site-profile-stats {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(76px, 1fr));
  gap: 8px;
}

.site-profile-stats span,
.site-profile-info-grid span,
.site-profile-toggle,
.site-transaction-card,
.site-empty-transactions {
  min-width: 0;
  border: 1.5px solid color-mix(in srgb, var(--site-ink) 46%, transparent);
  border-radius: 14px;
  background:
    repeating-linear-gradient(0deg, rgba(31, 29, 26, 0.022) 0 1px, transparent 1px 5px),
    color-mix(in srgb, var(--site-paper) 92%, white);
  box-shadow:
    3px 3px 0 rgba(31, 29, 26, 0.14),
    inset 0 1px rgba(255, 255, 255, 0.58);
}

.site-profile-stats span {
  display: grid;
  gap: 3px;
  padding: 9px 10px;
}

.site-profile-stats strong,
.site-profile-info-grid strong,
.site-transaction-card strong {
  overflow: hidden;
  color: var(--site-ink);
  font-size: 0.9rem;
  font-weight: 950;
  line-height: 1.1;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-profile-stats small,
.site-profile-info-grid small,
.site-transaction-card span,
.site-empty-transactions span,
.site-billing-note,
.site-profile-status {
  color: var(--site-muted);
  font-size: 0.72rem;
  font-weight: 820;
  line-height: 1.35;
}

.site-profile-layout {
  min-height: 0;
  display: grid;
  grid-template-columns: 182px minmax(0, 1fr);
}

.site-profile-tabs {
  min-height: 0;
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 18px;
  border-right: 1.5px solid color-mix(in srgb, var(--site-ink) 38%, transparent);
  background:
    radial-gradient(180px 150px at 24% 0%, rgba(217, 247, 95, 0.2), transparent 74%),
    rgba(255, 255, 255, 0.22);
}

.site-profile-tabs button {
  min-height: 34px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  border: 1.5px solid transparent;
  border-radius: 11px;
  padding: 0 12px;
  background: transparent;
  color: var(--site-muted);
  font-size: 0.78rem;
  font-weight: 920;
  text-align: left;
  cursor: pointer;
}

.site-profile-tabs button:hover,
.site-profile-tabs button:focus-visible {
  outline: none;
  color: var(--site-ink);
  background: rgba(255, 253, 248, 0.68);
}

.site-profile-tabs button.active {
  border-color: color-mix(in srgb, var(--site-ink) 52%, transparent);
  background: linear-gradient(135deg, var(--site-lemon), var(--site-lime) 62%, var(--site-leaf));
  color: #241707;
  box-shadow:
    3px 3px 0 rgba(31, 29, 26, 0.16),
    inset 0 1px rgba(255, 255, 255, 0.58);
}

.site-profile-content {
  min-height: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 18px 20px 20px;
  overflow: auto;
  scrollbar-width: thin;
}

.site-profile-panel {
  display: none;
  gap: 14px;
}

.site-profile-panel.active {
  display: grid;
}

.site-profile-section-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.site-profile-section-title h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 950;
  line-height: 1;
}

.site-profile-info-grid,
.site-profile-form,
.site-billing-grid,
.site-transactions-list {
  display: grid;
  gap: 12px;
}

.site-profile-info-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.site-profile-info-grid span {
  display: grid;
  gap: 5px;
  padding: 12px;
}

.site-profile-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: end;
}

.site-profile-field,
.site-profile-toggle {
  min-width: 0;
  display: grid;
  gap: 7px;
  color: var(--site-ink);
  font-size: 0.74rem;
  font-weight: 900;
}

.site-profile-field-wide,
.site-billing-note,
.site-billing-secure-panel,
.site-profile-button-row,
.site-profile-form > .site-auth-primary {
  grid-column: 1 / -1;
}

.site-profile-field input,
.site-profile-field select {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  border: 1.5px solid color-mix(in srgb, var(--site-ink) 58%, transparent);
  border-radius: 11px;
  padding: 0 12px;
  background:
    repeating-linear-gradient(0deg, rgba(31, 29, 26, 0.018) 0 1px, transparent 1px 5px),
    color-mix(in srgb, var(--site-paper) 94%, white);
  color: var(--site-ink);
  box-shadow:
    3px 3px 0 rgba(31, 29, 26, 0.12),
    inset 0 1px rgba(255, 255, 255, 0.48);
  outline: none;
}

.site-profile-field input:focus-visible,
.site-profile-field select:focus-visible {
  border-color: color-mix(in srgb, var(--site-leaf) 64%, var(--site-ink));
  box-shadow:
    3px 3px 0 rgba(31, 29, 26, 0.14),
    0 0 0 3px rgba(185, 232, 79, 0.22),
    inset 0 1px rgba(255, 255, 255, 0.54);
}

.site-profile-toggle {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  padding: 12px;
}

.site-profile-toggle input {
  width: 19px;
  height: 19px;
  accent-color: var(--site-leaf);
}

.site-billing-grid {
  grid-template-columns: minmax(210px, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
}

.site-card-preview {
  min-height: 160px;
  display: grid;
  align-content: space-between;
  padding: 18px;
  border: 1.5px solid var(--site-ink);
  border-radius: 18px;
  background:
    repeating-linear-gradient(135deg, rgba(31, 29, 26, 0.05) 0 1px, transparent 1px 10px),
    linear-gradient(135deg, var(--site-lemon), var(--site-lime) 58%, var(--site-leaf));
  color: #1f1d1a;
  box-shadow:
    5px 5px 0 rgba(31, 29, 26, 0.2),
    inset 0 1px rgba(255, 255, 255, 0.48);
}

.site-card-preview strong {
  font-size: 1rem;
  font-weight: 950;
}

.site-card-preview span {
  font-size: 0.82rem;
  font-weight: 850;
}

.site-billing-secure-panel {
  min-width: 0;
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1.5px solid color-mix(in srgb, var(--site-ink) 46%, transparent);
  border-radius: 14px;
  background:
    repeating-linear-gradient(0deg, rgba(31, 29, 26, 0.022) 0 1px, transparent 1px 5px),
    color-mix(in srgb, var(--site-paper) 92%, white);
  box-shadow:
    3px 3px 0 rgba(31, 29, 26, 0.14),
    inset 0 1px rgba(255, 255, 255, 0.58);
}

.site-billing-secure-panel strong {
  color: var(--site-ink);
  font-size: 0.95rem;
  font-weight: 950;
  line-height: 1.12;
}

.site-billing-secure-panel p {
  margin: 0;
  color: var(--site-muted);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.45;
}

.site-profile-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-profile-button-row .site-auth-primary,
.site-profile-button-row .site-auth-secondary {
  min-height: 42px;
  flex: 1 1 150px;
}

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

.site-transaction-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 13px;
}

.site-transaction-card > div {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.site-transaction-card > div:last-child {
  text-align: right;
}

.site-empty-transactions {
  min-height: 180px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 18px;
  text-align: center;
}

.site-empty-transactions strong {
  font-size: 1.12rem;
  font-weight: 950;
}

@media (max-width: 480px) {
  .home-main h1 {
    font-size: clamp(3.1rem, 16vw, 4rem);
  }

  .site-profile-card {
    padding: 18px !important;
  }

  .site-profile-head {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 18px 14px;
    text-align: center;
  }

  .site-profile-head h2,
  .site-profile-head p {
    white-space: normal;
  }

  .site-profile-citrus {
    --citrus-size: 78px;
    top: -28px;
    right: auto;
    left: 50%;
  }

  .site-profile-card-large .site-profile-citrus {
    --citrus-size: 64px;
    top: 68px;
    right: -16px;
    left: auto;
    transform: rotate(-11deg) perspective(520px) rotateY(-12deg) rotateX(5deg);
  }
}

@media (max-width: 760px) {
  .site-profile-card-large {
    width: min(100%, calc(100vw - 24px)) !important;
    max-height: min(820px, calc(100svh - 24px));
    padding: 0 !important;
  }

  .site-profile-card-large .site-profile-head {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 54px 16px 16px;
    text-align: left;
  }

  .site-profile-stats,
  .site-profile-info-grid,
  .site-profile-form,
  .site-billing-grid {
    grid-template-columns: 1fr;
  }

  .site-profile-layout {
    grid-template-columns: 1fr;
  }

  .site-profile-tabs {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
    overflow-x: auto;
    border-right: 0;
    border-bottom: 1.5px solid color-mix(in srgb, var(--site-ink) 38%, transparent);
    padding: 12px 14px;
  }

  .site-profile-tabs button {
    width: auto;
    min-width: 96px;
    justify-content: center;
    text-align: center;
  }

  .site-profile-content {
    display: block;
    padding: 15px 16px 18px;
  }

  .site-profile-panel.active {
    margin-bottom: 16px;
  }

  .site-profile-button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-profile-actions {
    margin-top: 14px;
  }
}
