  /* Brusher = fuente del hero (DaFont). El dev sube el archivo a /fonts.
     Hasta entonces, Knewave actúa como respaldo de estilo brocha. */
  @font-face {
    font-family: 'Brusher';
    src: url('fonts/Brusher.woff2') format('woff2'),
      url('fonts/Brusher.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
  }

  :root {
    --navy: #0a1a2c;
    --navy-deep: #06121f;
    --navy-soft: #0f2540;
    --gold: #d6962b;
    --gold-bright: #ecb347;
    --teal: #2aa6c0;
    --teal-bright: #3bc0d6;
    --cream: #f1ebdf;
    --cream-line: #d7cdb8;
    --white: #fff;
    --mute: #b6c2d0;
    --line: rgba(214, 150, 43, .22);
    --display: 'Brusher', 'Knewave', cursive;
    --body: 'Inter', system-ui, sans-serif;
    --cond: 'Bebas Neue', sans-serif;
    --marker: 'Permanent Marker', cursive;
    --maxw: 1320px;
  }

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

  html {
    scroll-behavior: smooth
  }

  body {
    font-family: var(--body);
    background: var(--navy);
    color: var(--white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
  }

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

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

  ul {
    list-style: none
  }

  .wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 32px
  }

  .brush {
    font-family: var(--display);
    font-weight: 400;
    line-height: .92;
    text-transform: uppercase;
    letter-spacing: .01em
  }

  /* ANNOUNCEMENT */
  .announce {
    background: linear-gradient(90deg, var(--gold), var(--gold-bright));
    color: var(--navy-deep);
    text-align: center;
    font-family: var(--cond);
    font-weight: 400;
    font-size: 15px;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 9px 16px;
    overflow: hidden;
    max-height: 48px;
    will-change: max-height, padding, opacity, transform;
    backface-visibility: hidden;
    transform-origin: top;
    transition: max-height .45s cubic-bezier(.22, 1, .36, 1), padding .45s cubic-bezier(.22, 1, .36, 1), opacity .28s ease, transform .45s cubic-bezier(.22, 1, .36, 1), margin .45s cubic-bezier(.22, 1, .36, 1)
  }

  .announce .sep {
    opacity: .45;
    margin: 0 12px
  }

  .announce .bolt {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-left: 10px;
    vertical-align: -2px
  }

  .announce.is-hidden {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    transform: translate3d(0, -100%, 0);
    margin-bottom: 0
  }

  /* HEADER */
  .header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(8, 20, 34, .9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line)
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px
  }

  .brand {
    display: flex;
    align-items: center;
    gap: 14px
  }

  .logo {
    width: 56px;
    height: 56px;
    flex: none;
    background-image: url('https://aghsflag.com/wp-content/uploads/2026/06/download.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat
  }

  .brand-name strong {
    display: block;
    font-family: var(--cond);
    font-weight: 400;
    font-size: 30px;
    letter-spacing: .16em;
    line-height: .9
  }

  .brand-name span {
    display: block;
    font-family: var(--cond);
    font-weight: 400;
    font-size: 12px;
    letter-spacing: .26em;
    color: var(--mute);
    margin-top: 4px
  }

  .nav {
    display: flex;
    align-items: center;
    gap: 36px
  }

  .nav a {
    font-family: var(--cond);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: 17px;
    position: relative;
    padding: 6px 0;
    transition: color .2s
  }

  .nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--teal-bright);
    transition: width .25s
  }

  .nav a:hover {
    color: var(--teal-bright)
  }

  .nav a:hover::after,
  .nav a.active::after {
    width: 100%
  }

  .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--cond);
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .08em;
    cursor: pointer;
    border: none;
    transition: transform .15s, box-shadow .2s, background .2s, color .2s
  }

  .btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold-bright);
    background: transparent;
    padding: 11px 24px;
    font-size: 17px;
    border-radius: 6px
  }

  .btn-outline:hover {
    background: var(--gold);
    color: var(--navy-deep)
  }

  .btn-solid {
    background: linear-gradient(90deg, var(--gold), var(--gold-bright));
    color: var(--navy-deep);
    padding: 17px 32px;
    font-size: 20px;
    border-radius: 8px;
    box-shadow: 0 10px 26px rgba(214, 150, 43, .3)
  }

  .btn-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(214, 150, 43, .42)
  }

  .btn-solid .arrow {
    transition: transform .2s
  }

  .btn-solid:hover .arrow {
    transform: translateX(5px)
  }

  .burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px
  }

  .burger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--white);
    margin: 5px 0;
    border-radius: 2px;
    transition: .3s
  }

  /* HERO */
  .hero {
    position: relative;
    background-image: url('https://aghsflag.com/wp-content/uploads/2026/06/download-1.webp');
    background-size: cover;
    background-position: 38% 28%;
    min-height: 610px;
    display: flex;
    align-items: center;
    overflow: hidden
  }

  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(10, 26, 44, .94) 0%, rgba(10, 26, 44, .62) 26%, rgba(10, 26, 44, .18) 50%, transparent 70%)
  }

  .hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 130px;
    background: linear-gradient(0deg, var(--navy), transparent)
  }

  .hero-inner {
    position: relative;
    z-index: 2;
    width: 100%
  }

  .hero-copy {
    max-width: 560px
  }

  .hero h1 {
    font-size: clamp(58px, 8.2vw, 130px);
    color: var(--white);
    text-shadow: 0 4px 24px rgba(0, 0, 0, .45)
  }

  .hero h1 .now {
    color: var(--gold-bright);
    display: inline-block
  }

  .swoosh {
    display: block;
    width: min(370px, 82%);
    height: 22px;
    margin-top: -4px;
    color: var(--teal)
  }

  .hero p {
    font-size: 17px;
    color: #e9eef3;
    max-width: 340px;
    margin-top: 6px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .5)
  }

  .hero p.first {
    margin-top: 24px
  }

  .hero .cta {
    margin-top: 30px
  }

  /* INFO */
  .info {
    background: var(--navy);
    padding: 42px 0;
    border-top: 2px solid var(--line)
  }

  .info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
  }

  .info-col {
    padding: 0 34px;
    border-right: 1px solid var(--line)
  }

  .info-col:first-child {
    padding-left: 0
  }

  .info-col:last-child {
    border-right: none;
    padding-right: 0
  }

  .info-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px
  }

  .info-head .ico {
    color: var(--gold-bright);
    flex: none
  }

  .info-head h3 {
    color: var(--gold-bright);
    font-size: 23px;
    font-family: var(--display);
    text-transform: uppercase;
    transform: skewX(-6deg)
  }

  .info-col p {
    font-size: 15px;
    color: #eef2f6;
    line-height: 1.5
  }

  .info-col p.accent {
    color: var(--gold-bright);
    font-weight: 600
  }

  .info-col li {
    font-size: 15px;
    padding: 3px 0 3px 24px;
    position: relative;
    color: #eef2f6
  }

  .info-col li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 13px;
    height: 8px;
    border-left: 2.5px solid var(--teal-bright);
    border-bottom: 2.5px solid var(--teal-bright);
    transform: rotate(-45deg)
  }

  /* VALUES BAND */
  .values {
    position: relative;
    background: var(--cream);
    color: var(--navy-deep);
    display: grid;
    grid-template-columns: 235px 1fr 235px;
    align-items: stretch;
    clip-path: polygon(0 3%, 8% 0, 22% 4%, 38% 1%, 55% 4%, 72% 0, 86% 4%, 100% 1%, 100% 97%, 88% 100%, 70% 96%, 52% 100%, 34% 96%, 18% 100%, 6% 96%, 0 99%);
    margin: 6px 0
  }

  .vphoto {
    position: relative;
    background-image: url('https://aghsflag.com/wp-content/uploads/2026/06/download-2.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat
  }

  .vphoto.right {
    background-image: url('https://aghsflag.com/wp-content/uploads/2026/06/download-1-1.webp');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat
  }

  .vcore {
    padding: 48px 36px 40px;
    text-align: center
  }

  .vtitle {
    font-size: clamp(30px, 4.2vw, 50px);
    margin-bottom: 32px;
    text-transform: uppercase
  }

  .vtitle .a {
    color: var(--navy-deep)
  }

  .vtitle .b {
    color: var(--teal)
  }

  .vtitle .c {
    color: var(--gold)
  }

  .vrow {
    display: flex;
    justify-content: center;
    flex-wrap: wrap
  }

  .val {
    flex: 1;
    min-width: 120px;
    padding: 0 16px;
    border-right: 1.5px solid var(--cream-line)
  }

  .val:last-child {
    border-right: none
  }

  .val .vico {
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    color: var(--teal)
  }

  .val .vico.gold {
    color: var(--gold)
  }

  .val h4 {
    font-family: var(--cond);
    font-weight: 400;
    text-transform: uppercase;
    font-size: 18px;
    letter-spacing: .04em;
    line-height: 1.02
  }

  .coach {
    margin-top: 30px;
    font-family: var(--cond);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: .04em;
    color: var(--navy-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px
  }

  .coach span {
    color: var(--teal)
  }

  .coach .ln {
    width: 46px;
    height: 2px;
    background: var(--teal)
  }

  /* FAQ */
  .faq {
    background: var(--navy);
    padding: 40px 0 46px;
    border-top: 1px solid var(--line)
  }

  .faq-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap
  }

  .faq-row>h2 {
    font-family: var(--display);
    text-transform: uppercase;
    transform: skewX(-7deg);
    font-size: 40px;
    color: var(--white);
    margin-right: 26px;
    flex: none
  }

  .qbtn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--cond);
    font-weight: 600;
    font-size: 15.5px;
    cursor: pointer;
    padding: 6px 22px;
    border-left: 1px solid var(--line);
    transition: color .2s;
    text-align: left;
    line-height: 1.2
  }

  .qbtn:first-of-type {
    border-left: none
  }

  .qbtn .pl {
    color: var(--teal-bright);
    font-size: 20px;
    line-height: 1;
    transition: transform .25s
  }

  .qbtn:hover,
  .qbtn.active {
    color: var(--teal-bright)
  }

  .qbtn.active .pl {
    transform: rotate(45deg)
  }

  .faq-answer {
    max-width: 820px;
    margin-top: 18px;
    color: var(--mute);
    font-size: 16px;
    line-height: 1.6;
    border-left: 3px solid var(--teal);
    padding: 6px 0 6px 18px;
    display: none
  }

  .faq-answer.show {
    display: block
  }

  /* REGISTER */
  .register {
    background: var(--navy-deep);
    padding: 64px 0 74px;
    border-top: 1px solid var(--line)
  }

  .reg-head {
    text-align: center;
    margin-bottom: 32px
  }

  .reg-head .eb {
    font-family: var(--marker);
    text-transform: uppercase;
    letter-spacing: .04em;
    color: var(--teal-bright);
    font-size: 18px
  }

  .reg-head h2 {
    font-family: var(--display);
    text-transform: uppercase;
    font-size: clamp(40px, 5.4vw, 68px);
    transform: skewX(-5deg);
    margin-top: 8px
  }

  .reg-head h2 .g {
    color: var(--gold-bright)
  }

  .embed {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .45);
    border: 1px solid var(--line)
  }

  .embed iframe {
    width: 100%;
    height: 660px;
    border: none;
    display: block
  }

  /* FOOTER */
  .footer {
    background: var(--navy);
    padding: 46px 0 28px;
    border-top: 2px solid var(--line)
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 30px;
    align-items: center
  }

  .footer .tagline {
    color: var(--gold-bright);
    font-family: var(--display);
    text-transform: uppercase;
    font-size: 18px;
    transform: skewX(-6deg);
    margin-top: 10px
  }

  .fcenter {
    text-align: center
  }

  .fcenter h5 {
    color: var(--gold-bright);
    font-family: var(--cond);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .16em;
    font-size: 14px;
    margin-bottom: 14px
  }

  .social {
    display: flex;
    gap: 12px;
    justify-content: center
  }

  .social a {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 10px;
    display: grid;
    place-items: center;
    transition: .2s
  }

  .social a:hover {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold)
  }

  .fright {
    text-align: right;
    color: var(--mute);
    font-size: 15px
  }

  .fright .vb {
    color: var(--gold-bright);
    font-weight: 600
  }

  /* MOBILE MENU */
  .mm {
    position: fixed;
    inset: 0;
    z-index: 60;
    background: var(--navy-deep);
    display: flex;
    flex-direction: column;
    padding: 28px;
    transform: translateX(100%);
    transition: transform .3s;
    visibility: hidden
  }

  .mm.open {
    transform: translateX(0);
    visibility: visible
  }

  .mm-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px
  }

  .mm .close {
    background: none;
    border: none;
    color: #fff;
    font-size: 38px;
    line-height: 1;
    cursor: pointer
  }

  .mm a {
    font-family: var(--cond);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-size: 24px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line)
  }

  .mm .btn-solid {
    margin-top: 30px;
    justify-content: center
  }

  /* RESPONSIVE */
  @media(max-width:1024px) {
    .values {
      grid-template-columns: 170px 1fr 170px
    }

    .footer-grid {
      grid-template-columns: 1fr 1fr
    }

    .fright {
      grid-column: 1/-1;
      text-align: center;
      border-top: 1px solid var(--line);
      padding-top: 20px
    }
  }

  @media(max-width:880px) {

    .nav,
    .header .btn-outline {
      display: none
    }

    .burger {
      display: block
    }

    .info-grid {
      grid-template-columns: 1fr 1fr;
      gap: 28px 0
    }

    .info-col {
      padding: 0 22px
    }

    .info-col:nth-child(odd) {
      padding-left: 0
    }

    .info-col:nth-child(2) {
      border-right: none;
      padding-right: 0
    }

    .values {
      grid-template-columns: 1fr;
      clip-path: polygon(0 1.5%, 20% 0, 45% 2%, 70% 0, 100% 1.5%, 100% 98.5%, 75% 100%, 50% 98%, 25% 100%, 0 98.5%)
    }

    .vphoto {
      display: none
    }

    .vcore {
      padding: 40px 22px 34px
    }
  }

  @media(max-width:640px) {
    .wrap {
      padding: 0 20px
    }

    .hero {
      min-height: 560px;
      background-position: 34% center
    }

    .hero::before {
      background: linear-gradient(90deg, var(--navy) 18%, rgba(10, 26, 44, .55) 72%)
    }

    .info-grid {
      grid-template-columns: 1fr
    }

    .info-col {
      border-right: none;
      border-bottom: 1px solid var(--line);
      padding: 0 0 22px
    }

    .info-col:last-child {
      border-bottom: none;
      padding-bottom: 0
    }

    .val {
      flex: 0 0 100%;
      border-right: none;
      border-bottom: 1.5px solid var(--cream-line);
      padding: 16px 0
    }

    .val:last-child {
      border-bottom: none
    }

    .faq-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 4px
    }

    .faq-row>h2 {
      margin-bottom: 10px
    }

    .qbtn {
      border-left: none;
      border-bottom: 1px solid var(--line);
      width: 100%;
      justify-content: space-between;
      padding: 14px 0
    }

    .footer-grid {
      grid-template-columns: 1fr;
      text-align: center
    }

    .fcenter,
    .fright {
      text-align: center
    }

    .footer .brand {
      justify-content: center
    }

    .announce {
      font-size: 10.5px;
      letter-spacing: .05em
    }

    .announce .sep {
      margin: 0 7px
    }

    .embed iframe {
      height: 580px
    }
  }

  @media(prefers-reduced-motion:reduce) {
    * {
      animation: none !important;
      transition: none !important;
      scroll-behavior: auto !important
    }
  }

  a:focus-visible,
  button:focus-visible {
    outline: 3px solid var(--teal-bright);
    outline-offset: 3px;
    border-radius: 4px
  }