<style>

  @font-face {
    font-family: 'Work Sans';
    src: url('../fonts/Work_Sans/WorkSans-ExtraLight.ttf') format('truetype');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Work Sans';
    src: url('../fonts/Work_Sans/WorkSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Work Sans';
    src: url('../fonts/Work_Sans/WorkSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }

  @font-face {
    font-family: 'Work Sans';
    src: url('../fonts/Work_Sans/WorkSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }

  :root {
    --bg: #141E32;
    --bg-soft: #141E32;
    --text: #ffffff;
    --muted: #fff;
    --accent: #F0FF02;
    --line: #273041;
  }

  * { box-sizing: border-box; }

  body {
    margin: 0;
    font-family: "Work Sans", sans-serif;
    background: var(--bg);
    color: var(--text);
  }

  .container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 80px 64px 0;
  }

  /* HERO */
  .hero {
    display: grid;
    grid-template-columns: 1.7fr 0.3fr;
    gap: 80px;
    align-items: center;
  }

  .logo img {
    width: 260px;
    height: auto;
    margin-bottom: 20px;
  }

  .tagline {
    font-size: 13px;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: 48px;
  }

  .hero h1 {
    font-size: 40px;
    font-weight: 200;
    line-height: 1.2;
    max-width: 800px;
  }

  .tree {
    height: 300px;
    position: relative;
  }

  /* PILLARS */
  .pillars {
    margin-top: 48px;
    border-top: 20px solid var(--line);
    padding-left: 20px;
    padding-right: 20px;
    background: #273041;
    border-bottom: 2px solid #fff;
  }

  .pillars-grid {
    display: grid;
    grid-template-columns: 0.98fr 0.04fr 0.98fr;
  }

  .pillar {
    padding: 40px;
    background: var(--bg);
    border-bottom: 2px solid #fff;
  }

  .pillar:last-child { border-right: none; }

  .pillar h3 {
    font-size: 24px;
    letter-spacing: 0px;
    color: var(--accent);
    margin-bottom: 16px;
  }

  .pillar p {
    font-size: 18px;
    line-height: 150%;;
    color: var(--muted);
  }

  .club {
    border-top: 2px solid var(--line);
    text-align: center;
    padding: 20px;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 0px;
    color: var(--accent);
  }

  /* PORTFOLIO */
  .portfolio {
    margin-top: 120px;
  }

  .portfolio h2 {
    font-size: 40px;
    font-weight: 200;
    margin-bottom: 20px;
  }

  .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .card img {
    width:100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* FOOTER */
  footer {
    max-width: 1320px;
    margin: 0 auto;
    padding: 50px 64px;
    margin-top: 120px;
    border-top:  solid var(--line);
    font-size: 18px;
    font-weight:400;
    line-height: 150%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }

  .icon-logo {
    width:70px;
    height: auto;
    display: block;
    margin-bottom:15px;
  }

  /* RESPONSIVE */
  @media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; }
    .pillars-grid { grid-template-columns: 1fr; }
    .pillar { border-right: none; border-bottom: 2px solid #fff; }
    .grid { grid-template-columns: repeat(2, 1fr); }
    footer { grid-template-columns: 1fr; }
    .logo img { width: 200px; }
    .tree { margin-top: -40px; margin-bottom: 20px; }
  }

  @media (max-width: 600px) {
    .container { padding: 64px 24px 0; }
    .hero h1, .portfolio h2 { font-size: 26px; }
    .grid { grid-template-columns: 1fr; }
    footer { padding: 40px 24px; }
  }
</style>
