:root {
  --ink: #050505;
  --ink-soft: #171717;
  --paper: #f4f2ea;
  --white: #ffffff;
  --muted: #66645f;
  --line: rgba(5, 5, 5, 0.18);
  --yellow: #ffc21c;
  --coral: #ff5d54;
  --sky: #79c8ff;
  --mint: #70e4a3;
  --violet: #9275ff;
  --pink: #ff7fba;
  --font-sans: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body,
button,
select {
  font-family: var(--font-sans);
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select {
  color: inherit;
}

button,
a,
select {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: var(--ink);
  background: var(--yellow);
}

:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 4px;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: 72px;
  padding: 0 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(5, 5, 5, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background-color 220ms ease, border-color 220ms ease;
}

.site-nav.is-scrolled {
  background: rgba(5, 5, 5, 0.92);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.wordmark {
  direction: ltr;
  unicode-bidi: isolate;
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 800;
  white-space: nowrap;
}

.wordmark span {
  color: var(--yellow);
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 26px;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-picker {
  position: relative;
}

.language-picker::after {
  content: "↓";
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.language-picker select {
  width: 170px;
  max-width: 46vw;
  height: 42px;
  padding: 0 25px 0 10px;
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 4px;
  background: rgba(0, 0, 0, 0.34);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  cursor: pointer;
}

.language-picker option {
  color: var(--ink);
  background: var(--white);
}

.nav-download {
  min-height: 42px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--yellow);
  border-radius: 4px;
  color: var(--ink);
  background: var(--yellow);
  font-size: 0.78rem;
  font-weight: 800;
  transition: color 180ms ease, background-color 180ms ease;
}

.nav-download:hover {
  color: var(--yellow);
  background: var(--ink);
}

.hero {
  position: relative;
  height: 88svh;
  min-height: 600px;
  max-height: 980px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  inset: 0 0 0 auto;
  width: 72%;
  object-fit: cover;
  object-position: center 8%;
  filter: saturate(0.94) contrast(1.03);
  transform: scaleX(-1);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.64) 38%, rgba(5, 5, 5, 0.04) 70%),
    linear-gradient(0deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0) 46%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(780px, calc(100% - 56px));
  padding-top: 118px;
  margin-left: 4.5vw;
}

.eyebrow {
  margin: 0 0 22px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--yellow);
  color: var(--yellow);
}

.hero-copy h1 {
  margin: 0;
  direction: ltr;
  unicode-bidi: isolate;
  font-size: 7.1rem;
  line-height: 0.88;
  font-weight: 800;
}

.hero-copy h1 span {
  color: var(--yellow);
}

.hero-statement {
  margin: 22px 0 0;
  font-size: 2rem;
  line-height: 1.1;
  font-weight: 500;
}

.hero-statement strong {
  color: var(--yellow);
  font-weight: 800;
}

.hero-lede {
  max-width: 560px;
  margin: 18px 0 24px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.6;
}

.store-button {
  display: inline-block;
  width: 174px;
  border-radius: 6px;
  transition: transform 180ms var(--ease), opacity 180ms ease;
}

.store-button:hover {
  transform: translateY(-3px);
  opacity: 0.92;
}

.store-button img {
  width: 100%;
  height: auto;
}

.hero-caption {
  position: absolute;
  z-index: 3;
  top: 57%;
  right: 5vw;
  width: 39vw;
  max-width: 650px;
  transform: translateY(-50%);
  text-align: center;
  pointer-events: none;
}

.hero-caption span,
.mood-demo-caption span {
  display: inline;
  padding: 0.06em 0.18em;
  color: var(--white);
  background: var(--ink);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-size: 2.25rem;
  line-height: 1.35;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.8);
}

.hero-caption em,
.mood-demo-caption em {
  color: var(--mood-color, var(--yellow));
  font-style: normal;
}

.hero-caption span.is-long {
  font-size: 1.75rem;
}

.mood-demo-caption span.is-long {
  font-size: 1.3rem;
}

.hero-moods {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 20px;
  left: 28px;
  height: 58px;
  display: grid;
  grid-template-columns: repeat(9, minmax(92px, 1fr));
  overflow-x: auto;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  scrollbar-width: none;
}

.hero-moods::-webkit-scrollbar {
  display: none;
}

.mood-tab {
  min-width: 92px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.66);
  background: transparent;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease;
}

.mood-tab:last-child {
  border-right: 0;
}

.mood-tab:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.mood-tab[aria-selected="true"] {
  color: var(--ink);
  background: var(--mood-color, var(--yellow));
  font-weight: 700;
}

[data-mood="roast"], .mood-roast { --mood-color: var(--coral); }
[data-mood="hype"], .mood-hype { --mood-color: var(--yellow); }
[data-mood="sassy"], .mood-sassy { --mood-color: var(--pink); }
[data-mood="playful"], .mood-playful { --mood-color: var(--sky); }
[data-mood="chaotic"], .mood-chaotic { --mood-color: var(--mint); }
[data-mood="inspire"], .mood-inspire { --mood-color: #ffda67; }
[data-mood="heartfelt"], .mood-heartfelt { --mood-color: #ff8f8f; }
[data-mood="cinematic"], .mood-cinematic { --mood-color: var(--violet); }
[data-mood="natgeo"], .mood-natgeo { --mood-color: #9bdd71; }

.proof-strip {
  min-height: 62px;
  display: flex;
  align-items: stretch;
  overflow-x: auto;
  color: var(--ink);
  background: var(--yellow);
  border-bottom: 1px solid var(--ink);
  scrollbar-width: none;
}

.proof-strip::-webkit-scrollbar {
  display: none;
}

.proof-strip > span {
  min-width: 220px;
  flex: 1 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid rgba(5, 5, 5, 0.32);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.proof-strip strong {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 800;
}

.section-shell {
  width: min(1440px, 100%);
  margin: 0 auto;
  padding: 110px 48px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.55fr) minmax(0, 1.45fr);
  gap: 40px;
  align-items: start;
  margin-bottom: 72px;
}

.section-heading .eyebrow {
  padding-top: 12px;
  color: var(--muted);
}

.section-heading h2 {
  max-width: 920px;
  margin: 0;
  font-size: 4.7rem;
  line-height: 0.98;
  font-weight: 800;
}

.section-heading h2 span,
.section-heading h2 em {
  color: var(--coral);
  font-style: normal;
}

.section-heading > p:last-child {
  grid-column: 2;
  max-width: 680px;
  margin: -16px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.flow-section {
  background: var(--paper);
}

.screen-stage {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
  padding: 64px 44px 40px;
  border: 1px solid var(--ink);
  background: var(--yellow);
}

.phone-shot {
  min-width: 0;
  margin: 0;
}

.phone-shot-two {
  transform: translateY(32px);
}

.phone-frame {
  aspect-ratio: 1320 / 2868;
  width: min(100%, 360px);
  margin: 0 auto;
  padding: 8px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 30px;
  background: var(--ink);
  box-shadow: 12px 12px 0 rgba(5, 5, 5, 0.16);
}

.phone-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
  background: var(--ink);
}

.phone-shot figcaption {
  max-width: 360px;
  margin: 24px auto 0;
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 12px;
  color: var(--ink);
}

.phone-shot figcaption > span {
  grid-row: 1 / 3;
  font-family: var(--font-mono);
  font-size: 0.72rem;
}

.phone-shot figcaption strong {
  font-size: 1.35rem;
}

.phone-shot figcaption small {
  margin-top: 5px;
  font-size: 0.8rem;
  line-height: 1.45;
}

.moods-section {
  color: var(--white);
  background: var(--ink);
}

.section-heading-light .eyebrow,
.section-heading-light > p:last-child {
  color: rgba(255, 255, 255, 0.62);
}

.section-heading-light h2 span {
  color: var(--yellow);
}

.mood-playground {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: 42px;
  align-items: start;
}

.mood-demo {
  position: sticky;
  top: 96px;
  aspect-ratio: 9 / 15;
  max-height: 720px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: #111;
}

.mood-demo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(5, 5, 5, 0.72), transparent 48%);
  pointer-events: none;
}

.mood-demo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mood-demo-caption {
  position: absolute;
  z-index: 2;
  right: 8%;
  bottom: 14%;
  left: 8%;
  text-align: center;
}

.mood-demo-caption span {
  font-size: 1.65rem;
}

.mood-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.mood-list button {
  position: relative;
  min-height: 145px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}

.mood-list button::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: var(--mood-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.mood-list button:hover::before,
.mood-list button[aria-selected="true"]::before {
  transform: scaleX(1);
}

.mood-list button[aria-selected="true"] {
  color: var(--ink);
  background: var(--mood-color);
}

.mood-index {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  opacity: 0.68;
}

.mood-list strong {
  font-size: 1.45rem;
  line-height: 1;
}

.mood-list small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
  line-height: 1.35;
}

.mood-list button[aria-selected="true"] small {
  color: rgba(5, 5, 5, 0.68);
}

.social-section {
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--yellow);
}

.social-heading h2 span {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--coral);
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.1em;
}

.social-heading > p:last-child,
.social-heading .eyebrow {
  color: rgba(5, 5, 5, 0.66);
}

.social-studio {
  --platform-color: var(--pink);
  --platform-ink: var(--ink);
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  border: 1px solid var(--ink);
  background: var(--ink);
  box-shadow: 16px 16px 0 rgba(5, 5, 5, 0.14);
}

.social-studio[data-platform="instagram"] { --platform-color: var(--pink); }
.social-studio[data-platform="tiktok"] { --platform-color: #63e6d7; }
.social-studio[data-platform="youtube"] { --platform-color: var(--coral); }
.social-studio[data-platform="facebook"] { --platform-color: #6d9cff; }
.social-studio[data-platform="x"] { --platform-color: var(--ink); --platform-ink: var(--white); }
.social-studio[data-platform="linkedin"] { --platform-color: var(--sky); }

.social-reel {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  border-right: 1px solid var(--ink);
  background: var(--ink);
}

.social-reel video,
.social-reel-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.social-reel video {
  object-fit: cover;
  object-position: center 10%;
}

.social-reel-shade {
  background: linear-gradient(0deg, rgba(5, 5, 5, 0.88), transparent 48%);
  pointer-events: none;
}

.social-reel-caption {
  position: absolute;
  z-index: 2;
  right: 8%;
  bottom: 16%;
  left: 8%;
  text-align: center;
}

.social-reel-caption > span {
  display: inline;
  padding: 0.06em 0.18em;
  color: var(--white);
  background: var(--ink);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 800;
  text-transform: uppercase;
}

.social-reel-caption > span.is-long {
  font-size: 1.15rem;
}

.social-reel-caption em {
  color: var(--mood-color, var(--yellow));
  font-style: normal;
}

.social-reel-label {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.68);
  font-family: var(--font-mono);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.social-reel-label strong {
  color: var(--white);
}

.social-composer {
  min-width: 0;
  padding: 34px;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background: var(--paper);
}

.social-composer-head {
  padding-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--ink);
}

.social-composer-head > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.social-composer-head span,
.social-composer-head b {
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.social-composer-head strong {
  font-size: 1.4rem;
  line-height: 1.2;
}

.social-composer-head b {
  padding: 8px 10px;
  border: 1px solid var(--ink);
  color: var(--ink);
  background: var(--white);
  white-space: nowrap;
}

.social-tabs {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.social-tabs button {
  position: relative;
  min-width: 0;
  min-height: 52px;
  padding: 8px 10px 8px 16px;
  border: 0;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--white);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  overflow-wrap: anywhere;
  cursor: pointer;
}

.social-tabs button::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: var(--tab-color);
}

.social-tabs button[data-social-platform="instagram"] { --tab-color: var(--pink); }
.social-tabs button[data-social-platform="tiktok"] { --tab-color: #63e6d7; }
.social-tabs button[data-social-platform="youtube"] { --tab-color: var(--coral); }
.social-tabs button[data-social-platform="facebook"] { --tab-color: #6d9cff; }
.social-tabs button[data-social-platform="x"] { --tab-color: var(--ink); }
.social-tabs button[data-social-platform="linkedin"] { --tab-color: var(--sky); }

.social-tabs button:hover {
  background: color-mix(in srgb, var(--tab-color) 20%, var(--white));
}

.social-tabs button[aria-selected="true"] {
  background: var(--tab-color);
}

.social-tabs button[data-social-platform="x"][aria-selected="true"] {
  color: var(--white);
}

.social-post-preview {
  min-height: 340px;
  margin-top: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--white);
}

.social-post-preview header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-platform-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 6px;
  color: var(--platform-ink);
  background: var(--platform-color);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
}

.social-post-preview header > div {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.social-post-preview header strong {
  font-size: 1rem;
}

.social-post-preview header small {
  color: var(--muted);
  font-size: 0.7rem;
}

.social-post-copy {
  min-height: 104px;
  margin: 24px 0 20px;
  font-size: 1.3rem;
  line-height: 1.48;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.social-post-copy.is-long {
  font-size: 1.08rem;
}

.social-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-post-tags span {
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  background: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.66rem;
}

.social-post-actions {
  margin-top: auto;
  padding-top: 24px;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 10px;
}

.social-post-actions button,
.social-post-actions a {
  min-height: 50px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-size: 0.76rem;
  line-height: 1.25;
  font-weight: 800;
  text-align: center;
}

.social-post-actions button {
  background: var(--white);
  cursor: pointer;
}

.social-post-actions button:hover {
  background: var(--yellow);
}

.social-post-actions a {
  color: var(--platform-ink);
  background: var(--platform-color);
}

.copy-icon {
  position: relative;
  width: 14px;
  height: 16px;
  flex: 0 0 14px;
}

.copy-icon::before,
.copy-icon::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 11px;
  border: 1.5px solid currentColor;
  border-radius: 2px;
}

.copy-icon::before {
  top: 0;
  right: 0;
}

.copy-icon::after {
  bottom: 0;
  left: 0;
  background: inherit;
}

.social-proof {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.social-proof span {
  min-height: 45px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}

.toolkit-section {
  background: var(--paper);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.feature {
  position: relative;
  min-height: 430px;
  padding: 34px;
  grid-column: span 6;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  overflow: hidden;
}

.feature-number {
  position: absolute;
  top: 20px;
  right: 22px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.feature-kicker {
  margin: 0 0 90px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.feature h3 {
  max-width: 560px;
  margin: 0 0 16px;
  font-size: 2.35rem;
  line-height: 1.04;
}

.feature > p:not(.feature-kicker) {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.feature-stat {
  margin: 16px 0 62px;
  font-size: 7rem;
  line-height: 0.78;
  font-weight: 800;
}

.feature-stat span {
  color: var(--coral);
  font-size: 0.45em;
}

.feature-ai {
  color: var(--white);
  background: var(--ink);
}

.feature-ai .feature-number,
.feature-ai .feature-kicker,
.feature-ai > p:not(.feature-kicker) {
  color: rgba(255, 255, 255, 0.62);
}

.analysis-line {
  position: absolute;
  right: 34px;
  bottom: 32px;
  left: 34px;
  height: 48px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.analysis-line span {
  flex: 1;
  background: var(--yellow);
  animation: pulse-line 1.8s ease-in-out infinite alternate;
}

.analysis-line span:nth-child(1) { height: 20%; }
.analysis-line span:nth-child(2) { height: 72%; animation-delay: -0.8s; }
.analysis-line span:nth-child(3) { height: 46%; animation-delay: -1.4s; }
.analysis-line span:nth-child(4) { height: 94%; animation-delay: -0.4s; }
.analysis-line span:nth-child(5) { height: 38%; animation-delay: -1s; }
.analysis-line span:nth-child(6) { height: 62%; animation-delay: -1.6s; }

@keyframes pulse-line {
  to { height: 14%; opacity: 0.48; }
}

.feature-language {
  background: var(--sky);
}

.language-ribbon,
.platform-ribbon {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  overflow: hidden;
  border-top: 1px solid var(--ink);
}

.language-ribbon span,
.platform-ribbon span {
  flex: 1 0 auto;
  min-width: 110px;
  padding: 13px 16px;
  border-right: 1px solid var(--ink);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-align: center;
}

.feature-templates {
  background: var(--white);
}

.style-rack {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.style-rack span {
  min-height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.style-outline {
  color: var(--white);
  background: var(--ink);
  font-weight: 800;
  text-shadow: -1px -1px 0 var(--coral), 1px -1px 0 var(--coral), -1px 1px 0 var(--coral), 1px 1px 0 var(--coral);
}

.style-neon {
  color: var(--sky);
  background: var(--ink);
  font-weight: 800;
  text-shadow: 0 0 9px var(--sky);
}

.style-pop {
  color: var(--ink);
  background: var(--yellow);
  font-weight: 800;
}

.style-editorial {
  color: var(--ink);
  background: var(--paper);
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
}

.feature-effects {
  color: var(--white);
  background: var(--coral);
}

.feature-effects > p:not(.feature-kicker),
.feature-effects .feature-number {
  color: rgba(255, 255, 255, 0.76);
}

.effect-rack {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.68);
}

.effect-rack span {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.68);
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.effect-rack span:last-child {
  border-right: 0;
}

.feature-social {
  background: var(--mint);
}

.feature-social .platform-ribbon span:nth-child(2) { background: var(--pink); }
.feature-social .platform-ribbon span:nth-child(3) { background: var(--coral); }
.feature-social .platform-ribbon span:nth-child(5) { color: var(--white); background: var(--ink); }
.feature-social .platform-ribbon span:nth-child(6) { background: var(--sky); }

.feature-export {
  background: var(--violet);
}

.feature-export > p:not(.feature-kicker) {
  color: rgba(5, 5, 5, 0.72);
}

.export-formats {
  position: absolute;
  right: 34px;
  bottom: 34px;
  left: 34px;
  display: flex;
  border: 1px solid var(--ink);
}

.export-formats span {
  flex: 1;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--ink);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
}

.export-formats span:last-child {
  border-right: 0;
}

.feature-privacy {
  grid-column: span 12;
  min-height: 310px;
  color: var(--white);
  background: var(--ink);
}

.feature-privacy .feature-kicker,
.feature-privacy .feature-number,
.feature-privacy > p:not(.feature-kicker) {
  color: rgba(255, 255, 255, 0.62);
}

.feature-privacy a {
  position: absolute;
  right: 34px;
  bottom: 34px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--yellow);
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.pricing-section {
  background: var(--white);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.plan {
  position: relative;
  min-height: 530px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--paper);
}

.plan-index {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
}

.plan h3 {
  margin: 46px 0 8px;
  font-size: 2.45rem;
  line-height: 1;
}

.plan-credit {
  min-height: 46px;
  margin: 0 0 32px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.76rem;
}

.plan ul {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
}

.plan li {
  position: relative;
  padding: 10px 0 10px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
}

.plan li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 800;
}

.plan > a {
  min-height: 48px;
  margin-top: auto;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--ink);
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 800;
  transition: color 180ms ease, background-color 180ms ease;
}

.plan > a:hover {
  color: var(--yellow);
  background: var(--ink);
}

.plan-featured {
  background: var(--yellow);
}

.plan-featured li::before {
  color: var(--ink);
}

.plan-badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 11px;
  color: var(--white);
  background: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.64rem;
  text-transform: uppercase;
}

.credit-note {
  margin-top: 28px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 0.4fr 1fr auto;
  gap: 28px;
  align-items: center;
  border: 1px solid var(--ink);
}

.credit-note strong {
  font-size: 1.1rem;
}

.credit-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.credit-note > span {
  padding: 8px 12px;
  border-radius: 4px;
  color: var(--ink);
  background: var(--sky);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  white-space: nowrap;
}

.closing-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.closing-section::before {
  content: "SASS";
  position: absolute;
  right: -20px;
  bottom: -44px;
  color: rgba(255, 194, 28, 0.1);
  font-size: 15rem;
  line-height: 0.8;
  font-weight: 800;
  pointer-events: none;
}

.closing-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 90px;
  align-items: end;
}

.closing-copy .eyebrow {
  color: var(--yellow);
}

.closing-copy h2 {
  margin: 0;
  font-size: 6rem;
  line-height: 0.9;
}

.closing-copy h2 em {
  color: var(--yellow);
  font-style: normal;
}

.closing-copy > p:not(.eyebrow) {
  max-width: 560px;
  margin: 26px 0 30px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1rem;
  line-height: 1.65;
}

.closing-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.closing-specs div {
  min-height: 118px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.closing-specs span {
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.closing-specs strong {
  color: var(--yellow);
  font-size: 1.25rem;
}

.site-footer {
  color: var(--ink);
  background: var(--yellow);
}

.footer-main {
  padding: 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid var(--ink);
}

.footer-brand p {
  max-width: 390px;
  margin: 18px 0 0;
  font-size: 0.84rem;
}

.footer-main h2 {
  margin: 0 0 16px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
}

.footer-main > div:not(.footer-brand) a {
  display: block;
  width: fit-content;
  margin: 8px 0;
  font-size: 0.84rem;
}

.footer-main a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.footer-bottom {
  min-height: 64px;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[dir="rtl"] .hero-copy {
  margin-right: 4.5vw;
  margin-left: 0;
  text-align: right;
}

[dir="rtl"] .hero-caption {
  right: auto;
  left: 5vw;
}

[dir="rtl"] .mood-list button {
  align-items: flex-end;
  text-align: right;
}

[dir="rtl"] .social-tabs button {
  padding-right: 16px;
  padding-left: 10px;
}

[dir="rtl"] .social-tabs button::before {
  right: 0;
  left: auto;
}

@media (max-width: 1120px) {
  .site-nav {
    grid-template-columns: auto 1fr auto;
    gap: 18px;
  }

  .nav-links {
    gap: 16px;
    font-size: 0.68rem;
  }

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

  .hero-caption span {
    font-size: 1.75rem;
  }

  .section-heading h2 {
    font-size: 3.75rem;
  }

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

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

  .closing-copy h2 {
    font-size: 4.8rem;
  }
}

@media (max-width: 860px) {
  .site-nav {
    padding: 0 18px;
  }

  .nav-links {
    display: none;
  }

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

  .hero {
    height: 88svh;
    min-height: 620px;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.34) 46%, rgba(5, 5, 5, 0.92) 100%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.44), rgba(5, 5, 5, 0.04));
  }

  .hero-media {
    inset: 0;
    width: 100%;
    object-position: center 8%;
  }

  .hero-copy {
    width: calc(100% - 36px);
    margin-left: 18px;
    padding-top: 108px;
  }

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

  .hero-statement {
    font-size: 1.55rem;
  }

  .hero-lede {
    max-width: 500px;
    font-size: 0.94rem;
  }

  .hero-caption {
    top: 68%;
    right: 8%;
    width: 84%;
    max-width: none;
  }

  .hero-caption span {
    font-size: 1.55rem;
  }

  .hero-caption span.is-long {
    font-size: 1.3rem;
  }

  .hero-moods {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .section-shell {
    padding: 86px 24px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 52px;
  }

  .section-heading .eyebrow {
    padding-top: 0;
    margin-bottom: 0;
  }

  .section-heading h2 {
    font-size: 3.3rem;
  }

  .section-heading > p:last-child {
    grid-column: 1;
    margin: 0;
  }

  .screen-stage {
    padding: 42px 24px 28px;
    gap: 18px;
  }

  .phone-shot-two {
    transform: none;
  }

  .phone-frame {
    padding: 5px;
    border-radius: 22px;
    box-shadow: 7px 7px 0 rgba(5, 5, 5, 0.16);
  }

  .phone-frame img {
    border-radius: 16px;
  }

  .phone-shot figcaption {
    grid-template-columns: 26px 1fr;
  }

  .phone-shot figcaption small {
    display: none;
  }

  .mood-playground {
    grid-template-columns: 1fr;
  }

  .mood-demo {
    position: relative;
    top: auto;
    width: min(100%, 440px);
    max-height: none;
    margin: 0 auto;
  }

  .social-studio {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .social-reel {
    aspect-ratio: 9 / 14;
    width: min(100%, 440px);
    min-height: 0;
    margin: 0 auto;
    border-right: 1px solid var(--ink);
    border-left: 1px solid var(--ink);
  }

  .social-composer {
    border-top: 1px solid var(--ink);
  }

  .feature {
    grid-column: span 12;
  }

  .closing-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .footer-main {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 42px 24px;
  }

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

  .footer-bottom {
    padding: 0 24px;
  }
}

@media (max-width: 600px) {
  .site-nav {
    height: 64px;
  }

  .wordmark {
    font-size: 1.08rem;
  }

  .language-picker select {
    width: 150px;
    max-width: 47vw;
    height: 38px;
  }

  .nav-download {
    display: none;
  }

  .hero {
    height: 88svh;
    min-height: 590px;
  }

  .hero-media {
    object-position: center center;
  }

  .hero-copy {
    padding-top: 88px;
  }

  .hero-eyebrow {
    margin-bottom: 16px;
    font-size: 0.62rem;
  }

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

  .hero-statement {
    margin-top: 14px;
    font-size: 1.25rem;
  }

  .hero-lede {
    max-width: 92%;
    margin: 12px 0 16px;
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .store-button {
    width: 146px;
  }

  .hero-caption {
    top: 72%;
    right: 5%;
    width: 90%;
  }

  .hero-caption span {
    font-size: 1.18rem;
    line-height: 1.45;
  }

  .hero-caption span.is-long {
    font-size: 1rem;
  }

  .hero-moods {
    height: 50px;
    grid-template-columns: repeat(9, 88px);
  }

  .mood-tab {
    min-width: 88px;
    font-size: 0.66rem;
  }

  .proof-strip {
    min-height: 56px;
  }

  .proof-strip > span {
    min-width: 190px;
  }

  .section-shell {
    padding: 72px 18px;
  }

  .section-heading h2 {
    font-size: 2.45rem;
  }

  .section-heading > p:last-child {
    font-size: 0.95rem;
  }

  .screen-stage {
    margin-right: -18px;
    margin-left: -18px;
    padding: 34px 18px 28px;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .screen-stage::-webkit-scrollbar {
    display: none;
  }

  .phone-shot {
    min-width: 76vw;
    scroll-snap-align: center;
  }

  .phone-shot figcaption small {
    display: block;
  }

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

  .mood-list button {
    min-height: 96px;
  }

  .mood-demo-caption span {
    font-size: 1.28rem;
  }

  .mood-demo-caption span.is-long {
    font-size: 1.06rem;
  }

  .social-studio {
    margin-right: -18px;
    margin-left: -18px;
    box-shadow: none;
  }

  .social-reel {
    width: min(100%, 390px);
  }

  .social-reel-caption > span {
    font-size: 1.2rem;
  }

  .social-reel-caption > span.is-long {
    font-size: 0.96rem;
  }

  .social-composer {
    padding: 22px 18px;
  }

  .social-tabs {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .social-tabs::-webkit-scrollbar {
    display: none;
  }

  .social-tabs button {
    min-width: 112px;
    scroll-snap-align: start;
  }

  .social-post-preview {
    min-height: 390px;
    padding: 22px;
  }

  .social-post-copy {
    font-size: 1.08rem;
  }

  .social-post-copy.is-long {
    font-size: 0.95rem;
  }

  .social-post-actions {
    grid-template-columns: 1fr;
  }

  .social-proof {
    grid-template-columns: 1fr;
  }

  .feature {
    min-height: 400px;
    padding: 26px;
  }

  .feature h3 {
    font-size: 1.9rem;
  }

  .feature-stat {
    font-size: 5rem;
  }

  .feature-kicker {
    margin-bottom: 64px;
  }

  .style-rack,
  .effect-rack,
  .export-formats,
  .analysis-line {
    right: 26px;
    bottom: 26px;
    left: 26px;
  }

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

  .effect-rack span:nth-child(2) {
    border-right: 0;
  }

  .effect-rack span:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.68);
  }

  .feature-privacy {
    min-height: 340px;
  }

  .feature-privacy a {
    right: 26px;
    bottom: 26px;
  }

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

  .plan {
    min-height: 490px;
  }

  .credit-note {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .credit-note > span {
    width: fit-content;
  }

  .closing-section::before {
    font-size: 7rem;
  }

  .closing-copy h2 {
    font-size: 3.45rem;
  }

  .closing-specs {
    grid-template-columns: 1fr;
  }

  .closing-specs div {
    min-height: 92px;
  }

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

  .footer-main > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    min-height: 86px;
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
