/* MR Coach — base styles & tokens */

    :root {
      /* Brand palette */
      --teal: #006057;
      --teal-deep: #1b2f26;
      --gold: #d5a500;
      --gold-soft: #e6c14d;
      --beige: #dfcec6;
      --beige-warm: #b29365;
      --brown: #8b6d4b;
      --ink: #020003;
      --paper: #ffffff;
      --paper-warm: #faf8f3;

      /* Neutrals derived for hierarchy */
      --line: rgba(2, 0, 3, 0.08);
      --line-strong: rgba(2, 0, 3, 0.14);
      --muted: rgba(2, 0, 3, 0.55);
      --muted-soft: rgba(2, 0, 3, 0.38);

      /* Type */
      --f-display: "Instrument Serif", "Cormorant Garamond", Georgia, serif;
      --f-body: "Geist", "Manrope", ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;

      /* Rhythm */
      --container: 1200px;
      --pad-x: clamp(20px, 4vw, 40px);
      --r-sm: 8px;
      --r-md: 12px;
      --r-lg: 18px;
      --shadow-sm: 0 1px 2px rgba(2, 0, 3, 0.04), 0 4px 12px rgba(2, 0, 3, 0.05);
      --shadow-md: 0 4px 10px rgba(2, 0, 3, 0.06), 0 14px 38px rgba(2, 0, 3, 0.10);
    }

    * {
      box-sizing: border-box;
    }

    html,
    body {
      margin: 0;
      padding: 0;
      font-family: var(--f-body);
      font-size: 16px;
      line-height: 1.6;
      color: var(--ink);
      background: var(--paper);
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font-family: inherit;
      cursor: pointer;
    }

    img {
      max-width: 100%;
      display: block;
    }

    /* Utility containers */
    .container {
      width: 100%;
      max-width: var(--container);
      margin: 0 auto;
      padding-inline: var(--pad-x);
    }

    /* Section rhythm */
    .section {
      padding-block: clamp(64px, 9vw, 112px);
    }

    /* Display heading default */
    .display {
      font-family: var(--f-display);
      font-weight: 400;
      letter-spacing: -0.01em;
      line-height: 1.02;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--teal);
    }

    .eyebrow::before {
      content: "";
      width: 28px;
      height: 1px;
      background: currentColor;
      display: block;
    }

    /* Buttons */
    .btn {
      --bg: var(--gold);
      --fg: #2a1f00;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      height: 52px;
      padding: 0 24px;
      border-radius: 999px;
      background: var(--bg);
      color: var(--fg);
      font-weight: 500;
      font-size: 15px;
      border: 1px solid transparent;
      letter-spacing: 0.01em;
      transition: transform .25s cubic-bezier(.3, .7, .4, 1), box-shadow .25s, background .2s, border-color .2s, color .2s;
      position: relative;
      overflow: hidden;
    }

    .btn::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(60% 80% at 50% 100%, rgba(255, 255, 255, .35), transparent 60%);
      opacity: 0;
      transition: opacity .25s;
    }

    .btn:hover {
      transform: translateY(-1px);
      box-shadow: 0 12px 28px rgba(213, 165, 0, .32);
    }

    .btn:hover::after {
      opacity: 1;
    }

    .btn .arrow {
      transition: transform .25s;
    }

    .btn:hover .arrow {
      transform: translateX(3px);
    }

    .btn-sm {
      height: 40px;
      padding: 0 18px;
      font-size: 13.5px;
    }

    .btn-ghost {
      --bg: transparent;
      --fg: var(--teal-deep);
      border-color: var(--gold);
    }

    .btn-ghost:hover {
      background: var(--gold);
      color: #2a1f00;
      box-shadow: 0 8px 20px rgba(213, 165, 0, .22);
    }

    .btn-dark {
      --bg: var(--teal-deep);
      --fg: #fff;
    }

    .btn-dark:hover {
      box-shadow: 0 12px 28px rgba(27, 47, 38, .30);
    }

    /* Header */
    .hd {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, .86);
      -webkit-backdrop-filter: saturate(160%) blur(14px);
      backdrop-filter: saturate(160%) blur(14px);
      border-bottom: 1px solid var(--line);
    }

    .hd-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      height: 76px;
    }

    .logo {
      display: inline-flex;
      align-items: baseline;
      gap: 8px;
      font-family: var(--f-display);
      font-size: 26px;
      letter-spacing: -0.01em;
      color: var(--teal-deep);
    }

    .logo .mark {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--teal);
      color: #fff;
      font-family: var(--f-display);
      font-size: 18px;
      letter-spacing: 0;
      margin-right: 4px;
      position: relative;
      align-self: center;
    }

    .logo .mark::after {
      content: "";
      position: absolute;
      inset: -4px;
      border: 1px solid var(--gold);
      border-radius: 50%;
      opacity: .6;
    }

    .logo .l-coach {
      font-family: var(--f-body);
      font-size: 12.5px;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--muted);
      align-self: center;
      margin-left: 2px;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav a {
      position: relative;
      font-size: 14px;
      font-weight: 500;
      color: var(--teal-deep);
      padding: 8px 0;
      transition: color .2s;
    }

    .nav a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 100%;
      bottom: 4px;
      height: 1.5px;
      background: var(--gold);
      transition: right .25s cubic-bezier(.3, .7, .4, 1);
    }

    .nav a:hover {
      color: var(--gold);
    }

    .nav a:hover::after {
      right: 0;
    }

    .nav a.active {
      color: var(--teal);
    }

    .nav a.active::after {
      right: 0;
      background: var(--teal);
    }

    .hd-cta {
      display: flex;
      align-items: center;
      gap: 12px;
    }



    /* Section heads */
    .sect-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 48px;
    }

    .sect-head h2 {
      font-family: var(--f-display);
      font-weight: 400;
      font-size: clamp(32px, 4vw, 48px);
      line-height: 1.04;
      letter-spacing: -0.01em;
      margin: 12px 0 0;
      color: var(--teal-deep);
      max-width: 18ch;
    }

    .sect-head h2 em {
      font-style: italic;
      color: var(--teal);
    }

    .sect-head .desc {
      color: var(--muted);
      max-width: 42ch;
      font-size: 15.5px;
    }

    /* Vitrine — shared card */
    .vitrine {
      background: var(--paper);
    }

    .vitrine .container {
      position: relative;
    }

    .tabs {
      display: inline-flex;
      background: rgba(0, 96, 87, .06);
      border-radius: 999px;
      padding: 4px;
      gap: 2px;
    }

    .tabs button {
      appearance: none;
      border: 0;
      background: transparent;
      color: var(--teal-deep);
      padding: 10px 18px;
      border-radius: 999px;
      font-weight: 500;
      font-size: 13.5px;
      transition: background .2s, color .2s, box-shadow .2s;
    }

    .tabs button.on {
      background: #fff;
      color: var(--teal);
      box-shadow: 0 2px 6px rgba(0, 0, 0, .06);
    }

    .tabs button:hover:not(.on) {
      color: var(--teal);
    }

    /* Product card */
    .product {
      position: relative;
      background: #fff;
      border-radius: var(--r-md);
      border: 1px solid var(--line);
      border-left: 4px solid var(--gold);
      box-shadow: 0 1px 2px rgba(0, 0, 0, .03), 0 6px 18px rgba(0, 0, 0, .04);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform .3s cubic-bezier(.3, .7, .4, 1), box-shadow .3s;
    }

    .product:hover {
      transform: translateY(-4px);
      box-shadow: 0 14px 36px rgba(0, 0, 0, .10);
    }

    .product .cover {
      position: relative;
      aspect-ratio: 4/3;
      overflow: hidden;
      background: linear-gradient(160deg, #f4ece1, #dfcec6);
    }



    .product .cover::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.1);
      z-index: 0;
    }

    .product .cover.cv-1 {
      background: linear-gradient(160deg, #006057, #1b2f26);
    }

    .product .cover.cv-2 {
      background: linear-gradient(160deg, #d5a500, #b29365);
    }

    .product .cover.cv-3 {
      background: linear-gradient(160deg, #dfcec6, #b29365);
    }

    .product .cover.cv-4 {
      background: linear-gradient(160deg, #1b2f26, #006057 60%, #d5a500);
    }

    .product .cover.cv-5 {
      background: linear-gradient(160deg, #8b6d4b, #dfcec6);
    }

    .product .cover.cv-6 {
      background: linear-gradient(160deg, #006057, #dfcec6);
    }

    .product .cover.cv-7 {
      background: linear-gradient(160deg, #1b2f26, #8b6d4b);
    }

    .product .cover.cv-8 {
      background: linear-gradient(160deg, #d5a500, #1b2f26);
    }

    .product .cover .ph {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 8px;
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 11px;
      letter-spacing: 0.08em;
      color: var(--brown);
      opacity: .85;
    }

    .product .cover .ph::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: repeating-linear-gradient(45deg, rgba(139, 109, 75, .10) 0 1px, transparent 1px 12px);
    }

    .product .cover.cv-1 .ph,
    .product .cover.cv-4 .ph,
    .product .cover.cv-7 .ph,
    .product .cover.cv-8 .ph {
      color: rgba(255, 255, 255, .78);
    }

    .product .cover.cv-1 .ph::before,
    .product .cover.cv-4 .ph::before,
    .product .cover.cv-7 .ph::before,
    .product .cover.cv-8 .ph::before {
      background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 12px);
    }

    .product .cover.cv-1 .glyph,
    .product .cover.cv-4 .glyph,
    .product .cover.cv-7 .glyph,
    .product .cover.cv-8 .glyph {
      background: rgba(255, 255, 255, .12);
      color: #fff;
    }

    .product .cover .glyph {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .5);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--teal-deep);
      position: relative;
      z-index: 1;
    }

    .product .badge {
      position: absolute;
      top: 14px;
      left: 14px;
      background: rgba(255, 255, 255, .92);
      color: var(--teal-deep);
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 6px 10px;
      border-radius: 999px;
      font-weight: 500;
      z-index: 2;
    }

    .product .body {
      padding: 22px 22px 24px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      flex: 1;
    }

    .product .body h3 {
      font-family: var(--f-display);
      font-size: 24px;
      font-weight: 400;
      letter-spacing: -0.005em;
      color: var(--teal-deep);
      margin: 0;
      line-height: 1.15;
    }

    .product .body p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
      margin: 0;
    }

    .product .meta-row {
      margin-top: auto;
      padding-top: 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

    .product .price {
      font-family: var(--f-display);
      color: var(--gold);
      font-size: 22px;
      letter-spacing: -0.005em;
    }

    .product .price .from {
      font-family: var(--f-body);
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--muted);
      display: block;
      margin-bottom: 2px;
    }

    /* Grid */
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }

    @media (max-width: 980px) {
      .grid-3 {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 640px) {
      .grid-3 {
        grid-template-columns: 1fr;
      }
    }

    .grid-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    @media (max-width: 1100px) {
      .grid-4 {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .grid-4 {
        grid-template-columns: 1fr;
      }
    }

    /* Carousel */
    .carousel {
      position: relative;
    }

    .carousel .track {
      display: flex;
      gap: 22px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      padding-bottom: 14px;
      margin: 0 calc(var(--pad-x) * -1);
      padding-inline: var(--pad-x);
      scrollbar-width: none;
    }

    .carousel .track::-webkit-scrollbar {
      display: none;
    }

    .carousel .track>* {
      flex: 0 0 calc((100% - 66px) / 4);
      scroll-snap-align: start;
      min-width: 260px;
    }

    @media (max-width: 1100px) {
      .carousel .track>* {
        flex-basis: calc((100% - 44px) / 3);
      }
    }

    @media (max-width: 820px) {
      .carousel .track>* {
        flex-basis: calc((100% - 22px) / 2);
      }
    }

    @media (max-width: 560px) {
      .carousel .track>* {
        flex-basis: 82%;
      }
    }

    .car-controls {
      position: absolute;
      top: -64px;
      right: 0;
      display: flex;
      gap: 10px;
    }

    .car-btn {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid var(--line-strong);
      background: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--teal-deep);
      transition: background .2s, color .2s, border-color .2s, transform .2s;
    }

    .car-btn:hover {
      background: var(--teal);
      color: #fff;
      border-color: var(--teal);
    }

    .car-btn:disabled {
      opacity: .35;
      cursor: not-allowed;
    }

    .car-btn:disabled:hover {
      background: #fff;
      color: var(--teal-deep);
      border-color: var(--line-strong);
    }

    .car-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 22px;
    }

    .car-dot {
      width: 22px;
      height: 4px;
      border-radius: 2px;
      background: var(--line-strong);
      border: 0;
      padding: 0;
      transition: background .2s, width .2s;
    }

    .car-dot.on {
      background: var(--gold);
      width: 36px;
    }

    /* Blog cards */
    .bg-warm {
      background: var(--paper-warm);
    }

    .article {
      background: #fff;
      border-radius: var(--r-md);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: 0 1px 2px rgba(0, 0, 0, .03), 0 6px 18px rgba(0, 0, 0, .04);
      transition: box-shadow .3s, transform .3s;
    }

    .article:hover {
      box-shadow: 0 14px 36px rgba(0, 0, 0, .10);
    }

    .article .cover {
      position: relative;
      aspect-ratio: 16/10;
      overflow: hidden;
    }

    .article .cover .img {
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, #cfe1de, #006057 200%);
      transition: transform .55s cubic-bezier(.3, .7, .4, 1);
      display: flex;
      align-items: center;
      justify-content: center;
    }



    .article:hover .cover .img {
      transform: scale(1.05);
    }

    .article .cover .img::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        repeating-linear-gradient(35deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 14px),
        linear-gradient(180deg, transparent 50%, rgba(2, 0, 3, .18));
    }

    .article .cover .ph-tag {
      position: relative;
      z-index: 1;
      font-family: "Geist Mono", ui-monospace, monospace;
      font-size: 11px;
      letter-spacing: 0.08em;
      color: rgba(255, 255, 255, .85);
      text-transform: uppercase;
    }

    .article .cat {
      position: absolute;
      top: 16px;
      left: 16px;
      z-index: 2;
      background: var(--teal);
      color: #fff;
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 6px 12px;
      border-radius: 999px;
      font-weight: 500;
    }

    .article .body {
      padding: 22px 22px 24px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      flex: 1;
    }

    .article .body h3 {
      font-family: var(--f-display);
      font-size: 24px;
      font-weight: 400;
      line-height: 1.18;
      color: var(--teal-deep);
      margin: 0;
      letter-spacing: -0.005em;
    }

    .article .body p {
      color: var(--muted);
      font-size: 14px;
      margin: 0;
      line-height: 1.55;
    }

    .article .body .foot {
      margin-top: auto;
      padding-top: 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 13px;
      color: var(--muted);
    }

    .article .body .read-more {
      color: var(--teal);
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: gap .25s, color .2s;
    }

    .article:hover .body .read-more {
      gap: 10px;
      color: var(--gold);
    }

    /* Highlight band */
    .highlight {
      position: relative;
      background: var(--teal-deep);
      color: #fff;
      overflow: hidden;
    }

    .highlight::before,
    .highlight::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      filter: blur(40px);
    }

    .highlight::before {
      width: 420px;
      height: 420px;
      background: rgba(213, 165, 0, .20);
      top: -120px;
      right: -120px;
    }

    .highlight::after {
      width: 360px;
      height: 360px;
      background: rgba(0, 96, 87, .6);
      bottom: -160px;
      left: -100px;
    }

    .highlight .container {
      position: relative;
      z-index: 1;
    }

    .highlight-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 60px;
      align-items: center;
    }

    @media (max-width: 880px) {
      .highlight-grid {
        grid-template-columns: 1fr;
      }
    }

    .highlight blockquote {
      font-family: var(--f-display);
      font-size: clamp(28px, 3.4vw, 42px);
      line-height: 1.18;
      letter-spacing: -0.01em;
      margin: 0;
      color: #fff;
      text-wrap: balance;
    }

    .highlight blockquote em {
      color: var(--gold-soft);
      font-style: italic;
    }

    .highlight .qmark {
      font-family: var(--f-display);
      font-size: 96px;
      line-height: .6;
      color: var(--gold);
      display: block;
      margin-bottom: 8px;
    }

    .highlight .attrib {
      margin-top: 28px;
      display: flex;
      align-items: center;
      gap: 14px;
      color: rgba(255, 255, 255, .7);
      font-size: 14px;
    }

    .highlight .attrib .av {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: linear-gradient(135deg, #b29365, #8b6d4b);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: var(--f-display);
      color: #fff;
      font-size: 18px;
    }

    .highlight .attrib .name {
      color: #fff;
      font-weight: 500;
      font-size: 15px;
    }

    .stats-card {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .10);
      border-radius: var(--r-lg);
      padding: 28px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px 32px;
    }

    .stats-card .item .n {
      font-family: var(--f-display);
      font-size: 44px;
      color: var(--gold-soft);
      line-height: 1;
    }

    .stats-card .item .l {
      margin-top: 8px;
      font-size: 12.5px;
      color: rgba(255, 255, 255, .7);
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    /* Footer */
    .ft {
      background: var(--teal-deep);
      color: rgba(255, 255, 255, .7);
      padding-top: 80px;
      padding-bottom: 28px;
      position: relative;
      overflow: hidden;
    }

    .ft .glow {
      position: absolute;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(213, 165, 0, .10), transparent 60%);
      top: -300px;
      left: 30%;
      pointer-events: none;
    }

    .ft-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1.4fr;
      gap: 40px;
      position: relative;
      z-index: 1;
    }

    @media (max-width: 900px) {
      .ft-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 560px) {
      .ft-grid {
        grid-template-columns: 1fr;
      }
    }

    .ft h4 {
      font-family: var(--f-body);
      color: #fff;
      font-size: 13px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 500;
      margin: 0 0 18px;
    }

    .ft ul {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .ft a:not(.ft-soc) {
      font-size: 14px;
      transition: color .2s;
    }

    .ft a:not(.ft-soc):not(.btn):hover {
      color: var(--gold);
    }

    .ft .about p {
      font-size: 14px;
      line-height: 1.6;
      max-width: 36ch;
      margin: 0 0 22px;
      color: rgba(255, 255, 255, .65);
    }

    .ft .ft-logo {
      color: #fff;
      font-family: var(--f-display);
      font-size: 24px;
      display: inline-flex;
      align-items: baseline;
      gap: 6px;
      margin-bottom: 18px;
    }

    .ft .ft-logo .mark {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: var(--gold);
      color: var(--teal-deep);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      align-self: center;
      margin-right: 4px;
    }

    .ft .ft-logo .l-coach {
      font-family: var(--f-body);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .6);
      align-self: center;
      margin-left: 2px;
    }

    .ft-soc-row {
      display: flex;
      gap: 10px;
    }

    .ft-soc {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, .18);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, .7);
      transition: background .2s, color .2s, border-color .2s;
    }

    .ft-soc:hover {
      background: var(--gold);
      color: var(--teal-deep);
      border-color: var(--gold);
    }

    .newsletter {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .newsletter p {
      margin: 0 0 4px;
      font-size: 14px;
      line-height: 1.55;
      color: rgba(255, 255, 255, .65);
    }

    .newsletter form {
      display: flex;
      gap: 8px;
      background: rgba(255, 255, 255, .04);
      border: 1px solid var(--gold);
      border-radius: 999px;
      padding: 4px 4px 4px 18px;
      align-items: center;
    }

    .newsletter input {
      flex: 1;
      background: transparent;
      border: 0;
      outline: none;
      color: #fff;
      font: inherit;
      font-size: 14px;
      padding: 10px 0;
    }

    .newsletter input::placeholder {
      color: rgba(255, 255, 255, .5);
    }

    .newsletter button {
      background: var(--teal);
      color: #fff;
      border: 0;
      border-radius: 999px;
      padding: 0 18px;
      height: 40px;
      font-weight: 500;
      font-size: 13.5px;
      transition: background .2s;
    }

    .newsletter button:hover {
      background: var(--gold);
      color: var(--teal-deep);
    }

    .newsletter .msg {
      font-size: 12.5px;
      color: var(--gold-soft);
      min-height: 16px;
      padding-left: 4px;
    }

    .ft-base {
      margin-top: 56px;
      padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, .10);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-size: 12.5px;
      color: rgba(255, 255, 255, .5);
      position: relative;
      z-index: 1;
      flex-wrap: wrap;
    }

    .ft-base a:hover {
      color: var(--gold);
    }

    .ft-base .ft-legal {
      display: flex;
      gap: 20px;
    }

    /* Mobile nav */
    .menu-btn {
      display: none;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid var(--line-strong);
      background: #fff;
      align-items: center;
      justify-content: center;
    }

    @media (max-width: 820px) {

      .nav,
      .hd-cta .btn {
        display: none;
      }

      .menu-btn {
        display: inline-flex;
      }
    }

    /* Reveal animation */
    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .7s ease, transform .7s cubic-bezier(.3, .7, .4, 1);
    }

    .reveal.in {
      opacity: 1;
      transform: none;
    }

    /* Mono helper (placeholder text) */
    .mono {
      font-family: "Geist Mono", ui-monospace, monospace;
    }

    /* Cover variants (deterministic gradients) */
    .cv-1 {
      background: linear-gradient(160deg, #006057, #1b2f26);
    }

    .cv-2 {
      background: linear-gradient(160deg, #d5a500, #b29365);
    }

    .cv-3 {
      background: linear-gradient(160deg, #dfcec6, #b29365);
    }

    .cv-4 {
      background: linear-gradient(160deg, #1b2f26, #006057 60%, #d5a500);
    }

    .cv-5 {
      background: linear-gradient(160deg, #8b6d4b, #dfcec6);
    }

    .cv-6 {
      background: linear-gradient(160deg, #006057, #dfcec6);
    }

    .cv-7 {
      background: linear-gradient(160deg, #1b2f26, #8b6d4b);
    }

    .cv-8 {
      background: linear-gradient(160deg, #d5a500, #1b2f26);
    }


    /* Static-page only adjustments */
    .hero-feat-cover {
      display: none;
    }

    .hero-feat-cover[data-active] {
      display: flex;
    }

    .ico {
      display: inline-block;
      vertical-align: middle;
    }

    .btn .ico,
    .feat-cta .ico,
    .read-more .ico {
      transition: transform .25s;
    }

    .btn:hover .ico.arrow,
    .feat-cta:hover .ico.arrow {
      transform: translateX(3px);
    }

    .btn::after {
      content: none;
    }

    /* simplify the static button shine */

    /* Mega Menu & Dropdown Basic Styles */
    .nav {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .nav>ul {
      display: flex;
      align-items: center;
      gap: 24px;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .nav li {
      position: relative;
    }

    .nav a {
      position: relative;
      font-size: 14px;
      font-weight: 500;
      color: var(--teal-deep);
      padding: 8px 0;
      transition: color .2s;
      text-decoration: none;
      display: inline-block;
    }

    .nav>ul>li>a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 100%;
      bottom: 4px;
      height: 1.5px;
      background: var(--gold);
      transition: right .25s cubic-bezier(.3, .7, .4, 1);
    }

    .nav>ul>li:hover>a {
      color: var(--gold);
    }

    .nav>ul>li:hover>a::after {
      right: 0;
    }

    /* Dropdowns */
    .nav .dropdown {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: #fff;
      min-width: 220px;
      box-shadow: var(--shadow-md);
      border-radius: var(--r-sm);
      border: 1px solid var(--line);
      padding: 8px 0;
      z-index: 200;
      list-style: none;
      margin: 0;
    }

    .nav li:hover>.dropdown {
      display: block;
    }

    .nav .dropdown li {
      display: block;
    }

    .nav .dropdown a {
      display: block;
      padding: 8px 20px;
      font-size: 13.5px;
      color: var(--muted);
      transition: background .2s, color .2s;
    }

    .nav .dropdown a::after {
      display: none;
    }

    /* No underline on dropdown */
    .nav .dropdown a:hover {
      background: rgba(0, 96, 87, .05);
      color: var(--teal);
    }

    /* Nested Dropdowns */
    .nav .dropdown .dropdown {
      top: 0;
      left: 100%;
      margin-left: 2px;
    }

    /* Responsive adjustments */
    @media (max-width: 820px) {
      .nav>ul {
        display: none;
      }

      /* Hide for now on mobile, handled by menu-btn later */
    }


    .dd-arrow {
      display: inline-block;
      margin-left: 6px;
      vertical-align: middle;
      border-top: 4px solid currentColor;
      border-left: 4px solid transparent;
      border-right: 4px solid transparent;
      opacity: 0.6;
    }

    /* Fix arrow direction and placement for nested dropdowns */
    .dropdown a {
      display: flex !important;
      align-items: center;
      justify-content: space-between;
    }

    .dropdown .dd-arrow {
      border-top: 4px solid transparent;
      border-bottom: 4px solid transparent;
      border-left: 4px solid currentColor;
      border-right: none;
      margin-left: 10px;
    }

    /* ==========================================================================
       Universo DISC - Custom Premium Animations
       ========================================================================== */
    .btn-disc {
      position: relative;
      overflow: visible !important; /* Permite que as bolinhas de luz saiam dos limites do botão */
      box-shadow: 0 4px 14px rgba(213, 165, 0, 0.45);
      transition: transform .25s cubic-bezier(.3, .7, .4, 1), box-shadow .25s, background .2s, border-color .2s, color .2s !important;
      animation: disc-glow-pulse 2s infinite alternate ease-in-out;
    }

    /* Aura sutil e contínua de glow (chama atenção de forma elegante) */
    @keyframes disc-glow-pulse {
      0% {
        box-shadow: 0 4px 14px rgba(213, 165, 0, 0.35), 0 0 0 2px rgba(213, 165, 0, 0.2);
        transform: scale(1);
      }
      100% {
        box-shadow: 0 8px 24px rgba(213, 165, 0, 0.75), 0 0 0 10px rgba(213, 165, 0, 0);
        transform: scale(1.02);
      }
    }

    .btn-disc:hover {
      transform: translateY(-3px) scale(1.04) !important;
      box-shadow: 0 14px 32px rgba(213, 165, 0, 0.55), 0 0 0 10px rgba(213, 165, 0, 0) !important;
      animation: none; /* Pausa o pulso automático no hover */
    }

    /* Animação da Bússola Viva (micro-movimento periódico estilo "estou aqui") */
    .btn-disc .ico-compass {
      animation: compass-wiggle 4s ease-in-out infinite;
      transform-origin: center;
      transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    @keyframes compass-wiggle {
      0%, 80%, 100% {
        transform: rotate(0deg) scale(1);
      }
      84% {
        transform: rotate(-35deg) scale(1.2);
      }
      88% {
        transform: rotate(30deg) scale(1.2);
      }
      92% {
        transform: rotate(-20deg) scale(1.15);
      }
      96% {
        transform: rotate(15deg) scale(1.1);
      }
    }

    /* Ao passar o mouse, a bússola dá uma volta completa super fluida */
    .btn-disc:hover .ico-compass {
      animation: none;
      transform: rotate(360deg) scale(1.15);
    }

    /* Container de Partículas */
    .btn-disc-particles {
      position: absolute;
      inset: 0;
      pointer-events: none;
      overflow: visible;
      z-index: 1;
    }

    .btn-disc .particle {
      position: absolute;
      border-radius: 50%;
      background: var(--gold-soft);
      opacity: 0;
      pointer-events: none;
    }

    /* 10 Animações individuais de flutuação em 360 graus */
    @keyframes float-p-1 {
      0% { transform: translate(0, 0) scale(0); opacity: 0; }
      15% { opacity: 1; }
      100% { transform: translate(-35px, -45px) scale(1.3); opacity: 0; }
    }
    @keyframes float-p-2 {
      0% { transform: translate(0, 0) scale(0); opacity: 0; }
      15% { opacity: 1; }
      100% { transform: translate(35px, -45px) scale(1.1); opacity: 0; }
    }
    @keyframes float-p-3 {
      0% { transform: translate(0, 0) scale(0); opacity: 0; }
      15% { opacity: 1; }
      100% { transform: translate(-30px, 30px) scale(0.9); opacity: 0; }
    }
    @keyframes float-p-4 {
      0% { transform: translate(0, 0) scale(0); opacity: 0; }
      15% { opacity: 1; }
      100% { transform: translate(30px, 30px) scale(1.2); opacity: 0; }
    }
    @keyframes float-p-5 {
      0% { transform: translate(0, 0) scale(0); opacity: 0; }
      15% { opacity: 1; }
      100% { transform: translate(-45px, -5px) scale(1.1); opacity: 0; }
    }
    @keyframes float-p-6 {
      0% { transform: translate(0, 0) scale(0); opacity: 0; }
      15% { opacity: 1; }
      100% { transform: translate(45px, 5px) scale(0.8); opacity: 0; }
    }
    @keyframes float-p-7 {
      0% { transform: translate(0, 0) scale(0); opacity: 0; }
      15% { opacity: 1; }
      100% { transform: translate(-15px, -55px) scale(1.3); opacity: 0; }
    }
    @keyframes float-p-8 {
      0% { transform: translate(0, 0) scale(0); opacity: 0; }
      15% { opacity: 1; }
      100% { transform: translate(15px, -60px) scale(1); opacity: 0; }
    }
    @keyframes float-p-9 {
      0% { transform: translate(0, 0) scale(0); opacity: 0; }
      15% { opacity: 1; }
      100% { transform: translate(-18px, 40px) scale(1); opacity: 0; }
    }
    @keyframes float-p-10 {
      0% { transform: translate(0, 0) scale(0); opacity: 0; }
      15% { opacity: 1; }
      100% { transform: translate(18px, 40px) scale(1.2); opacity: 0; }
    }

    /* Ativação das 10 bolinhas de luz no hover em direções circulares e com tempos diferentes */
    .btn-disc:hover .p1 { width: 6px; height: 6px; left: 15%; top: 40%; animation: float-p-1 0.9s ease-out infinite; }
    .btn-disc:hover .p2 { width: 8px; height: 8px; left: 80%; top: 30%; animation: float-p-2 1.1s 0.1s ease-out infinite; }
    .btn-disc:hover .p3 { width: 5px; height: 5px; left: 20%; top: 60%; animation: float-p-3 1.0s 0.2s ease-out infinite; }
    .btn-disc:hover .p4 { width: 7px; height: 7px; left: 75%; top: 65%; animation: float-p-4 0.85s 0.05s ease-out infinite; }
    .btn-disc:hover .p5 { width: 8px; height: 8px; left: 10%; top: 50%; animation: float-p-5 1.15s 0.15s ease-out infinite; }
    .btn-disc:hover .p6 { width: 5px; height: 5px; left: 90%; top: 45%; animation: float-p-6 0.95s 0.25s ease-out infinite; }
    .btn-disc:hover .p7 { width: 7px; height: 7px; left: 35%; top: 25%; animation: float-p-7 1.3s 0.05s ease-out infinite; }
    .btn-disc:hover .p8 { width: 9px; height: 9px; left: 60%; top: 20%; animation: float-p-8 1.25s 0.2s ease-out infinite; }
    .btn-disc:hover .p9 { width: 6px; height: 6px; left: 40%; top: 75%; animation: float-p-9 1.05s 0.12s ease-out infinite; }
    .btn-disc:hover .p10 { width: 8px; height: 8px; left: 55%; top: 70%; animation: float-p-10 0.9s 0.3s ease-out infinite; }