/* =========================================
   YEELEN
   Simple product-first landing page.
========================================= */

:root {
  --paper: #fffaf5;
  --surface: #ffffff;
  --surface-soft: #f7eee4;
  --ink: #2a1d19;
  --muted: #72645e;
  --border: #e2d3c6;
  --gold: #d6a14a;
  --gold-hover: #c7923d;
  --terracotta: #a85b3b;
  --terracotta-dark: #7f442e;
  --success: #53715a;

  --font:
    ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shell: 1120px;
}

* {
  box-sizing: border-box;
}

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

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

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

a {
  color: inherit;
}

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

.shell {
  width: min(calc(100% - 40px), var(--shell));
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--terracotta-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.3;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  letter-spacing: -0.035em;
}

h1 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(3rem, 6vw, 5.25rem);
  font-weight: 760;
  line-height: 0.98;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 750;
  line-height: 1.04;
}

h3 {
  margin-bottom: 0;
  font-size: 1.15rem;
  font-weight: 750;
  line-height: 1.2;
}

.section {
  padding: 88px 0;
}

.section--soft {
  border-block: 1px solid var(--border);
  background: var(--surface-soft);
}

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

.section-heading > p:not(.eyebrow) {
  max-width: 660px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(226, 211, 198, 0.85);
  background: rgba(255, 250, 245, 0.94);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 70px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.nav__actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  padding: 3px;

  border: 1px solid var(--border);
  border-radius: 8px;

  background: var(--surface);
}

.language-switch a,
.language-switch span {
  min-width: 34px;
  padding: 6px 8px;

  border-radius: 6px;

  color: var(--muted);

  text-align: center;
  text-decoration: none;

  font-size: 0.78rem;
  font-weight: 700;
}

.language-switch__active {
  color: var(--ink);
  background: var(--surface-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
}

.brand__mark {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
}

.brand__word {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.nav__links {
  display: flex;
  justify-content: center;
  gap: 26px;
}

.nav__links a,
.site-footer nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 650;
}

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

/* Buttons */

.button {
  min-height: 48px;
  padding: 11px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1.2;
  transition:
    background 140ms ease,
    border-color 140ms ease,
    transform 140ms ease;
}

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

.button--small {
  min-height: 42px;
  padding: 9px 15px;
  font-size: 0.9rem;
}

.button--primary {
  color: #261a16;
  background: var(--gold);
}

.button--primary:hover {
  background: var(--gold-hover);
}

.button--secondary {
  border-color: var(--border);
  color: var(--ink);
  background: var(--surface);
}

.button--secondary:hover {
  border-color: #cdb9a8;
  background: #fffdf9;
}

/* Hero */

.hero {
  padding: 96px 0 86px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(310px, 0.75fr);
  align-items: center;
  gap: 72px;
}

.hero__lead {
  max-width: 630px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.22rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero__price {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.hero__price strong {
  color: var(--ink);
}

.hero__proof {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 16px 44px rgba(63, 40, 29, 0.07);
}

.hero__proof-title,
.hero__proof-subtitle {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 780;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.hero__proof-subtitle {
  color: var(--terracotta);
}

.proof-list {
  display: grid;
  gap: 11px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 8px;
  align-items: start;
  font-size: 0.95rem;
  font-weight: 620;
}

.proof-list li span {
  color: var(--success);
  font-weight: 900;
}

.hero__proof-note {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
}

/* Trust strip */

.trust-strip {
  border-block: 1px solid var(--border);
  background: var(--surface-soft);
}

.trust-strip__inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

/* Examples */

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

.example-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.example-card__image {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--surface-soft);
}

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

.example-card:nth-child(1) .example-card__image img {
  object-position: center 38%;
}

.example-card:nth-child(2) .example-card__image img {
  object-position: center 24%;
}

.example-card:nth-child(3) .example-card__image img {
  object-position: center 22%;
}

.example-card__body {
  display: grid;
  gap: 16px;
  padding: 20px;
}

.example-card__type {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}

.example-card__body > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.text-link {
  width: fit-content;
  color: var(--terracotta-dark);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 750;
}

/* Value */

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

.value-grid article {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
}

.value-grid__number {
  display: block;
  margin-bottom: 38px;
  color: var(--terracotta);
  font-size: 0.76rem;
  font-weight: 800;
}

.value-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.plain-statement {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

/* Steps */

.steps {
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
}

.steps li {
  min-width: 0;
  padding: 22px 0 0;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 14px;
  border-top: 2px solid var(--ink);
}

.steps li > span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--surface);
  background: var(--ink);
  font-size: 0.8rem;
  font-weight: 800;
}

.steps p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* Pricing */

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

.pricing-shell {
  max-width: 980px;
}

.price-card {
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 18px 48px rgba(63, 40, 29, 0.07);
}

.price-card__main {
  padding: 34px;
  border-right: 1px solid var(--border);
}

.price-card__label {
  margin: 0;
  color: var(--terracotta-dark);
  font-size: 0.84rem;
  font-weight: 800;
}

.price-card__price {
  margin-top: 18px;
  display: grid;
  gap: 3px;
}

.price-card__price strong {
  font-size: clamp(3.6rem, 8vw, 5.2rem);
  font-weight: 780;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.price-card__price span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.price-card__renewal {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.price-card__summary {
  margin: 24px 0;
  font-size: 1.05rem;
  font-weight: 700;
}

.price-card__included {
  padding: 34px;
}

.price-card__included-title {
  margin: 0 0 12px;
  font-size: 0.84rem;
  font-weight: 800;
}

.price-card__included ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.price-card__included li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 0.92rem;
}

.price-card__included li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 900;
}

.pricing-notes {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.pricing-notes article {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
}

.pricing-notes h3 {
  font-size: 1rem;
}

.pricing-notes article > p:not(.eyebrow) {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.terms-note {
  max-width: 820px;
  margin: 18px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.8rem;
}

/* Final CTA */

.final-cta {
  border-top: 1px solid var(--border);
  background: var(--paper);
}

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

.final-cta__inner p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
}

/* Footer */

.site-footer {
  padding: 32px 0;
  background: var(--ink);
  color: #fffaf5;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand--footer .brand__word {
  color: #fffaf5;
}

.site-footer p {
  margin: 0;
  color: #d8ccc5;
  text-align: center;
  font-size: 0.86rem;
}

.site-footer nav {
  display: flex;
  gap: 18px;
}

.site-footer nav a {
  color: #d8ccc5;
}

/* Accessibility */

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(214, 161, 74, 0.55);
  outline-offset: 3px;
}

/* Responsive */

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

  .nav__links {
    display: none;
  }

  .nav > .button {
    justify-self: end;
  }

  .hero {
    padding-top: 72px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hero__proof {
    max-width: 620px;
  }

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

  .example-card:last-child {
    grid-column: 1 / -1;
    max-width: calc(50% - 9px);
  }

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

  .price-card {
    grid-template-columns: 1fr;
  }

  .price-card__main {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

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

  .site-footer__inner {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .section {
    padding: 64px 0;
  }

  .nav {
    min-height: 64px;
  }

  .brand__mark {
    width: 34px;
    height: 34px;
  }

  .brand__word {
    font-size: 1.12rem;
  }

  .site-header .button--small {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 0.82rem;
  }

  .hero {
    padding: 58px 0 60px;
  }

  h1 {
    font-size: clamp(2.75rem, 13vw, 4rem);
    line-height: 1;
  }

  h2 {
    font-size: clamp(1.95rem, 9vw, 2.7rem);
  }

  .hero__lead {
    margin-top: 18px;
    font-size: 1.03rem;
  }

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

  .hero__actions .button {
    width: 100%;
  }

  .hero__proof {
    padding: 22px;
    border-radius: 18px;
  }

  .hero__proof-title,
  .hero__proof-subtitle {
    font-size: 1.3rem;
  }

  .trust-strip__inner {
    min-height: 0;
    padding-block: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 0.78rem;
  }

  .example-grid,
  .value-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .example-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .value-grid__number {
    margin-bottom: 24px;
  }

  .price-card__main,
  .price-card__included {
    padding: 24px;
  }

  .price-card__main .button {
    width: 100%;
  }

  .final-cta__inner {
    align-items: stretch;
    flex-direction: column;
  }

  .final-cta__inner .button {
    width: 100%;
  }

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

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

  .button {
    transition: none;
  }
}
