:root {
  color-scheme: light;
  --ink: #151314;
  --muted: #5f5a5a;
  --soft: #f7f5f2;
  --paper: #fffdf8;
  --line: rgba(21, 19, 20, 0.12);
  --red: #e02222;
  --red-dark: #a51515;
  --teal: #1b9a8d;
  --amber: #e3a523;
  --green: #54a358;
  --violet: #5f4fd1;
  --shadow: 0 24px 70px rgba(20, 14, 10, 0.18);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
}

body::selection {
  color: white;
  background: var(--red);
}

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 68px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 253, 248, 0.88);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(20, 14, 10, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand img {
  display: block;
  border-radius: 8px;
  box-shadow: 0 10px 22px rgba(224, 34, 34, 0.22);
}

.main-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: var(--muted);
  font-size: 0.94rem;
}

.main-nav {
  margin-left: auto;
}

.main-nav a,
.site-footer a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}

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

.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 38px;
  padding: 0 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 850;
  cursor: pointer;
}

.lang-toggle:hover {
  border-color: rgba(224, 34, 34, 0.35);
  box-shadow: 0 10px 22px rgba(20, 14, 10, 0.08);
}

.hero {
  position: relative;
  min-height: 86svh;
  overflow: clip;
  display: grid;
  align-items: center;
  padding: clamp(64px, 8vw, 110px) clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(to bottom, rgba(255, 253, 248, 0), var(--paper));
  z-index: -1;
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 72% 18%, rgba(224, 34, 34, 0.18), transparent 24%),
    radial-gradient(circle at 52% 74%, rgba(27, 154, 141, 0.16), transparent 28%),
    linear-gradient(125deg, #fffdf8 0%, #f8f1e8 44%, #eef7f4 100%);
}

.youtube-shell {
  position: absolute;
  right: clamp(-190px, -5vw, -42px);
  top: clamp(62px, 10vw, 118px);
  width: min(820px, 62vw);
  min-width: 560px;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(21, 19, 20, 0.14);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(-2deg);
}

.shell-topbar {
  display: grid;
  grid-template-columns: 28px 1fr 30px;
  align-items: center;
  gap: 16px;
  height: 64px;
  padding: 0 22px;
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid var(--line);
}

.logo-dot,
.avatar-dot,
.query-icon,
.result-mark,
.feature-icon {
  display: inline-block;
  border-radius: 999px;
}

.logo-dot {
  width: 26px;
  height: 18px;
  background: var(--red);
  border-radius: 6px;
  box-shadow: inset 9px 0 0 rgba(255, 255, 255, 0.35);
}

.avatar-dot {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--teal), var(--violet));
}

.search-pill {
  display: flex;
  align-items: center;
  height: 38px;
  padding: 0 18px;
  color: #4e4949;
  background: #f2efeb;
  border: 1px solid rgba(21, 19, 20, 0.08);
  border-radius: 999px;
}

.shell-body {
  display: grid;
  grid-template-columns: 70px 1fr;
  min-height: calc(100% - 64px);
}

.side-rail {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 24px 22px;
  background: rgba(248, 245, 240, 0.72);
  border-right: 1px solid var(--line);
}

.side-rail span {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  background: rgba(21, 19, 20, 0.14);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 24px;
}

.video-card {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 174px;
  padding: 12px;
  border: 1px solid rgba(21, 19, 20, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.video-card.active {
  box-shadow: 0 0 0 2px rgba(224, 34, 34, 0.24);
}

.thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(224, 34, 34, 0.92), rgba(227, 165, 35, 0.72)),
    #d9d2ca;
}

.thumb.cool {
  background: linear-gradient(135deg, #222831, var(--teal));
}

.thumb.warm {
  background: linear-gradient(135deg, var(--amber), #7f3b24);
}

.thumb.green {
  background: linear-gradient(135deg, var(--green), #d8e785);
}

.line {
  display: block;
  width: 54%;
  height: 9px;
  border-radius: 999px;
  background: rgba(21, 19, 20, 0.16);
}

.line.wide {
  width: 88%;
}

.search-overlay {
  position: absolute;
  right: clamp(38px, 12vw, 210px);
  bottom: clamp(58px, 11vw, 136px);
  width: min(440px, 34vw);
  min-width: 330px;
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(21, 19, 20, 0.88);
  color: white;
  box-shadow: 0 34px 80px rgba(21, 19, 20, 0.34);
  backdrop-filter: blur(18px);
}

.overlay-bar,
.query-row,
.result-list li,
.privacy-strip {
  display: flex;
  align-items: center;
}

.overlay-bar {
  justify-content: space-between;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.overlay-bar strong {
  color: #fff;
}

.query-row {
  gap: 12px;
  min-height: 44px;
  padding: 0 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.query-icon {
  width: 18px;
  height: 18px;
  border: 2px solid var(--teal);
  box-shadow: 7px 7px 0 -5px var(--teal);
}

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

.result-list li {
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.result-list strong,
.result-list small {
  display: block;
}

.result-list strong {
  font-size: 0.92rem;
}

.result-list small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
}

.result-mark {
  flex: 0 0 auto;
  width: 12px;
  height: 40px;
  border-radius: 999px;
  background: var(--red);
}

.result-mark.amber {
  background: var(--amber);
}

.result-mark.teal {
  background: var(--teal);
}

.privacy-strip {
  position: absolute;
  left: clamp(18px, 46vw, 760px);
  bottom: 24px;
  gap: 10px;
  flex-wrap: wrap;
}

.privacy-strip span,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: #2c2929;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(21, 19, 20, 0.1);
  font-size: 0.82rem;
  font-weight: 700;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--red-dark);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin: 0;
  font-size: clamp(5.2rem, 18vw, 13.4rem);
  line-height: 0.78;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 610px;
  margin: 30px 0 0;
  color: #393536;
  font-size: clamp(1.08rem, 2vw, 1.34rem);
  line-height: 1.58;
}

.hero-actions,
.link-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: white;
  background: var(--red);
  box-shadow: 0 14px 28px rgba(224, 34, 34, 0.22);
}

.button.primary:hover {
  background: #c91d1d;
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(560px, 100%);
  margin: 36px 0 0;
}

.hero-facts div {
  padding: 14px 0;
  border-top: 1px solid rgba(21, 19, 20, 0.18);
}

.hero-facts dt {
  font-size: 1.55rem;
  font-weight: 900;
}

.hero-facts dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.section {
  padding: clamp(72px, 9vw, 126px) clamp(20px, 5vw, 72px);
}

.section-copy {
  width: min(760px, 100%);
}

.section-copy.narrow {
  width: min(620px, 100%);
}

.section h2,
.legal-page h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 5.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.section h3 {
  margin: 0;
  font-size: 1.08rem;
}

.section p,
.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.7;
}

.section-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 24px 0 0;
  font-size: 1.08rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.feature-card,
.plan,
.trust-list article,
.beta-panel,
.legal-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.feature-card {
  min-height: 240px;
  padding: 22px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  border-radius: 8px;
}

.feature-icon.search {
  background:
    radial-gradient(circle at 34% 34%, transparent 24%, white 25%, white 32%, transparent 33%),
    linear-gradient(135deg, var(--red), var(--amber));
}

.feature-icon.tags {
  background: linear-gradient(135deg, var(--violet), var(--teal));
}

.feature-icon.local {
  background: linear-gradient(135deg, var(--green), #d7df49);
}

.feature-icon.skin {
  background: conic-gradient(from 45deg, var(--red), var(--amber), var(--teal), var(--violet), var(--red));
}

.workflow-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.74fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: center;
  background: #171414;
  color: white;
}

.workflow-section p {
  color: rgba(255, 255, 255, 0.68);
}

.workflow-section .eyebrow {
  color: #ffb1a7;
}

.workflow-visual {
  display: grid;
  gap: 16px;
  width: min(620px, 100%);
}

.flow-step {
  display: flex;
  align-items: center;
  min-height: 78px;
  padding: 0 22px;
  border-radius: 8px;
  color: #171414;
  font-size: clamp(1.2rem, 3vw, 2rem);
  font-weight: 900;
}

.flow-step.one {
  background: #fff5dd;
}

.flow-step.two {
  margin-left: 9%;
  background: #d9f5ef;
}

.flow-step.three {
  margin-left: 18%;
  background: #ffd8d1;
}

.flow-line {
  width: 2px;
  height: 42px;
  margin-left: clamp(34px, 9vw, 86px);
  background: rgba(255, 255, 255, 0.3);
}

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

.trust-list,
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 36px;
}

.trust-list article,
.plan {
  padding: 24px;
}

.link-row a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 800;
}

.pricing-section {
  border-top: 1px solid var(--line);
}

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

.plan {
  min-height: 340px;
}

.plan.pro {
  color: white;
  background: #171414;
  border-color: #171414;
  box-shadow: var(--shadow);
}

.plan.pro p,
.plan.pro li {
  color: rgba(255, 255, 255, 0.72);
}

.plan ul,
.legal-page ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding-left: 20px;
}

.beta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: clamp(28px, 6vw, 74px);
  align-items: center;
}

.beta-panel {
  padding: 26px;
  box-shadow: 0 20px 50px rgba(20, 14, 10, 0.08);
}

.status-pill {
  margin-bottom: 24px;
  color: var(--red-dark);
}

.beta-note {
  margin: 14px 0 0;
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: #171414;
}

.footer-brand {
  color: white;
}

.site-footer p {
  margin: 12px 0 0;
}

.site-footer nav {
  flex-wrap: wrap;
  justify-content: flex-end;
}

.legal-main {
  background: var(--soft);
}

.legal-hero {
  padding: 82px clamp(20px, 5vw, 72px) 46px;
  border-bottom: 1px solid var(--line);
}

.legal-page {
  width: min(940px, 100%);
  margin: 0 auto;
}

.legal-page h2 {
  margin: 42px 0 0;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  line-height: 1.08;
}

.legal-page h3 {
  margin: 26px 0 0;
}

.legal-page .lead {
  max-width: 760px;
  font-size: 1.1rem;
}

.legal-content {
  padding: 46px clamp(20px, 5vw, 72px) 90px;
}

.legal-card {
  padding: clamp(22px, 4vw, 36px);
  background: #fff;
}

.legal-card + .legal-card {
  margin-top: 16px;
}

.small-note {
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding-top: 62px;
    padding-bottom: 56px;
  }

  .hero-scene {
    position: relative;
    order: -1;
    min-height: 420px;
    margin: -20px -20px 30px;
    border-bottom: 1px solid var(--line);
    z-index: 0;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-content {
    width: 100%;
  }

  .youtube-shell {
    right: -220px;
    top: 36px;
    width: 760px;
    min-width: 760px;
  }

  .search-overlay {
    right: 18px;
    bottom: 42px;
    width: min(410px, calc(100vw - 36px));
    min-width: 0;
  }

  .privacy-strip {
    left: 18px;
  }

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

  .workflow-section,
  .beta-section {
    grid-template-columns: 1fr;
  }

  .workflow-visual {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: relative;
    align-items: flex-start;
    gap: 14px;
    flex-direction: column;
  }

  .main-nav {
    margin-left: 0;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .lang-toggle {
    align-self: flex-start;
  }

  .hero-scene {
    min-height: 360px;
  }

  .youtube-shell {
    right: -320px;
    width: 720px;
    min-width: 720px;
  }

  .search-overlay {
    padding: 14px;
  }

  .privacy-strip {
    display: none;
  }

  .hero-facts,
  .feature-grid,
  .trust-list,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .flow-step.two,
  .flow-step.three {
    margin-left: 0;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .result-list li:nth-child(3) {
    display: none;
  }

  .youtube-shell {
    right: -390px;
  }

  .search-overlay {
    bottom: 28px;
  }

  .section,
  .legal-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}
