@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap");

:root {
  --primary: #000abe;
  --secondary: #34c759;
  --accent: #ff9f0a;
  --background: #ffffff;
  --card: #f3f2f7;
  --text-primary: #1c1c1e;
  --text-secondary: #6e6e73;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--background);
  color: var(--text-primary);
  font-family: "Outfit", sans-serif;
}

.hero {
  position: relative;
  height: 720px;
  max-height: 80vh;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(0, 10, 190, 0.65),
    rgba(0, 10, 190, 0.35),
    rgba(0, 10, 190, 0.15)
  );
  top: 0;
  left: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: translateY(-18px);
}

.logo {
  width: min(630px, 62vw);
  height: auto;
  margin-bottom: 8px;
  display: block;
}

.hero-text {
  max-width: 900px;
}

.hero h1 {
  font-size: 48px;
  line-height: 1.05;
  font-weight: 700;
  color: white;
  margin-bottom: 18px;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
}

.hero p {
  max-width: 780px;
  margin: 0 auto;
  font-size: 28px;
  line-height: 1.6;
  color: white;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.early-access {
  background: #f7f7f7;
  padding: 90px 24px;
}

.early-access-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: 72px;
  align-items: start;
}

.early-access-text {
  max-width: 560px;
}

.early-access-form {
  width: 100%;
  padding-top: 12px;
}

.early-access h2 {
  font-size: 64px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 22px;
  color: #1c1c1e;
}

.early-access p {
  font-size: 24px;
  line-height: 1.6;
  color: #444;
  max-width: 560px;
}

.waitlist-form label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.waitlist-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.waitlist-form input {
  width: 100%;
  height: 64px;
  padding: 0 20px;
  font-size: 20px;
  border-radius: 8px;
  border: 1px solid #cfcfcf;
  background: #ffffff;
  margin-bottom: 14px;
}

.waitlist-form button {
  background: #34c759;
  color: white;
  border: none;
  padding: 16px 28px;
  font-size: 20px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.25s ease;
  min-width: 210px;
}

.waitlist-form button:hover {
  background: #ff9f0a;
}

@media (max-width: 900px) {
  .early-access-container {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .early-access h2 {
    font-size: 48px;
  }

  .early-access p {
    font-size: 20px;
  }
}

.what-is {
  background: #f7f7f7;
  padding: 56px 24px 48px;
}

.what-is-container {
  max-width: 1180px;
  margin: 0 auto;
}

.what-is h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  line-height: 1.05;
  font-weight: 700;
  color: #1c1c1e;
  margin-bottom: 24px;
}

.what-is p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.65;
  color: #2b2b2b;
  margin-bottom: 28px;
  max-width: 1120px;
}

.what-is-blog-link-row {
  margin-top: 8px;
}

.what-is-blog-link {
  display: inline-block;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease;
}

.what-is-blog-link:hover {
  border-color: var(--primary);
  transform: translateY(-1px);
}

.why-from-scratch {
  background: #f7f7f7;
  padding: 12px 24px 100px;
}

.why-from-scratch-container {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.why-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.why-text h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  line-height: 1.05;
  font-weight: 700;
  color: #1c1c1e;
  margin-bottom: 30px;
}

.why-feature {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 34px;
}

.why-icon {
  width: 60px;
  min-width: 60px;
  height: 60px;
  color: #34c759;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon i {
  font-size: 52px;
}

.why-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 28px;
  gap: 18px;
}

.why-feature p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1.35;
  color: #1c1c1e;
  margin: 0;
}

@media (max-width: 900px) {
  .what-is h2,
  .why-text h2 {
    font-size: 46px;
  }

  .what-is p {
    font-size: 20px;
  }

  .why-from-scratch-container {
    grid-template-columns: 1fr;
  }

  .why-feature p {
    font-size: 24px;
  }
}

.community {
  background: #f7f7f7;
  padding: 90px 24px 110px;
}

.community-container {
  max-width: 1400px;
  margin: 0 auto;
}

.community h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 64px;
  line-height: 1.05;
  font-weight: 700;
  color: #1c1c1e;
  margin-bottom: 24px;

  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.community-intro {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.6;
  color: #2b2b2b;
  max-width: 1100px;
  margin-bottom: 56px;

  margin-left: auto;
  margin-right: auto;
}

.community-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.community-slider {
  width: 1120px;
  overflow: hidden;
}

.community-track {
  display: flex;
  gap: 40px;
  transition: transform 0.35s ease;
}

.community-track img {
  width: 346px;
  height: auto;
  display: block;
  border: 3px solid #ff9f0a;
  border-radius: 10px;
  flex: 0 0 auto;
}

.slider-arrow {
  background: transparent;
  border: none;
  color: #000abe;
  font-size: 54px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  width: 48px;
  height: 48px;
}

.community-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
}

.community-dots button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: none;
  background: #cfcfcf;
  cursor: pointer;
  padding: 0;
}

.community-dots button.active {
  background: #1c1c1e;
}

@media (max-width: 1200px) {
  .community-slider {
    width: 734px;
  }
}

@media (max-width: 820px) {
  .community h2 {
    font-size: 46px;
  }

  .community-intro {
    font-size: 20px;
  }

  .community-slider {
    width: 346px;
  }

  .community-track {
    gap: 24px;
  }

  .slider-arrow {
    font-size: 42px;
  }
}

.site-footer {
  text-align: center;
  padding: 40px 20px;
  font-size: 14px;
  color: #666;
}

.footer-links a {
  margin: 0 10px;
  color: #444;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-company {
  margin-top: 15px;
}

/* =========================
   LEGAL PAGE STYLING
   Privacy Policy / Terms
========================= */

.legal-container {
  max-width: 900px;
  margin: 80px auto;
  padding: 50px 60px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  line-height: 1.75;
  color: #333;
}

/* main title */

.legal-container h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  margin-bottom: 20px;
  color: #1c1c1e;
}

/* section headers */

.legal-container h2 {
  font-size: 22px;
  margin-top: 44px;
  margin-bottom: 14px;
  font-weight: 600;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 8px;
}

/* paragraph text */

.legal-container p {
  margin-bottom: 18px;
  font-size: 16px;
}

/* bullet lists */

.legal-container ul {
  margin-bottom: 22px;
  padding-left: 22px;
}

.legal-container li {
  margin-bottom: 8px;
}

/* horizontal separators */

.legal-container hr {
  border: none;
  border-top: 1px solid #e6e6e6;
  margin: 32px 0;
}

/* links */

.legal-container a {
  color: #1a73e8;
  text-decoration: none;
}

.legal-container a:hover {
  text-decoration: underline;
}

/* =========================
   ABOUT PAGE
========================= */

.about-hero {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 10, 190, 0.78), rgba(28, 28, 30, 0.62)),
    url("../images/Untitled-design-1.webp") center center / cover no-repeat;
}

.about-hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 1100px;
  padding: 0 24px;
}

.about-hero .logo {
  width: 630px;
  max-width: 50vw;
  margin-bottom: 32px;
}

.about-hero h1 {
  margin-bottom: 18px;
}

.about-hero p {
  max-width: 900px;
  margin: 0 auto;
}

.about-section {
  padding: 88px 24px;
}

.about-container {
  max-width: 1320px;
  margin: 0 auto;
}

.about-section h2 {
  margin-bottom: 28px;
}

.about-section p {
  max-width: 1200px;
  font-size: 17px;
  line-height: 1.8;
}

.about-story,
.about-team,
.about-community-cta {
  background: var(--background);
}

.about-purpose {
  background: var(--card);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

.about-value-card {
  background: var(--background);
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.about-value-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 24px;
  background: var(--primary);
  color: #ffffff;
}

.about-value-card h3 {
  margin-bottom: 12px;
}

.about-value-card p {
  margin-bottom: 0;
}

.about-team-intro {
  max-width: 1120px;
  margin-bottom: 28px;
}

.team-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 20px;
}

.team-card {
  background: var(--card);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.photo-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  background: var(--card);
  margin-bottom: 16px;
}

.team-role {
  margin-bottom: 12px;
  font-weight: 600;
}

.bio {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.team-tagline {
  text-align: center;
  margin-top: 28px;
  font-size: 18px;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 0.2px;
  font-style: italic;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 18px;
}

.team-tagline strong {
  color: var(--primary);
}

.about-cta-row {
  margin-top: 28px;
}

.about-primary-btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
  background: var(--text-primary);
  color: #ffffff;
  margin-top: 8px;
}

.about-primary-btn:hover {
  transform: translateY(-1px);
  opacity: 0.92;
}

@media (max-width: 1100px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .about-values {
    grid-template-columns: 1fr;
  }

  .about-section {
    padding: 72px 20px;
  }
}

@media (max-width: 640px) {
  .about-hero {
    min-height: 48vh;
  }

  .about-hero .logo {
    width: 120px;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .team-card,
  .about-value-card {
    padding: 18px;
  }
}

/* =========================
   CLOSED BETA PAGE
========================= */

/* =========================
   CLOSED BETA PAGE
========================= */

.beta-hero-content {
  max-width: 980px;
  padding: 72px 24px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.beta-logo {
  width: min(420px, 70vw);
  height: auto;
  display: block;
  margin: 0 auto 20px;
}

.beta-hero-title {
  font-size: 56px;
  line-height: 1.05;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
}

.beta-hero-text {
  max-width: 850px;
  margin: 0 auto 22px;
  font-size: 24px;
  line-height: 1.6;
  color: white;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.beta-button {
  display: inline-block;
  margin-top: 18px;
  background: var(--secondary);
  color: white;
  border: none;
  padding: 16px 28px;
  font-size: 20px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.25s ease;
  min-width: 240px;
}

.beta-button:hover {
  background: var(--accent);
}

.beta-list {
  list-style: disc;
  margin: 28px auto;
  padding-left: 26px;
  max-width: 420px;
  text-align: left;
}

.beta-list li {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.6;
  color: #2b2b2b;
  margin-bottom: 10px;
}

.beta-login-options {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 14px 0 24px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.6;
  color: #2b2b2b;
}

.beta-login-options span {
  position: relative;
  padding-left: 18px;
}

.beta-login-options span::before {
  content: "•";
  position: absolute;
  left: 0;
}

.beta-subsection {
  background: #f7f7f7;
  padding: 72px 24px;
}

.beta-subsection-container {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.beta-subsection h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 52px;
  line-height: 1.05;
  font-weight: 700;
  color: #1c1c1e;
  margin-bottom: 22px;
}

.beta-subsection p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.65;
  color: #2b2b2b;
  margin-bottom: 22px;
}

.beta-try-list {
  max-width: 560px;
  margin: 28px auto 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.beta-try-item {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  line-height: 1.45;
  color: #2b2b2b;
  background: #ffffff;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  padding: 14px 18px;
  text-align: center;
}

@media (max-width: 900px) {
  .beta-hero-title {
    font-size: 42px;
  }

  .beta-hero-text {
    font-size: 20px;
  }

  .beta-subsection h2 {
    font-size: 40px;
  }

  .beta-subsection p {
    font-size: 20px;
  }
}

/* Closed beta hero fix */
header.hero:has(.beta-hero-content) {
  height: auto;
  min-height: 720px;
  max-height: none;
  overflow: visible;
}

@media (max-width: 900px) {
  header.hero:has(.beta-hero-content) {
    min-height: auto;
  }

  .beta-hero-content {
    padding: 64px 20px 56px;
    justify-content: flex-start;
  }

  .beta-logo {
    width: min(300px, 72vw);
    margin: 0 auto 16px;
  }

  .beta-hero-title {
    font-size: 38px;
    line-height: 1.1;
    margin-bottom: 16px;
  }

  .beta-hero-text {
    font-size: 19px;
    line-height: 1.5;
    margin-bottom: 18px;
  }

  .beta-button {
    min-width: 220px;
    font-size: 18px;
    padding: 14px 24px;
  }
}

@media (max-width: 600px) {
  .beta-hero-content {
    padding: 48px 16px 44px;
  }

  .beta-logo {
    width: min(240px, 74vw);
    margin-bottom: 14px;
  }

  .beta-hero-title {
    font-size: 32px;
    line-height: 1.12;
    margin-bottom: 14px;
  }

  .beta-hero-text {
    font-size: 17px;
    line-height: 1.45;
    margin-bottom: 16px;
  }

  .beta-button {
    width: 100%;
    max-width: 280px;
    min-width: 0;
  }
}

/* =========================
   UPDATES PAGE
========================= */

.updates-hero-content {
  max-width: 980px;
  padding: 72px 24px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.updates-hero-title {
  font-size: 56px;
  line-height: 1.05;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.22);
}

.updates-hero-text {
  max-width: 850px;
  margin: 0 auto 22px;
  font-size: 24px;
  line-height: 1.6;
  color: white;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.updates-section {
  background: #f7f7f7;
  padding: 72px 24px 96px;
}

.updates-container {
  max-width: 980px;
  margin: 0 auto;
}

.update-post {
  background: #ffffff;
  border: 1px solid #e3e3e3;
  border-radius: 14px;
  padding: 34px 32px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
  margin-bottom: 28px;
}

.update-date {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary);
}

.update-post h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1.1;
  font-weight: 700;
  color: #1c1c1e;
  margin-bottom: 22px;
}

.update-post p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.8;
  color: #2b2b2b;
  margin-bottom: 22px;
}

.update-points {
  margin: 0 0 24px 0;
  padding-left: 28px;
}

.update-points li {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.75;
  color: #2b2b2b;
  margin-bottom: 12px;
}

.updates-coming-soon {
  text-align: center;
  font-size: 18px;
  color: var(--text-secondary);
  padding: 24px 16px 0;
}

@media (max-width: 900px) {
  .updates-hero-title {
    font-size: 42px;
  }

  .updates-hero-text {
    font-size: 20px;
  }

  .updates-section {
    padding: 56px 20px 72px;
  }

  .update-post {
    padding: 26px 22px;
  }

  .update-post h2 {
    font-size: 34px;
  }

  .update-post p,
  .update-points li {
    font-size: 18px;
  }
}

@media (max-width: 600px) {
  .updates-hero-content {
    padding: 48px 16px 44px;
  }

  .updates-hero-title {
    font-size: 32px;
    line-height: 1.12;
    margin-bottom: 14px;
  }

  .updates-hero-text {
    font-size: 17px;
    line-height: 1.45;
    margin-bottom: 16px;
  }

  .update-post {
    padding: 22px 18px;
  }

  .update-post h2 {
    font-size: 28px;
  }

  .update-post p,
  .update-points li {
    font-size: 17px;
    line-height: 1.7;
  }
}

.hero-updates-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.95rem;
  color: #ffffff;
  text-decoration: underline;
  opacity: 0.85;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.hero-updates-link:hover {
  opacity: 1;
  transform: translateY(-1px);
}
