<!DOCTYPE html>

<html lang="en">

<head>

  <meta charset="UTF-8" />

  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>

  <title>Evergreen Flow — Timeless Digital Experiences</title>

  <meta name="description" content="Evergreen Flow is a digital ecosystem of timeless music and visual channels designed for relaxation, focus and immersive ambient experiences." />

  <style>

    :root {

      --bg-dark: #0e1412;

      --bg-card: #151c19;

      --green: #5fa38b;

      --blue: #4a7fa3;

      --text-main: #e8f0ec;

      --text-soft: #b9c9c1;

    }

    * {

      margin: 0;

      padding: 0;

      box-sizing: border-box;

      font-family: "Inter", system-ui, sans-serif;

    }

    body {

      background: linear-gradient(180deg, #0e1412, #0c1a20);

      color: var(--text-main);

      line-height: 1.6;

    }

    a {

      color: inherit;

      text-decoration: none;

    }

    section {

      padding: 80px 8%;

    }

    /* HERO */

    .hero {

      min-height: 100vh;

      display: flex;

      flex-direction: column;

      justify-content: center;

      align-items: center;

      text-align: center;

    }

    .hero h1 {

      font-size: clamp(2.5rem, 5vw, 4rem);

      font-weight: 600;

      margin-bottom: 10px;

    }

    .hero h2 {

      font-size: 1.2rem;

      color: var(--text-soft);

      margin-bottom: 25px;

    }

    .hero p {

      color: var(--text-soft);

      margin-bottom: 40px;

    }

    .btn {

      padding: 14px 32px;

      border-radius: 30px;

      background: linear-gradient(90deg, var(--green), var(--blue));

      color: #0e1412;

      font-weight: 600;

      transition: all 0.3s ease;

    }

    .btn:hover {

      transform: scale(1.05);

      box-shadow: 0 0 20px rgba(90,160,140,0.4);

    }

    /* CHANNELS */

    .channels {

      background: #0c1513;

    }

    .channels h3 {

      text-align: center;

      font-size: 2rem;

      margin-bottom: 50px;

    }

    .grid {

      display: grid;

      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

      gap: 30px;

    }

    .card {

      background: var(--bg-card);

      border-radius: 20px;

      padding: 30px;

      text-align: center;

      transition: all 0.3s ease;

    }

    .card:hover {

      transform: translateY(-6px);

      box-shadow: 0 20px 40px rgba(0,0,0,0.4);

    }

    .card h4 {

      margin-bottom: 10px;

      font-size: 1.2rem;

    }

    .card p {

      font-size: 0.95rem;

      color: var(--text-soft);

      margin-bottom: 20px;

    }

    .card a {

      font-size: 0.9rem;

      color: var(--green);

      font-weight: 600;

    }

    /* ABOUT */

    .about {

      text-align: center;

      max-width: 900px;

      margin: auto;

    }

    .about p {

      color: var(--text-soft);

      font-size: 1.05rem;

    }

    /* CONTACT */

    .contact {

      text-align: center;

      background: #0b1311;

    }

    .contact h3 {

      font-size: 2rem;

      margin-bottom: 20px;

    }

    .contact a {

      font-size: 1.1rem;

      color: var(--green);

      font-weight: 600;

    }

    footer {

      text-align: center;

      padding: 40px;

      font-size: 0.85rem;

      color: var(--text-soft);

    }

  </style>

</head>

<body>

  <!-- HERO -->

  <section class="hero">

    <h1>Evergreen Flow</h1>

    <h2>Timeless Digital Experiences</h2>

    <p>Music · Video · Ambient Loops</p>

    <a href="#channels" class="btn">Explore Our Channels</a>

  </section>

  <!-- CHANNELS -->

  <section class="channels" id="channels">

    <h3>Our Channels</h3>

    <div class="grid">

      <div class="card">

        <h4>Relax Total 4K</h4>

        <p>Deep relaxation music & ambient visuals in 4K.</p>

        <a href="https://www.youtube.com/@RelaxTotal4K" target="_blank">Visit Channel</a>

      </div>

      <div class="card">

        <h4>Calm Paws Music</h4>

        <p>Music designed for pets and animal lovers.</p>

        <a href="https://www.youtube.com/@CalmPawsMusicTV" target="_blank">Visit Channel</a>

      </div>

      <div class="card">

        <h4>NatureFlow</h4>

        <p>Nature-inspired soundscapes and immersive visuals.</p>

        <a href="https://www.youtube.com/@NatureFlowMedia" target="_blank">Visit Channel</a>

      </div>

      <div class="card">

        <h4>Silent Harmony 4K</h4>

        <p>Minimal sound, calm visuals and pure silence.</p>

        <a href="https://www.youtube.com/@SilentHarmony4k" target="_blank">Visit Channel</a>

      </div>

      <div class="card">

        <h4>LoFiCalm</h4>

        <p>Lo-fi beats for focus, work and chill.</p>

        <a href="https://www.youtube.com/@LoFiCalm4k" target="_blank">Visit Channel</a>

      </div>

      <div class="card">

        <h4>Classic Techno Nights</h4>

        <p>Underground and classic techno sessions.</p>

        <a href="https://www.youtube.com/@ClassicTechnoNights" target="_blank">Visit Channel</a>

      </div>

    </div>

  </section>

  <!-- ABOUT -->

  <section class="about">

    <p>

      Evergreen Flow is a digital ecosystem creating timeless music and visual experiences.

      Our channels are designed for relaxation, focus, wellbeing and immersive ambient environments.

    </p>

  </section>

  <!-- CONTACT -->

  <section class="contact">

    <h3>Contact</h3>

    <p>For collaborations, licensing or inquiries:</p>

    <a href="mailto:hello@evergreenflow.io">hello@evergreenflow.io</a>

  </section>

  <footer>

    © 2026 Evergreen Flow — Timeless Digital Experiences

  </footer>

</body>

</html>