
/**
* @license
*
* Font Family: Clash Display
* Designed by: Indian Type Foundry
* URL: https://www.fontshare.com/fonts/clash-display
* © 2026 Indian Type Foundry
*
* Clash Display Extralight 
* Clash Display Light 
* Clash Display Regular 
* Clash Display Medium 
* Clash Display Semibold 
* Clash Display Bold 
* Clash Display Variable (Variable font)

*
*/
@font-face {
  font-family: 'ClashDisplay-Extralight';
  src: url('fonts/ClashDisplay-Extralight.woff2') format('woff2'),
       url('fonts/ClashDisplay-Extralight.woff') format('woff'),
       url('fonts/ClashDisplay-Extralight.ttf') format('truetype');
  font-weight: 200;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'ClashDisplay-Light';
  src: url('fonts/ClashDisplay-Light.woff2') format('woff2'),
       url('fonts/ClashDisplay-Light.woff') format('woff'),
       url('fonts/ClashDisplay-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'ClashDisplay-Regular';
  src: url('fonts/ClashDisplay-Regular.woff2') format('woff2'),
       url('fonts/ClashDisplay-Regular.woff') format('woff'),
       url('fonts/ClashDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'ClashDisplay-Medium';
  src: url('fonts/ClashDisplay-Medium.woff2') format('woff2'),
       url('fonts/ClashDisplay-Medium.woff') format('woff'),
       url('fonts/ClashDisplay-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'ClashDisplay-Semibold';
  src: url('fonts/ClashDisplay-Semibold.woff2') format('woff2'),
       url('fonts/ClashDisplay-Semibold.woff') format('woff'),
       url('fonts/ClashDisplay-Semibold.ttf') format('truetype');
  font-weight: 600;
  font-display: swap;
  font-style: normal;
}
@font-face {
  font-family: 'ClashDisplay-Bold';
  src: url('fonts/ClashDisplay-Bold.woff2') format('woff2'),
       url('fonts/ClashDisplay-Bold.woff') format('woff'),
       url('fonts/ClashDisplay-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
/**
* This is a variable font
* You can control variable axes as shown below:
* font-variation-settings: wght 700.0;
*
* available axes:
'wght' (range from 200.0 to 700.0
*/
@font-face {
  font-family: 'ClashDisplay-Variable';
  src: url('fonts/ClashDisplay-Variable.woff2') format('woff2'),
       url('fonts/ClashDisplay-Variable.woff') format('woff'),
       url('fonts/ClashDisplay-Variable.ttf') format('truetype');
  font-weight: 200 700;
  font-display: swap;
  font-style: normal;
}


    :root {
      --bg-dark: #212121;
      --text-white: #ffffff;
    }

    * {
      box-sizing: border-box;
    }

    body {
         font-family: 'Sequel Sans', 'Raleway', sans-serif;
      background-color: var(--bg-dark);
      color: var(--text-white);
      margin: 0;
      min-height: 100vh;
      overflow-x: hidden;
    }

    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 2rem 1.5rem 3rem;
    }

    .hero-content {
      text-align: center;
    font-family: ClashDisplay-Bold, 'Sequel Sans', 'Raleway', sans-serif;
    font-size: 32px;
      line-height: 150%;
      font-weight: 500;
    }

    .hero h1 {
font-family: ClashDisplay-Bold, 'Sequel Sans', 'Raleway', sans-serif;
font-size: 48px;
      font-weight: 500;
      letter-spacing: 0.02em;
      margin-bottom: 0.75rem;
    }
       .hero h2 {
      font-family: ClashDisplay-Medium, 'Sequel Sans', 'Raleway', sans-serif;
      font-size: 28px;
      font-weight: 500;
      letter-spacing: 0.02em;
    padding: 0px 0 30px 0;
    }
    
    

    .hero .tagline {
      font-family: 'Sequel Sans', 'Raleway', sans-serif;
      margin-bottom: 2rem;
      opacity: 0.95;
      font-weight:500;
    }

    .hero .lead {
      margin-bottom: 1.25rem;
      opacity: 0.9;
      font-size: 20px;
    line-height: 150%;
 font-family: "Epilogue", sans-serif;
  font-optical-sizing: auto;
    }

    .hero .lead:last-of-type {
      margin-bottom: 2rem;
    }

    .hero .cta-link {
    color: var(--text-white);
    text-decoration: underline;
    text-underline-offset: 4px;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: opacity 0.2s;
 font-family: "Epilogue", sans-serif;
  font-optical-sizing: auto;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
    }

    .hero .cta-link:hover {
      color: var(--text-white);
      opacity: 0.85;
    }