    :root {
      --bg: #f4f1ea;
      --panel: #fffdf9;
      --text: #171717;
      --muted: #6f6b65;
      --accent: #31554a;
      --gold: #c8a96b;
      --line: #ddd6cb;
      --shadow: 0 10px 30px rgba(0,0,0,0.06);
      --radius: 26px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;

      background-image: url('fondo.png');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-attachment: fixed;
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    .container {
      width: min(1120px, calc(100% - 120px));
      margin: 0 auto;
    }

    @media (max-width: 768px) {
      .container {
        width: calc(100% - 40px);
      }
    }

    header {
      padding: 1.8rem 0;
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(12px);
      background: rgba(248,245,239,0.88);
      border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem;
      font-weight: 600;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--text);
      font-size: 0.95rem;
    }

    .hero {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 4rem;
      align-items: center;
      padding: 7rem 0 5rem;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(49,85,74,0.08);
      color: var(--accent);
      border: 1px solid rgba(49,85,74,0.12);
      padding: 0.5rem 0.9rem;
      border-radius: 999px;
      font-size: 0.8rem;
      margin-bottom: 1.5rem;
    }

    h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3.5rem, 8vw, 6rem);
      line-height: 0.95;
      margin-bottom: 1.5rem;
    }

    .hero p {
      max-width: 560px;
      color: #333;
      font-size: 1.08rem;
      margin-bottom: 2rem;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn {
      border-radius: 999px;
      padding: 1rem 1.4rem;
      text-decoration: none;
      border: 1px solid var(--line);
      color: var(--text);
      font-weight: 600;
      transition: 0.2s ease;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: var(--accent);
      color: white;
      border-color: var(--accent);
    }

    .pixel-plant {
      position: absolute;
      image-rendering: pixelated;
      opacity: 0.9;
      pointer-events: none;
      font-size: 2rem;
      filter: drop-shadow(0 4px 10px rgba(0,0,0,0.08));
    }

    .plant-1 {
      top: 120px;
      right: 8%;
      transform: rotate(-6deg);
    }

    .plant-2 {
      bottom: 140px;
      left: 5%;
      transform: rotate(4deg);
    }

    .pixel-card-decoration {
      position: absolute;
      top: 18px;
      right: 18px;
      font-size: 1.3rem;
      opacity: 0.65;
    }

    .dashboard {
      background: var(--panel);
      border: 1px solid var(--line);
      border-radius: 32px;
      padding: 2rem;
      box-shadow: var(--shadow);
    }

    .xp-bar {
      margin-bottom: 1.5rem;
    }

    .xp-label {
      display: flex;
      justify-content: space-between;
      margin-bottom: 0.5rem;
      font-size: 0.9rem;
      color: var(--muted);
    }

    .bar {
      width: 100%;
      height: 12px;
      background: #ece5d9;
      border-radius: 999px;
      overflow: hidden;
    }

    .bar-fill {
      width: 64%;
      height: 100%;
      background: linear-gradient(to right, var(--accent), #4b7a6c);
      border-radius: 999px;
    }

    .quest-grid {
      display: grid;
      gap: 1rem;
    }

    .quest {
      background: #faf7f1;
      border: 1px solid #e4ddd1;
      border-radius: 20px;
      padding: 1rem 1.2rem;
    }

    .quest small {
      display: inline-block;
      margin-bottom: 0.5rem;
      color: var(--gold);
      font-weight: 600;
      letter-spacing: 0.5px;
    }

    section {
      padding: 6rem 0;
    }

    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    .section-subtitle {
      max-width: 650px;
      color: var(--muted);
      margin-bottom: 3rem;
    }

    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 1.5rem;
    }

    .card {
      background: var(--panel);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 2rem;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.45rem 0.8rem;
      border-radius: 999px;
      background: rgba(200,169,107,0.14);
      color: #8a6a2f;
      font-size: 0.8rem;
      margin-bottom: 1rem;
      font-weight: 600;
    }

    .card h3 {
      margin-bottom: 1rem;
      font-size: 1.2rem;
    }

    .quote {
      text-align: center;
      padding: 6rem 0;
    }

    .quote blockquote {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.2rem, 5vw, 4rem);
      line-height: 1.15;
      max-width: 900px;
      margin: 0 auto 1.5rem;
    }

    .newsletter {
      background: linear-gradient(145deg, #2f4f46, #223a34);
      color: white;
      border-radius: 38px;
      padding: 4rem;
      text-align: center;
      box-shadow: var(--shadow);
    }

    .newsletter h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem;
      margin-bottom: 1rem;
    }

    .newsletter p {
      max-width: 560px;
      margin: 0 auto 2rem;
      opacity: 0.92;
    }

    .newsletter form {
      display: flex;
      justify-content: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .newsletter input {
      border-radius: 999px;
      border: none;
      padding: 1rem 1.2rem;
      width: min(360px, 100%);
    }

    footer {
      text-align: center;
      padding: 3rem 0;
      color: var(--muted);
    }

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

      .nav-links {
        display: none;
      }

      .newsletter {
        padding: 2.5rem;
      }
    }