.company-page {
    background: #000;
    color: #fff;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

.hero-section,
.apps-section {
    max-width: 1080px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

.hero-section {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.vision-section,
.founder-section {
    max-width: 1080px;
    margin: 0 auto;
    padding: 3.5rem 1.5rem 2rem;
}

.vision-section h2,
.founder-section h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.vision-section p {
  max-width: 720px;
  font-size: clamp(1.45rem, 2vw, 1.75rem);
  line-height: 1.55;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.86);
}

.founder-section p {
  max-width: 720px;
  font-size: clamp(1.45rem, 2vw, 1.75rem);
  line-height: 1.55;
  letter-spacing: -0.03em;
  color: rgba(255,255,255,0.86);
}

.eyebrow {
    color: #98fb98;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 1.05;
    margin-bottom: 0.5rem;
}

.company-hero-text {
    max-width: 760px;

    margin-top: 3.5rem;
    padding-left: 1.5rem;

   border-left: 2px solid rgba(78, 216, 206, 0.65);

    color: #9f9f9f;

    font-size: 1.3rem;
    line-height: 1.9;

    font-weight: 400;
    letter-spacing: -0.015em;
}

.founder-card {
    background: linear-gradient(180deg, rgba(34,39,45,0.95), rgba(18,20,24,0.95));
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 28px;
    padding: 1.2rem;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 20px 50px rgba(0,0,0,0.45);
     max-width: 420px;
}


@media (max-width: 768px) {
  .founder-card {
    max-width: 450px;
    margin: 0 auto;
    padding: 14px;
    border-radius: 24px;
  }

  .founder-image {
    width: 100%;
    aspect-ratio: 1 / 1.08;
    object-fit: cover;
    border-radius: 18px;
  }

  .founder-name {
    font-size: 1.55rem;
    margin-top: 16px;
    margin-bottom: 6px;
  }

  .founder-role {
    font-size: 0.9rem;
    line-height: 1.45;
  }
}

.founder-image {
    width: 100%;
    border-radius: 22px;
    display: block;
    margin-bottom: 1rem;
}

.founder-card h2 {
    margin: 0;
    color: #4ED8CE;
    opacity:0.90;
    
}

.founder-card p {
    margin: 0.25rem 0 0;
    color: #d8d8d8;
    opacity:0.65;
}

.apps-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.app-card {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 3rem;
    padding: 2rem;
    border-radius: 32px;
    background: #101010;
    border: 1px solid rgba(255,255,255,0.08);
}

.app-visual img {
    max-width: 240px;
    width: 100%;
    display: block;
    margin: 0 auto;
}



.app-content h3 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

.app-content p {
    color: #d8d8d8;
    font-size: 1.22rem;
    max-width: 760px;
}

.app-link {
    display: inline-flex;
    margin-top: 1.5rem;
    padding: 0.85rem 1.3rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(180deg, rgba(34,39,45,0.98), rgba(18,20,24,0.98));
    border: 1px solid rgba(255,255,255,0.1);
}

.ninety-days .app-content h3,
.ninety-days .app-link {
    color: #b8f5b8;
}

.writhentic .app-content h3,
.writhentic .app-link {
    color: #4ed8ce;
}

@media (max-width: 768px) {

    .hero-section,
    .app-card {
        grid-template-columns: 1fr;
    }

    .hero-section,
    .apps-section {
        padding: 2.0rem 1.25rem;
    }

    .hero-content,
    .hero-title,
    .company-hero-text {
        text-align: left;
    }

    .company-hero-text,
    .app-content p {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
}