:root {
  color-scheme: light;
  --ink: #12201a;
  --muted: #587067;
  --soft: #f4f8f0;
  --bg: #f8faf5;
  --panel: #ffffff;
  --line: #dce7df;
  --accent: #167a55;
  --accent-2: #ef7d3b;
  --accent-3: #2c7590;
  --sun: #ffe6b8;
  --shadow: 0 24px 80px rgba(28, 49, 40, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 12%, rgba(239, 125, 59, 0.12), transparent 30%),
    radial-gradient(circle at 12% 18%, rgba(44, 117, 144, 0.10), transparent 28%),
    linear-gradient(180deg, #fbfdf8 0%, var(--bg) 48%, #eef6ef 100%);
}

a {
  color: inherit;
}

header,
footer,
main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

header {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0 8px;
}

footer {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  padding: 44px 0 56px;
  color: var(--muted);
  font-size: 14px;
}

nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  color: var(--muted);
}

nav a,
footer a,
.back {
  color: var(--muted);
  text-decoration: none;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  box-shadow: 0 8px 22px rgba(28, 49, 40, 0.20);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.lang {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 11px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.lang.active {
  background: var(--ink);
  color: white;
}

.hero {
  min-height: calc(100vh - 96px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  gap: 64px;
  align-items: center;
  padding: 32px 0 70px;
}

.hero-copy,
.page-hero > div {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0 0 22px;
  font-size: clamp(30px, 3vw, 37px);
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h2 {
  margin: 0 0 18px;
  font-size: clamp(22px, 2vw, 24px);
  line-height: 1.18;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h3 {
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(20px, 2vw, 25px);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.trust-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.trust-badge {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(22, 122, 85, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #31554a;
  font-size: 13px;
  font-weight: 850;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
  overflow-wrap: anywhere;
  text-align: center;
}

.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: white;
  box-shadow: 0 12px 26px rgba(22, 122, 85, 0.22);
}

.secondary {
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
}

.phone {
  width: 100%;
  aspect-ratio: 9 / 16;
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid #253b31;
  border-radius: 36px;
  background: linear-gradient(160deg, #f8fff8 0%, #e8f4ef 48%, var(--sun) 100%);
  box-shadow: var(--shadow);
}

.phone::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -50px;
  bottom: -50px;
  background: rgba(255, 255, 255, 0.42);
  border-radius: 50%;
}

.phone-bar {
  width: 88px;
  height: 6px;
  margin: 0 auto 34px;
  border-radius: 999px;
  background: #1f2b26;
}

.phone-bar.small {
  width: 72px;
  margin-bottom: 22px;
}

.trend-card,
.mode-grid div,
.steps article,
.prices article,
.prompt-card,
.animal-link,
.animal-hero-card,
.legal article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
}

.trend-card {
  position: relative;
  z-index: 1;
  padding: 18px;
}

.trend-card span,
.mode-grid span,
.prices span,
.prompt-card span,
.trend-meta span {
  color: var(--muted);
  font-size: 13px;
}

.trend-card strong {
  display: block;
  margin-top: 5px;
  font-size: 23px;
  line-height: 1.16;
}

.trend-card p {
  color: var(--muted);
}

.mode-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.mode-grid div {
  min-width: 0;
  padding: 14px;
}

.mode-grid b,
.mode-grid span {
  display: block;
}

.animal {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 20px;
  font-size: 112px;
  filter: drop-shadow(0 18px 24px rgba(28, 49, 40, 0.18));
}

.band,
.pricing {
  padding: 78px 0;
}

.funnel-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1fr) minmax(220px, 0.65fr);
  gap: 18px;
  align-items: stretch;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(242, 250, 243, 0.88)),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 48px rgba(28, 49, 40, 0.10);
}

.funnel-panel h2 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2vw, 24px);
}

.funnel-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.funnel-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.funnel-options a,
.funnel-result {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
}

.funnel-options a {
  display: flex;
  min-height: 126px;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease;
}

.funnel-options a:hover {
  transform: translateY(-2px);
  border-color: rgba(22, 122, 85, 0.45);
}

.funnel-options strong,
.funnel-result strong {
  display: block;
  font-size: 18px;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.funnel-options span,
.funnel-result span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.funnel-result {
  display: flex;
  min-height: 126px;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
}

.funnel-result p {
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 16px 34px rgba(22, 122, 85, 0.26);
}

.band.tight {
  padding-top: 44px;
}

.trend-band {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: start;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.5;
}

.prompt-grid,
.steps,
.prices,
.animal-grid,
.gallery-grid {
  display: grid;
  gap: 16px;
}

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

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

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

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

.steps article,
.prices article,
.prompt-card,
.legal article {
  padding: 22px;
}

.prompt-card h3,
.steps h3,
.prices h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.prompt-card p,
.steps p,
.prices span,
.legal p,
.animal-hero-card p {
  color: var(--muted);
  line-height: 1.6;
}

.legal p {
  white-space: pre-line;
}

.steps strong {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent-3);
  color: white;
}

.prices p {
  margin: 12px 0 0;
  color: var(--accent-2);
  font-size: 31px;
  font-weight: 950;
}

.animal-link {
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.animal-link:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(28, 49, 40, 0.10);
}

.animal-link span {
  font-size: 36px;
}

.animal-link strong {
  font-size: 16px;
}

.gallery-shot {
  position: relative;
  min-width: 0;
}

.shot-phone {
  min-height: 540px;
  padding: 20px;
  border: 1px solid #26372f;
  border-radius: 32px;
  background: #fafff7;
  box-shadow: 0 18px 46px rgba(28, 49, 40, 0.13);
}

.app-shot-phone {
  display: block;
  min-height: 0;
  padding: 12px;
  text-decoration: none;
}

.app-shot-phone img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 19.5;
  object-fit: cover;
  object-position: top center;
  border: 1px solid rgba(38, 55, 47, 0.18);
  border-radius: 24px;
  background: #eef6ef;
}

.real-shot-caption {
  padding: 14px 4px 0;
}

.real-shot-caption strong {
  display: block;
  font-size: 18px;
  line-height: 1.2;
}

.real-shot-caption p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.shot-screen {
  min-height: 450px;
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 22px;
  background: linear-gradient(160deg, #eef8f2, #ffe9ca);
}

.shot-screen.image {
  background: linear-gradient(160deg, #f9fff7, #d9f0ea 46%, #ffd4b8);
}

.shot-screen.video {
  background: linear-gradient(160deg, #f9fff7, #e4eef9 46%, #ffdca8);
}

.shot-badge {
  display: inline-flex;
  max-width: 100%;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.shot-screen strong {
  display: block;
  margin-top: 18px;
  font-size: 22px;
  line-height: 1.18;
}

.shot-screen p {
  color: var(--muted);
  line-height: 1.45;
}

.shot-animal {
  position: absolute;
  right: 18px;
  bottom: 18px;
  font-size: 82px;
}

.shot-count {
  position: absolute;
  right: 16px;
  top: 16px;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-weight: 900;
}

.page-hero {
  min-height: 480px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: center;
  padding: 70px 0;
}

.page-hero.compact {
  display: block;
  max-width: 860px;
}

.animal-hero-card {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: linear-gradient(160deg, #ffffff, #eef8f2 45%, #ffe6c6);
}

.animal-hero-card span {
  font-size: 82px;
}

.animal-hero-card strong {
  font-size: 22px;
  line-height: 1.18;
}

.trend-meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.trend-meta span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
}

.legal {
  max-width: 860px;
  padding: 56px 0 90px;
}

.legal h1 {
  font-size: clamp(28px, 3vw, 37px);
  line-height: 1.12;
}

.legal article {
  margin-top: 14px;
}

@media (max-width: 980px) {
  header {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .page-hero,
  .trend-band,
  .funnel-panel {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .funnel-options {
    grid-template-columns: 1fr;
  }

  .phone {
    width: min(360px, 100%);
  }

  .prompt-grid,
  .steps,
  .prices,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .shot-phone {
    min-height: 460px;
  }

  .shot-screen {
    min-height: 360px;
  }
}

@media (max-width: 560px) {
  header,
  footer,
  main {
    width: calc(100vw - 32px);
    max-width: 358px;
    margin-left: 16px;
    margin-right: auto;
  }

  header {
    display: block;
  }

  .brand {
    margin-bottom: 18px;
  }

  nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 14px;
    font-size: 15px;
  }

  nav a {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .language-switcher {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
  }

  .lang {
    min-width: 0;
    flex: 1;
    padding: 0 8px;
  }

  .hero {
    display: block;
    min-height: auto;
    padding-top: 36px;
    overflow: hidden;
  }

  h1 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .lead {
    font-size: 20px;
  }

  .actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .trust-bar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    min-width: 0;
    padding: 0 10px;
    font-size: 15px;
  }

  .phone {
    width: min(calc(100vw - 32px), 300px);
    padding: 20px;
    border-radius: 30px;
  }

  .trend-card strong {
    font-size: 25px;
  }

  .animal {
    right: 18px;
    bottom: 18px;
    font-size: 88px;
  }

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

  .shot-phone {
    padding: 16px;
    border-radius: 28px;
  }

  .funnel-panel {
    padding: 18px;
  }

  .sticky-cta {
    display: none;
  }
}
