
  :root {
      --orange: #ff6c00;
      --green: #30b977;
      --text: #22252a;
      --card-bg: #e7e5e1;
  }
  html, body {
      margin: 0; padding: 0;
      font-family: 'Inter', Arial, sans-serif;
      background: white;
      color: var(--text);
  }
  a {
      color: black;
      text-decoration: none;
      font-weight: 600;
      transition: color 0.18s;
  }
  a:hover { color: var(--orange); }
  nav a:hover {
    color: white;
}
    .flex {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .box-8 {
        width: 50%;
    }

  /* NAVIGATION */
  nav {
      width: 100%;
      background: var(--orange);
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.8rem 2.5vw;
      box-sizing: border-box;
  }
  .nav-brand {
      display: flex;
      align-items: center;
      font-weight: 700;
      font-size: 1.2rem;
      letter-spacing: 1px;
  }
  .nav-brand img {
      margin-right: 1rem;
      display: inline-block;
  }
  nav ul {
      list-style: none;
      display: flex;
      gap: 2.3rem;
      margin: 0;
      padding: 0;
  }
  nav ul li {
      font-size: 1rem;
      font-weight: 500;
  }
  h1 {
      font-size: 2em;
      color: white;
      margin: 20px 2rem 20px 0;
  }
  h2 {
      font-size:1.5rem;
      color:var(--basic);
      margin-bottom:1.3rem;
      margin-top:4.5em;
  }
  h1 span {
      color: black;
  }
  h2 span {
      color: var(--orange);
  }
  /* HERO */
  .hero {
      padding: 3.7rem 0 2.6rem 0;
      background: var(--orange);
  }
  .hero-title {
      font-size: 2.35rem;
      font-weight: 700;
      margin-bottom: 0.8rem;
      letter-spacing: -1px;
  }
  .hero-subtitle {
      font-size: 1.18rem;
      font-weight: 400;
      margin: 20px 0;
      max-width: 520px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
  }
  .hero-action {
      margin-top: 1.7rem;
      display: flex;
      gap: 1.2rem;
  }
  .btn {
      padding: 0.9em 2.1em;
      font-size: 1.13em;
      font-weight: 600;
      background: white;
      color: black;
      letter-spacing: 0.5px;
      cursor: pointer;
      outline: none;
      border: solid 1px transparent;
      transition: background 0.15s, color 0.15s;
  }
  .btn.secondary {
      background: #000000;
      color: #fff;
  }
  .btn:hover {
    background: var(--green);
    border-color: rgb(255 255 255 / 50%);
    color: white;
  }
  .btn:hover:before, .btn.secondary:before {
    color: white;
  }
  .btn:before {
    color: black;
  }

  /* MAIN CONTENT */
  main {
      max-width: 1020px;
      margin: 0 auto;
      padding: 0 1.5rem 2.5rem 1.5rem;
  }
  main a:before {
    content: "\27F6";
    color: var(--orange);
    margin-right: 5px;
  }

  /* FEATURE CARDS */
  .features {
    display: flex;
    flex-wrap: wrap;
    gap: 2.4rem;
    justify-content: space-between;
    margin-bottom: 2.7rem;
  }
  .feature-card {
    background: var(--card-bg);
    flex: 1 1 24%;
    padding: 2.1em;
    margin: 0;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .feature-title {
      font-size: 1.18em;
      font-weight: 700;
      margin-bottom: 0.6em;
      color: var(--basic);
      letter-spacing: -0.5px;
  }
  .feature-desc {
      font-size: 1em;
      color: var(--text-light);
      flex: 1 1 auto;
      line-height: 1.6;
  }

  /* DOCUMENTATION LINKS */
  .docs-list {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem 1.5em;
      margin: 1.1em 0 2.3em 0;
      padding: 0;
      list-style: none;
  }
  .docs-list li {
      font-size: 1.05em;
  }

  /* LIVE UPDATES */
  .updates {
      background: var(--card-bg);
      box-shadow: var(--shadow);
      border: 1px solid var(--border);
      margin-bottom: 1.8em;
      padding: 1.2em 1.3em;
      border-radius: 0;
  }
  .updates strong { color: var(--orange);}
  .updates a { color: var(--basic); }
  .updates a:hover { color: var(--green); }
  .updates div {
    display: flex;
    margin-bottom: 5px;
    padding: 5px;
    border-bottom: solid 1px rgb(255 255 255 / 80%);
  }
  .updates strong {
    flex: 0 0 83px;
    padding-left: 17px;
  }
  .updates span {
    flex: 0 0 117px;
  }
  .updates div:last-child {
    border: 0;
  }

  /* FOOTER */
  footer {
      background: #f8f8f8;
      color: var(--text-light);
      text-align: center;
      padding: 2.2em 1em 1.3em 1em;
      font-size: 1em;
      border-top: 1px solid var(--border);
      margin-top: 2rem;
      letter-spacing: 0.01em;
  }
  footer a { color: var(--basic); text-decoration: underline; }
  footer a:hover { color: var(--orange); }


  /* RESPONSIVE */
  @media (max-width: 1000px) {
      main { padding: 2em 0.5em; }
      .features { gap: 1.3rem; }
      .feature-card { min-width: 160px; }
  }
  @media (max-width: 700px) {
      nav  { flex-direction: column; gap: 0.7rem; align-items: flex-start; }
      nav ul {gap: 2.3rem 1em;}
      .features { flex-direction: column; align-items: stretch; }
      .feature-card { max-width: 100%; }
      .flex {flex-direction: column;}
      .box-8 {width: 100%}
      .updates div {flex-wrap: wrap;}
      .updates div a {flex: 0 0 100%;padding-top: 5px;}
      .updates strong {padding-left: 0;flex: 0 0 60px;}
  }
  @media (max-width: 460px) {
      .hero-title { font-size: 1.17rem;}
      main {padding: 1em 1em;}
      .hero { padding: 2rem 0 1rem 0;}
      .btn {padding: 1em 0.8em 1em 0.2em;}
      
  }
