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

    :root {
      --emerald: #1a6b4a;
      --emerald-dark: #0f4a32;
      --emerald-light: #2d8f65;
      --gold: #d4a843;
      --gold-light: #e8c96a;
      --cream: #faf6ed;
      --cream-dark: #f0e8d4;
      --charcoal: #1a1a1a;
      --warm-gray: #4a4540;
      --tennis-ball: #c8d930;
    }

    html {
      scroll-behavior: smooth;
    }

    #step-payment {
      display: none;
    }

    body {
      font-family: "DM Sans", sans-serif;
      background: var(--cream);
      color: var(--charcoal);
      overflow-x: hidden;
      line-height: 1.6;
    }

    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 16px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition:
        background 0.4s,
        backdrop-filter 0.4s;
    }

    nav.scrolled {
      background: rgba(26, 107, 74, 0.92);
      backdrop-filter: blur(12px);
    }

    .nav-logo {
      font-family: "Playfair Display", serif;
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      letter-spacing: 0.5px;
    }

    .custom-form {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .form-group {
      display: flex;
      flex-direction: column;
    }

    .form-group label {
      font-size: 13px;
      margin-bottom: 6px;
      color: rgba(255, 255, 255, 0.8);
    }

    .custom-form input,
    .custom-form select,
    .custom-form textarea {
      padding: 10px 12px;
      border-radius: 6px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: rgba(255, 255, 255, 0.06);
      color: #fff;
      font-family: "DM Sans", sans-serif;
    }

    .custom-form input:focus,
    .custom-form select:focus,
    .custom-form textarea:focus {
      outline: none;
      border-color: var(--gold);
    }

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

    .nav-links a {
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      transition: color 0.2s;
    }

    .nav-links a:hover {
      color: var(--gold-light);
    }

    .nav-cta {
      background: var(--gold) !important;
      color: var(--charcoal) !important;
      padding: 8px 20px;
      border-radius: 4px;
      font-weight: 600 !important;
    }

    .nav-cta:hover {
      background: var(--gold-light) !important;
    }

    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(165deg,
          var(--emerald-dark) 0%,
          var(--emerald) 40%,
          var(--emerald-light) 100%);
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 600px 600px at 20% 80%,
          rgba(212, 168, 67, 0.12),
          transparent),
        radial-gradient(ellipse 800px 800px at 80% 20%,
          rgba(255, 255, 255, 0.06),
          transparent);
    }

    .court-lines {
      position: absolute;
      inset: 0;
      overflow: hidden;
      opacity: 0.08;
    }

    .court-lines::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 700px;
      height: 400px;
      border: 3px solid #fff;
    }

    .court-lines::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 0;
      height: 400px;
      border-left: 3px solid #fff;
    }

    .ball {
      position: absolute;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--tennis-ball);
      box-shadow:
        inset -3px -3px 6px rgba(0, 0, 0, 0.15),
        0 0 20px rgba(200, 217, 48, 0.3);
      opacity: 0.2;
    }

    .ball-1 {
      top: 15%;
      right: 12%;
      animation: float1 8s ease-in-out infinite;
    }

    .ball-2 {
      bottom: 20%;
      left: 8%;
      animation: float2 10s ease-in-out infinite;
      width: 20px;
      height: 20px;
    }

    .ball-3 {
      top: 60%;
      right: 25%;
      animation: float3 12s ease-in-out infinite;
      width: 16px;
      height: 16px;
      opacity: 0.12;
    }

    @keyframes float1 {

      0%,
      100% {
        transform: translateY(0) rotate(0deg);
      }

      50% {
        transform: translateY(-30px) rotate(180deg);
      }
    }

    @keyframes float2 {

      0%,
      100% {
        transform: translateY(0) translateX(0);
      }

      50% {
        transform: translateY(-20px) translateX(15px);
      }
    }

    @keyframes float3 {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-40px);
      }
    }

    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 820px;
      padding: 0 24px;
    }

    .hero-hosted-by {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 40px;
      padding: 8px 20px;
      margin-bottom: 32px;
      font-size: 13px;
      font-weight: 600;
      color: var(--gold-light);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      animation: fadeInDown 0.8s ease-out;
    }

    .hero h1 {
      font-family: "Playfair Display", serif;
      font-size: clamp(48px, 8vw, 96px);
      font-weight: 900;
      color: #fff;
      line-height: 1.05;
      margin-bottom: 24px;
      animation: fadeInUp 1s ease-out;
    }

    .hero h1 em {
      font-style: italic;
      color: var(--gold-light);
    }

    .hero-sub {
      font-size: 20px;
      color: rgba(255, 255, 255, 0.8);
      max-width: 560px;
      margin: 0 auto 16px;
      line-height: 1.7;
      animation: fadeInUp 1s ease-out 0.2s both;
    }

    .hero-details {
      display: flex;
      justify-content: center;
      gap: 36px;
      flex-wrap: wrap;
      margin: 32px 0 40px;
      animation: fadeInUp 1s ease-out 0.35s both;
    }

    .hero-detail {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255, 255, 255, 0.9);
      font-size: 15px;
      font-weight: 500;
    }

    .hero-detail svg {
      flex-shrink: 0;
    }

    .hero-detail a {
      color: rgba(255, 255, 255, 0.9);
      text-decoration: none;
      transition: color 0.2s;
    }

    .hero-detail a:hover {
      color: var(--gold-light);
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .hero-cta-group {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeInUp 1s ease-out 0.5s both;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 16px 36px;
      border-radius: 6px;
      font-size: 15px;
      font-weight: 700;
      text-decoration: none;
      letter-spacing: 0.5px;
      transition: all 0.3s;
      cursor: pointer;
      border: none;
      font-family: "DM Sans", sans-serif;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--charcoal);
    }

    .btn-primary:hover {
      background: var(--gold-light);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(212, 168, 67, 0.3);
    }

    .btn-secondary {
      background: transparent;
      color: #fff;
      border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .btn-secondary:hover {
      border-color: rgba(255, 255, 255, 0.6);
      transform: translateY(-2px);
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeInDown {
      from {
        opacity: 0;
        transform: translateY(-20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    section {
      padding: 100px 24px;
    }

    .container {
      max-width: 1080px;
      margin: 0 auto;
    }

    .section-label {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--emerald);
      margin-bottom: 12px;
    }

    .section-title {
      font-family: "Playfair Display", serif;
      font-size: clamp(32px, 5vw, 48px);
      font-weight: 900;
      color: var(--charcoal);
      line-height: 1.15;
      margin-bottom: 20px;
    }

    .section-subtitle {
      font-size: 18px;
      color: var(--warm-gray);
      max-width: 600px;
      line-height: 1.7;
    }

    .about {
      background: #fff;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      margin-top: 56px;
    }

    .stat-card {
      background: var(--cream);
      border-radius: 12px;
      padding: 32px;
      text-align: center;
    }

    .stat-number {
      font-family: "Playfair Display", serif;
      font-size: 48px;
      font-weight: 900;
      color: var(--emerald);
      line-height: 1;
      margin-bottom: 8px;
    }

    .stat-label {
      font-size: 14px;
      color: var(--warm-gray);
      font-weight: 500;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .about-text p {
      font-size: 17px;
      color: var(--warm-gray);
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .founders {
      background: var(--emerald-dark);
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .founders::before {
      content: "";
      position: absolute;
      top: -100px;
      right: -100px;
      width: 400px;
      height: 400px;
      border-radius: 50%;
      background: rgba(212, 168, 67, 0.06);
    }

    .founders .section-label {
      color: var(--gold-light);
    }

    .founders .section-title {
      color: #fff;
    }

    .founders .section-subtitle {
      color: rgba(255, 255, 255, 0.7);
    }

    .founders-cards {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      margin-top: 56px;
    }

    .founder-card {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 16px;
      padding: 40px;
      transition:
        transform 0.3s,
        box-shadow 0.3s;
    }

    .founder-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .founder-avatar {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: "Playfair Display", serif;
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .founder-avatar.raj {
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      color: var(--charcoal);
    }

    .founder-avatar.sunanda {
      background: linear-gradient(135deg, #6bb89c, #2d8f65);
      color: #fff;
    }

    .founder-name {
      font-family: "Playfair Display", serif;
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .founder-role {
      color: var(--gold-light);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.5px;
      margin-bottom: 16px;
    }

    .founder-bio {
      color: rgba(255, 255, 255, 0.75);
      font-size: 15px;
      line-height: 1.8;
    }

    .format {
      background: var(--cream);
    }

    .timeline {
      margin-top: 56px;
      position: relative;
    }

    .timeline::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 2px;
      background: var(--emerald);
      opacity: 0.15;
    }

    .timeline-item {
      display: flex;
      align-items: center;
      gap: 40px;
      margin-bottom: 40px;
      position: relative;
    }

    .timeline-item:nth-child(odd) {
      flex-direction: row;
    }

    .timeline-item:nth-child(even) {
      flex-direction: row-reverse;
    }

    .timeline-content {
      flex: 1;
      background: #fff;
      border-radius: 16px;
      padding: 36px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
      border: 1px solid rgba(0, 0, 0, 0.04);
    }

    .timeline-dot {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: var(--emerald);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 18px;
      flex-shrink: 0;
      z-index: 1;
      box-shadow: 0 0 0 6px var(--cream);
    }

    .timeline-time {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--emerald);
      margin-bottom: 8px;
    }

    .timeline-title {
      font-family: "Playfair Display", serif;
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .timeline-desc {
      color: var(--warm-gray);
      font-size: 15px;
      line-height: 1.7;
    }

    .timeline-spacer {
      flex: 1;
    }

    .perks {
      background: #fff;
    }

    .perks-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-top: 56px;
    }

    .perk-card {
      background: var(--cream);
      border-radius: 16px;
      padding: 36px 28px;
      text-align: center;
      transition: transform 0.3s;
    }

    .perk-card:hover {
      transform: translateY(-4px);
    }

    .perk-icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: var(--emerald);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }

    .perk-title {
      font-family: "Playfair Display", serif;
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .perk-desc {
      color: var(--warm-gray);
      font-size: 14px;
      line-height: 1.7;
    }

    /* ===== SIGNUP ===== */
    .signup {
      background: linear-gradient(165deg,
          var(--emerald-dark),
          var(--emerald));
      color: #fff;
      position: relative;
      overflow: hidden;
    }

    .signup .container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    .signup::before {
      content: "";
      position: absolute;
      bottom: -200px;
      left: -200px;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: rgba(212, 168, 67, 0.05);
    }

    .signup .section-label {
      color: var(--gold-light);
    }

    .signup .section-title {
      color: #fff;
    }

    .signup .section-subtitle {
      color: rgba(255, 255, 255, 0.7);
    }

    .signup-single-card {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--gold);
      border-radius: 20px;
      padding: 48px;
      margin-top: 48px;
      max-width: 640px;
      width: 100%;
      position: relative;
      overflow: hidden;
    }

    .signup-single-card::before {
      content: "JOIN THE EVENT";
      position: absolute;
      top: 18px;
      right: -30px;
      background: var(--gold);
      color: var(--charcoal);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.5px;
      padding: 5px 44px;
      transform: rotate(45deg);
    }

    .signup-card-heading {
      font-family: "Playfair Display", serif;
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 6px;
      color: #fff;
    }

    .signup-card-subheading {
      color: rgba(255, 255, 255, 0.65);
      font-size: 15px;
      margin-bottom: 28px;
      line-height: 1.6;
    }

    .participation-tabs {
      display: flex;
      gap: 0;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 10px;
      padding: 4px;
      margin-bottom: 28px;
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .ptab {
      flex: 1;
      padding: 12px 16px;
      border-radius: 8px;
      border: none;
      background: transparent;
      color: rgba(255, 255, 255, 0.6);
      font-size: 14px;
      font-weight: 600;
      font-family: "DM Sans", sans-serif;
      cursor: pointer;
      transition: all 0.25s;
      text-align: center;
      letter-spacing: 0.3px;
    }

    .ptab.active {
      background: var(--gold);
      color: var(--charcoal);
      box-shadow: 0 2px 10px rgba(212, 168, 67, 0.3);
    }

    .donation-badge {
      display: flex;
      align-items: center;
      gap: 12px;
      background: rgba(212, 168, 67, 0.12);
      border: 1px solid rgba(212, 168, 67, 0.3);
      border-radius: 10px;
      padding: 14px 18px;
      margin-bottom: 24px;
    }

    .donation-badge .amount {
      font-family: "Playfair Display", serif;
      font-size: 28px;
      font-weight: 900;
      color: var(--gold-light);
      line-height: 1;
    }

    .donation-badge .donation-text {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.5;
    }

    .donation-badge .donation-text strong {
      color: rgba(255, 255, 255, 0.95);
      display: block;
      font-size: 14px;
      margin-bottom: 2px;
    }

    .signup-perks {
      list-style: none;
      margin: 0 0 28px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px 24px;
    }

    .signup-perks li {
      padding: 6px 0;
      font-size: 14px;
      color: rgba(255, 255, 255, 0.8);
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .signup-perks li svg {
      flex-shrink: 0;
      color: var(--gold-light);
    }

    .step {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 20px;
    }

    .step-num {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--gold);
      color: var(--charcoal);
      font-size: 13px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .step-content {
      flex: 1;
    }

    .step-title {
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 2px;
    }

    .step-desc {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.6);
      line-height: 1.5;
    }

    .step-action-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 10px;
      padding: 10px 20px;
      border-radius: 6px;
      font-size: 14px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.3s;
      cursor: pointer;
      border: none;
      font-family: "DM Sans", sans-serif;
      background: var(--gold);
      color: var(--charcoal);
    }

    .step-action-btn:hover {
      background: var(--gold-light);
      transform: translateY(-1px);
    }

    .form-note {
      margin-top: 20px;
      font-size: 13px;
      color: rgba(255, 255, 255, 0.45);
      text-align: center;
    }

    /* ===== GOOGLE FORM EMBED ===== */
    .gform-wrap {
      margin-top: 12px;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.04);
    }

    .gform-wrap iframe {
      display: block;
      width: 100%;
      border: none;
      border-radius: 10px;
    }

    .gform-confirm-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 12px;
    }

    .gform-confirm-row input[type="checkbox"] {
      width: 18px;
      height: 18px;
      accent-color: var(--gold);
      flex-shrink: 0;
      cursor: pointer;
    }

    .gform-confirm-row label {
      font-size: 13px;
      color: rgba(255, 255, 255, 0.7);
      cursor: pointer;
      line-height: 1.5;
    }

    .gform-confirm-row label a {
      color: var(--gold-light);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .step-action-btn:disabled,
    .step-action-btn[disabled] {
      opacity: 0.4;
      cursor: not-allowed;
      pointer-events: none;
      transform: none !important;
    }

    /* ===== THANK YOU OVERLAY ===== */
    .ty-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 200;
      background: linear-gradient(165deg,
          var(--emerald-dark) 0%,
          var(--emerald) 50%,
          var(--emerald-light) 100%);
      align-items: center;
      justify-content: center;
      padding: 24px;
      overflow-y: auto;
    }

    .ty-overlay.open {
      display: flex;
    }

    /* Floating balls in overlay */
    .ty-ball {
      position: fixed;
      border-radius: 50%;
      background: #c8d930;
      pointer-events: none;
    }

    .ty-ball-1 {
      width: 80px;
      height: 80px;
      top: 8%;
      left: 5%;
      opacity: 0.12;
      animation: fl1 9s ease-in-out infinite;
    }

    .ty-ball-2 {
      width: 50px;
      height: 50px;
      bottom: 12%;
      right: 8%;
      opacity: 0.12;
      animation: fl2 11s ease-in-out infinite;
    }

    .ty-ball-3 {
      width: 30px;
      height: 30px;
      top: 50%;
      left: 88%;
      opacity: 0.08;
      animation: fl3 7s ease-in-out infinite;
    }

    .confetti-wrap {
      position: fixed;
      inset: 0;
      pointer-events: none;
      overflow: hidden;
      z-index: 201;
    }

    .confetti-piece {
      position: absolute;
      top: -20px;
      opacity: 0;
      animation: confettiFall linear forwards;
    }

    @keyframes confettiFall {
      0% {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
      }

      100% {
        opacity: 0;
        transform: translateY(110vh) rotate(720deg);
      }
    }

    .ty-card {
      position: relative;
      z-index: 202;
      background: #fff;
      border-radius: 28px;
      padding: 60px 52px;
      max-width: 520px;
      width: 100%;
      text-align: center;
      box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
      animation: cardIn 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    }

    @keyframes cardIn {
      from {
        opacity: 0;
        transform: scale(0.8) translateY(40px);
      }

      to {
        opacity: 1;
        transform: scale(1) translateY(0);
      }
    }

    .ty-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 6px;
      background: linear-gradient(90deg,
          var(--emerald),
          var(--gold),
          var(--emerald-light));
      border-radius: 28px 28px 0 0;
    }

    .ty-check-wrap {
      width: 96px;
      height: 96px;
      border-radius: 50%;
      background: linear-gradient(135deg,
          var(--emerald),
          var(--emerald-light));
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
      box-shadow: 0 12px 32px rgba(26, 107, 74, 0.35);
      animation: checkPop 0.6s 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    }

    @keyframes checkPop {
      from {
        opacity: 0;
        transform: scale(0) rotate(-90deg);
      }

      to {
        opacity: 1;
        transform: scale(1) rotate(0);
      }
    }

    .ty-check-wrap svg {
      color: #fff;
    }

    .ty-emoji {
      font-size: 36px;
      margin-bottom: 4px;
      animation: fadeSlide 0.5s 0.5s both;
    }

    @keyframes fadeSlide {
      from {
        opacity: 0;
        transform: translateY(10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .ty-card h1 {
      font-family: "Playfair Display", serif;
      font-size: 36px;
      font-weight: 900;
      color: var(--charcoal);
      margin-bottom: 14px;
      animation: fadeSlide 0.5s 0.6s both;
    }

    .ty-subtitle {
      font-size: 16px;
      color: var(--warm-gray);
      line-height: 1.75;
      margin-bottom: 28px;
      animation: fadeSlide 0.5s 0.7s both;
    }

    .ty-subtitle strong {
      color: var(--charcoal);
    }

    .ty-event-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--cream);
      border-radius: 40px;
      padding: 12px 22px;
      font-size: 14px;
      font-weight: 600;
      color: var(--emerald);
      margin-bottom: 32px;
      animation: fadeSlide 0.5s 0.8s both;
    }

    .ty-info-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 32px;
      animation: fadeSlide 0.5s 0.9s both;
    }

    .ty-info-box {
      background: var(--cream);
      border-radius: 14px;
      padding: 18px 14px;
      text-align: center;
    }

    .ty-info-box .ib-icon {
      font-size: 22px;
      margin-bottom: 6px;
    }

    .ty-info-box .ib-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #999;
      margin-bottom: 4px;
    }

    .ty-info-box .ib-val {
      font-size: 14px;
      font-weight: 600;
      color: var(--charcoal);
      line-height: 1.4;
    }

    .ty-donation-confirmed {
      display: flex;
      align-items: center;
      gap: 12px;
      background: rgba(26, 107, 74, 0.07);
      border: 1px solid rgba(26, 107, 74, 0.2);
      border-radius: 12px;
      padding: 14px 18px;
      margin-bottom: 28px;
      text-align: left;
      animation: fadeSlide 0.5s 1s both;
    }

    .ty-dc-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--emerald);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .ty-dc-text {
      font-size: 13px;
      color: var(--warm-gray);
      line-height: 1.5;
    }

    .ty-dc-text strong {
      color: var(--charcoal);
      display: block;
      font-size: 14px;
      margin-bottom: 2px;
    }

    .ty-lahi-btn {
      display: block;
      width: 100%;
      padding: 16px;
      border-radius: 12px;
      background: transparent;
      border: 1.5px solid #ddd;
      color: var(--warm-gray);
      font-size: 15px;
      font-weight: 700;
      text-decoration: none;
      transition: all 0.3s;
      margin-bottom: 12px;
      text-align: center;
      animation: fadeSlide 0.5s 1.1s both;
    }

    .ty-lahi-btn:hover {
      border-color: var(--emerald);
      color: var(--emerald);
    }

    .ty-fine-print {
      font-size: 12px;
      color: #bbb;
      margin-top: 20px;
      line-height: 1.6;
      animation: fadeSlide 0.5s 1.2s both;
    }

    .ty-fine-print a {
      color: var(--emerald);
      text-decoration: none;
    }

    /* attend-only thank you (no donation box) */
    .ty-attend-note {
      display: flex;
      align-items: center;
      gap: 12px;
      background: rgba(26, 107, 74, 0.07);
      border: 1px solid rgba(26, 107, 74, 0.2);
      border-radius: 12px;
      padding: 14px 18px;
      margin-bottom: 28px;
      text-align: left;
      animation: fadeSlide 0.5s 1s both;
    }

    @media (max-width: 540px) {
      .ty-card {
        padding: 40px 24px;
      }

      .ty-card h1 {
        font-size: 28px;
      }

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

    footer {
      background: var(--charcoal);
      color: rgba(255, 255, 255, 0.5);
      padding: 48px 24px;
      text-align: center;
      font-size: 14px;
    }

    footer a {
      color: var(--gold-light);
      text-decoration: none;
    }

    footer a:hover {
      text-decoration: underline;
    }

    .footer-logos {
      display: flex;
      justify-content: center;
      gap: 40px;
      align-items: center;
      margin-bottom: 24px;
    }

    .footer-logos span {
      font-family: "Playfair Display", serif;
      font-size: 16px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.7);
    }

    .footer-divider {
      color: rgba(255, 255, 255, 0.2);
      font-size: 20px;
    }

    @media (max-width: 800px) {
      nav {
        padding: 12px 20px;
      }

      .nav-links a:not(.nav-cta) {
        display: none;
      }

      .about-grid,
      .founders-cards,
      .perks-grid,
      .signup-perks,
      .stats-grid {
        grid-template-columns: 1fr;
      }

      .about-grid {
        gap: 40px;
      }

      .founders-cards {
        gap: 24px;
      }

      .timeline::before {
        left: 24px;
      }

      .timeline-item,
      .timeline-item:nth-child(even) {
        flex-direction: row;
      }

      .timeline-spacer {
        display: none;
      }

      .timeline-dot {
        width: 40px;
        height: 40px;
        font-size: 16px;
      }

      .hero-details {
        gap: 20px;
      }

      .hero-detail {
        font-size: 13px;
      }

      .signup-single-card {
        padding: 32px 20px;
      }

      .participation-tabs {
        flex-direction: column;
      }

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