* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #ffffff;
  color: #1d1028;
}

a {
  text-decoration: none;
  color: inherit;
}

.breathe-page {
  min-height: 100vh;
}

/* HOMEPAGE NAVIGATION */

.navbar {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 26px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f0e8f3;
}

.logo {
  font-size: 30px;
  font-weight: 700;
  background: linear-gradient(90deg, #21002e, #9b197b, #ee2c9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.navbar nav {
  display: flex;
  gap: 35px;
}

.navbar nav a {
  font-size: 15px;
  color: #4c4052;
  transition: 0.2s ease;
}

.navbar nav a:hover {
  color: #b0208d;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sign-in {
  font-size: 15px;
  font-weight: 600;
}

.join-button {
  padding: 12px 22px;
  border-radius: 10px;
  color: white;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(90deg, #371044, #a61980, #ee2c9d);
  box-shadow: 0 8px 24px rgba(166, 25, 128, 0.18);
}

/* HERO */

.hero {
  max-width: 1400px;
  margin: 0 auto;
  padding: 100px 60px 80px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 80px;
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #af208b;
}

.hero h1 {
  font-size: 72px;
  line-height: 1.05;
  letter-spacing: -3px;
  color: #21002e;
  margin-bottom: 28px;
}

.hero h1 span {
  display: block;
  background: linear-gradient(90deg, #4b075b, #b51c8f, #f238a8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  max-width: 620px;
  font-size: 19px;
  line-height: 1.7;
  color: #665a6c;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
}

.primary-button {
  color: white;
  background: linear-gradient(90deg, #371044, #a61980, #ee2c9d);
  box-shadow: 0 10px 30px rgba(166, 25, 128, 0.2);
}

.secondary-button {
  border: 1px solid #d7cbdc;
  background: #ffffff;
  color: #381143;
}

/* FEATURED STARTUP CARD */

.hero-card {
  border: 1px solid #eee5f1;
  border-radius: 24px;
  padding: 38px;
  background:
    radial-gradient(circle at top right, rgba(238, 44, 157, 0.12), transparent 40%),
    #ffffff;
  box-shadow: 0 24px 70px rgba(58, 11, 70, 0.1);
}

.card-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #a62084;
  margin-bottom: 28px;
}

.startup-logo {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: white;
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(135deg, #250032, #e82b9d);
}

.hero-card h3 {
  font-size: 28px;
  color: #27102f;
  margin-bottom: 14px;
}

.hero-card > p {
  font-size: 15px;
  line-height: 1.7;
  color: #74677a;
}

.startup-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid #eee5f1;
  gap: 20px;
}

.startup-stats div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.startup-stats span {
  font-size: 12px;
  color: #8a7d8f;
}

.startup-stats strong {
  font-size: 18px;
  color: #2c0b35;
}

/* FEATURE SECTION */

.features {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 60px 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 34px;
  border-radius: 20px;
  background: #fbf8fc;
  border: 1px solid #f0e7f2;
}

.feature-number {
  font-size: 13px;
  font-weight: 800;
  color: #c22793;
  margin-bottom: 24px;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 21px;
  color: #2b0b34;
}

.feature-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #756b79;
}

/* GLOBAL HEADER */

.site-header {
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid #eee5f1;
}

.site-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 22px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.site-logo {
  font-size: 29px;
  font-weight: 800;
  background: linear-gradient(90deg, #21002e, #9b197b, #ee2c9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  font-size: 15px;
  color: #4c4052;
}

.site-nav a:hover {
  color: #c22793;
}

.site-header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.header-sign-in {
  font-size: 15px;
  font-weight: 600;
  color: #2b0b34;
}

.header-join {
  padding: 12px 20px;
  border-radius: 10px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  background: linear-gradient(90deg, #371044, #a61980, #ee2c9d);
  box-shadow: 0 8px 24px rgba(166, 25, 128, 0.18);
}

.header-join:hover {
  opacity: 0.92;
}

/* LEGAL PAGES */

.legal-page {
  background: #ffffff;
  padding: 80px 24px 100px;
}

.legal-container {
  max-width: 900px;
  margin: 0 auto;
}

.legal-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #c22793;
  margin-bottom: 14px;
}

.legal-container h1 {
  font-size: 48px;
  line-height: 1.1;
  color: #24002f;
  margin-bottom: 14px;
}

.legal-updated {
  font-size: 14px;
  color: #8b7f91;
  margin-bottom: 42px;
}

.legal-container h2 {
  font-size: 24px;
  color: #34103f;
  margin-top: 42px;
  margin-bottom: 14px;
}

.legal-container p,
.legal-container li {
  font-size: 16px;
  line-height: 1.8;
  color: #5f5564;
}

.legal-container p {
  margin-bottom: 18px;
}

.legal-container ul {
  padding-left: 24px;
  margin-bottom: 24px;
}

.legal-container li {
  margin-bottom: 8px;
}

/* FOOTER */

.site-footer {
  border-top: 1px solid #eee5f1;
  background: #fbf8fc;
  padding: 60px 60px 28px;
  margin-top: 60px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

.footer-brand {
  max-width: 360px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 14px;
  background: linear-gradient(90deg, #21002e, #9b197b, #ee2c9d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand p {
  color: #65596b;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-brand span {
  font-size: 14px;
  color: #9a8fa0;
}

.footer-links {
  display: flex;
  gap: 80px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links h4 {
  color: #2b0b34;
  margin-bottom: 4px;
  font-size: 15px;
}

.footer-links a {
  font-size: 14px;
  color: #6f6274;
}

.footer-links a:hover {
  color: #c22793;
}

.footer-bottom {
  max-width: 1400px;
  margin: 45px auto 0;
  padding-top: 22px;
  border-top: 1px solid #e8ddea;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  color: #918696;
}

/* TABLET */

@media (max-width: 900px) {
  .navbar {
    padding: 22px 24px;
  }

  .navbar nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 70px 24px 55px;
    gap: 50px;
  }

  .hero h1 {
    font-size: 48px;
    letter-spacing: -2px;
  }

  .features {
    grid-template-columns: 1fr;
    padding: 20px 24px 70px;
  }

  .site-header-inner {
    padding: 20px 24px;
  }

  .site-nav {
    display: none;
  }
}

/* MOBILE */

@media (max-width: 700px) {
  .legal-page {
    padding: 55px 20px 80px;
  }

  .legal-container h1 {
    font-size: 38px;
  }

  .legal-container h2 {
    font-size: 21px;
  }

  .site-footer {
    padding: 45px 24px 24px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-links {
    gap: 50px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 550px) {
  .logo {
    font-size: 25px;
  }

  .sign-in {
    display: none;
  }

  .join-button {
    padding: 10px 16px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .header-sign-in {
    display: none;
  }

  .site-logo {
    font-size: 25px;
  }

  .header-join {
    padding: 10px 16px;
  }
}