@font-face { 
      font-family: Hiragino Kaku Gothic Std;
      src: url(../assets/Hiragino_Kaku_Gothic_Std_W8.otf) format("opentype");
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    :root {
      --color-yellow: #FFD166;
      --color-green: #06D6A0;
      --color-purple: #A78BFA;
      --color-dark: #1F2937;
      --color-ltgrey: #AEAEAE;
      --color-text: #374151;
      --color-white: #FFFFFF;
      --font-family:  'Inter', sans-serif;
    }

    .hidden {
      display: none;
    }

    h1, h2, h3 {
      font-family: 'Hiragino Kaku Gothic Std', sans-serif;
      font-weight: 800;
    }

    .page h1, .page h2, .page h3 {
      margin-bottom: 10px; 
    }

    .page h3 {
      color: var(--color-green);
      font-size: large;
    }

    .legal h3, .legal h2, .legal h1 {
        font-family: sans-serif;
        font-weight: 200;
        color: black;
        margin-top: 30px;
    }

    .page a {
        color: var(--color-green);
        text-decoration: underline;
    }

    .blog-content a:hover {
        color: var(--color-purple);
    }

    p {
      font-weight: 300; 
      line-height: 1.5;
      margin-bottom: 20px;
    }

    li {
      margin-bottom: 10px;
      font-weight: 300;;
    }

    strong {
      font-weight: 800;
    }

    body {
      font-family: var(--font-family);
      color: var(--color-text);
      line-height: 1.6;
      
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;

    }

    /* Header */
    header {
      padding: 40px 0 0;
    }

    .logo {
      height: 120px;
      width: auto;
   
    }


    /* Hero Section */
    .hero {
      padding: 0px 0 60px;
      line-height: 1.1;
    }

    .hero-content {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .intro-text {
      display: block;
      font-size: clamp(2rem, 5vw, 4rem);
      color: var(--color-yellow);
    }

    .main-heading {
      display: block;
      font-size: clamp(2rem, 5vw, 4rem);
      color: var(--color-green);
    }

    .app-store-badge {
      display: inline-block;
      margin-top: 50px;
    }

    .app-store-badge img {
      height: 60px;
      width: auto;
    }

    .adhd-page .hero-image {
      text-align: right;
      overflow: hidden;
      position: absolute;
      top: 100px;
      right: 0;
    }

    .hero-image img {
      max-width: 200%;
      height: auto;

    }

    /* Intentional Section */
    .intentional-section {
      background: linear-gradient(180deg, var(--color-green) 0%, #05C794 100%);
      color: var(--color-white);
      padding: 140px 0;
      position: relative;
      clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
      margin: -40px 0;
    }

    .intentional-section h2 {
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 800;
      line-height: 1.4;
      text-align: center;
      display: block;
      max-width: 700px; 
      margin: 0 auto 30px;
      
    }

    .subtitle {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 40px;
      font-size: 1.1rem;
    }

    .features {
      margin: 0 auto; 
      text-align: center;
      max-width: 500px; 
    }

    .feature-list li {
      list-style: none;
      margin: 5px auto; 
    }

    .feature-list li::before {
      content: "✓ ";
      color: var(--color-white);
    }

    .feature-item {
      background: rgba(255, 255, 255, 0.1);
      padding: 25px;
      border-radius: 12px;
    }

    .feature-item strong {
      display: block;
      font-size: 1.1rem;
      margin-bottom: 10px;
    }

    .testimonial {
      display: flex;
      gap: 20px;
      align-items: start;
      max-width: 700px;
      margin: 40px auto;
      background: rgba(255, 255, 255, 0.1);
      padding: 25px;
      border-radius: 12px;
    }

    .testimonial-avatar {
      border-radius: 50%;
      flex-shrink: 0;
    }

    .testimonial blockquote {
      font-style: italic;
    }

    .intentional-section .app-store-badge {
      display: block;
      text-align: center;
      margin-top: 40px;
    }

    /* Patterns Section */
    .patterns-section {
      padding: 80px 0;
    }

    .patterns-title,
    .growth-title {
      display: block;
      
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 800;
      line-height: 1.4;
      text-align: center;
    }

    .patterns-title {
      color: var(--color-purple);
    }

    .growth-title {
      color: var(--color-green);
    }

    .coming-soon-badge {
      background: var(--color-green);
      color: var(--color-white);
      display: inline-block;
      padding: 8px 20px;
      border-radius: 20px;
      font-weight: 600;
      margin: 30px 0;
      text-align: center;
      width: 100%;
      max-width: 200px;
      margin-left: auto;
      margin-right: auto;
      display: block;
    }

    .patterns-description {
      max-width: 800px;
      margin: 20px auto;
      text-align: center;
      font-size: 1.05rem;
    }

    /* Privacy Section */
    .privacy-section {
      background: linear-gradient(180deg, var(--color-purple) 0%, #8B5CF6 100%);
      color: var(--color-white);
      padding: 80px 0;
      position: relative;
      clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
      margin-top: -40px;
    }

    .privacy-title,
    .privacy-subtitle {
      display: block;
      font-size: clamp(2rem, 5vw, 3rem);
      font-weight: 800;
      line-height: 1.4;
      text-align: center;
    }

    .privacy-description {
      text-align: center;
      max-width: 700px;
      margin: 30px auto;
      font-size: 1.1rem;
    }

    .privacy-list {
      list-style: none;
      max-width: 600px;
      margin: 30px auto;
      text-align: center;
    }

    .privacy-list li {
      margin: 15px 0;
      font-size: 1.05rem;
    }

    .privacy-section .app-store-badge {
      display: block;
      text-align: center;
      margin-top: 40px;
    }

    /* About Section */
    .about-section {
      padding: 80px 0 40px; ;
    }

    .about-section h3 {
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .about-section p {
      max-width: 800px;
      margin-bottom: 20px;
      line-height: 1.8;
    }

    /* Footer */
    footer {
      color: var(--color-ltgrey);
      background: var(--color-white);
      padding: 20px 0 30px;
    }

    footer nav {
      display: flex;
      gap: 30px;
      justify-content: left;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }

    footer a {
      color: var(--color-ltgrey);
      text-decoration: none;
      transition: opacity 0.2s;
    }

    footer a:hover,
    footer a:focus {
      opacity: 0.7;
      text-decoration: underline;
    }

    .copyright {
      text-align: center;
      opacity: 0.7;
      font-size: 0.9rem;
    }

    /* BLOG */

     .blog-post {
        padding: 20px 0 0;
      }

      .blog-container {
        max-width: 720px;
        margin: 0 auto;
        padding: 0 20px;
      }

      .blog-header {
        margin-bottom: 40px;
      }

      .blog-header h1 {
        font-size: clamp(2rem, 5vw, 2.8rem);
        color: var(--color-green);
        line-height: 1.2;
        margin-bottom: 16px;
      }

      .blog-meta {
        color: var(--color-ltgrey);
        font-size: 0.95rem;
        margin-bottom: 0;
      }

      .blog-author {
        font-weight: 600;
        color: var(--color-text);
      }

      .blog-author-bio {
        display: block;
        margin-top: 8px;
        font-size: 0.9rem;
        color: var(--color-ltgrey);
      }

      .blog-content {
        font-size: 1.08rem;
        line-height: 1.8;
      }

      .blog-content h2 {
        font-size: clamp(1.4rem, 3vw, 2.2rem);
        color: var(--color-purple);
        margin-top: 50px;
        margin-bottom: 16px;
        line-height: 1.5;
      }

      .blog-content h3 {
        font-size: 1.2rem;
        color: var(--color-green);
        margin-top: 30px;
        margin-bottom: 10px;
      }

      .blog-content p {
        margin-bottom: 20px;
      }

      .blog-content a {
        color: var(--color-green);
        text-decoration: underline;
      }

      .blog-content blockquote {
        border-left: 4px solid var(--color-purple);
        background: rgba(167, 139, 250, 0.06);
        padding: 16px 24px;
        margin: 24px 0;
        border-radius: 0 8px 8px 0;
        font-style: italic;
      }

      .blog-content blockquote p {
        margin-bottom: 0;
      }

      .blog-content ul,
      .blog-content ol {
        margin: 16px 0 24px;
        padding-left: 24px;
      }

      .blog-content li {
        margin-bottom: 10px;
        line-height: 1.7;
      }

      .blog-content strong {
        font-weight: 800;
      }

      .blog-content hr {
        border: none;
        border-top: 1px solid #e5e7eb;
        margin: 48px 0;
      }

      .blog-cta {
        background: linear-gradient(135deg, var(--color-green) 0%, #05C794 100%);
        color: var(--color-white);
        padding: 40px;
        border-radius: 16px;
        text-align: center;
        margin: 48px 0;
      }

      .blog-cta h2 {
        color: var(--color-white) !important;
        margin-top: 0 !important;
        margin-bottom: 12px;
      }

      .blog-cta p {
        opacity: 0.95;
        margin-bottom: 24px;
      }

      .blog-cta .app-store-badge {
        display: inline-block;
        margin-top: 0;
      }

      .blog-cta .app-store-badge img {
        height: 50px;
        width: auto;
      }

      @media (max-width: 768px) {
        header {
          text-align: center;
        }

        .blog-content blockquote {
          padding: 12px 16px;
        }

        .blog-cta {
          padding: 30px 20px;
        }
      }


    /* Mobile Responsive */

    @media (max-width: 1350px) {
      .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
      }

      .hero-image, .adhd-page .hero-image {
        position: relative;
        margin: -110px auto;
        z-index: -9;
        max-height: 700px; 
        top: -90px;
      }

      .hero-image img {
        max-width: 80%;
      }
      .adhd-hero .hero-image {
        margin-top: -200px;
      }
      .adhd-page .container {
        max-width: 800px;
      }
    }


    @media (max-width: 768px) {

      header {
        text-align: center;
      }
      .logo {
        height: 80px;
        margin: 20px auto;
        
      }

      .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    
      }

      .hero-image, .adhd-page .hero-image {
        position: relative;
        margin: -110px auto;
        z-index: -9;
        max-height: 500px; 
      }
    
        

      .hero-image img {
        max-width: 80%;
      }

      .intentional-section,
      .privacy-section {
        clip-path: polygon(0 2%, 100% 0, 100% 98%, 0 100%);
      }

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

      .testimonial {
        flex-direction: column;
        text-align: center;
      }

      .testimonial-avatar {
        margin: 0 auto;
      }

      footer nav {
        flex-direction: column;
        align-items: center;
        gap: 15px;
      }
    }

    @media (max-width: 768px) {
      .hero-image {
        max-height: 400px;
      }
    }

    /* Accessibility */
    a:focus,
    button:focus {
      outline: 2px solid var(--color-purple);
      outline-offset: 2px;
    }

    @media (prefers-reduced-motion: reduce) {
      * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }


    