/* Import Urbanist & Montserrat Fonts */
@import url("https://fonts.googleapis.com/css2?family=Urbanist:wght@400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;900&display=swap");

body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Urbanist", sans-serif;
}

.hero-section {
  /* Diagonal Gradient: Top-Left to Bottom-Right */
  background: linear-gradient(135deg, #dc72b2 0%, #7653fd 100%);
  padding: 20px 20px;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.content-wrapper {
  display: flex;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
  align-items: center;
}

.text-content,
.video-content {
  flex: 1;
}

h1 {
  font-weight: 700;
  font-size: 3.33rem;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: center;
  line-height: 63px;
}
h2 {
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 30px;
  opacity: 0.9;
  text-align: center;
}
p {
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 500px;
  text-align: left;
}

.hero-section p {
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 16px;
}

/* Video Styling */
.video-container {
  width: 100%;
  border: 8px solid rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
video {
  width: 100%;
  display: block;
}

/* Button Group Styling */
.button-group {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  width: 100%;
  max-width: 1200px;
  justify-content: space-around; /* Aligns buttons under their respective columns */
}

.btn {
  padding: 15px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  font-size: 1.15rem;
  transition: transform 0.2s;
  min-width: 250px;
}

.btn:hover {
  transform: scale(1.05);
}
.btn-primary {
  background-color: #ff7d9b;
  color: white;
}
.btn-secondary {
  background-color: #caddff;
  color: #4a4a4a;
}
.btn-tertiary {
  background-color: #7653fd;
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  min-width: 360px;
}

.founders-section {
  padding: 30px 20px;
  background-color: #ffffff; /* Contrast against the purple hero */
  color: #333;
}

/* 50/50 Split Configuration */
.founders-section .image-content {
  flex: 0 0 calc(50% - 20px);
  max-width: calc(50% - 20px);
}

.ctr {
  text-align: center;
}

.founders-text {
  flex: 0 0 calc(50% - 20px);
  max-width: calc(50% - 20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Image behavior */
.founders-section .image-content img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px; /* Optional: matches the style of the first section's video */
}

/* Text Styling */
.founders-section .accent-title {
  text-align: center;
  color: #7653fd;
  font-size: 2.2rem;
  font-weight: 700;
  margin: 15px 0;
}

.founders-text p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 20px;
  color: #444;
}

.founders-section .manifesto {
  font-weight: 500;
  line-height: 1.4;
}

.build-section {
  background-color: #caddff;
  padding: 20px 10%;
  overflow: hidden; /* Keeps the PNG shapes contained if they bleed over */
}

.build-section .container {
  display: flex;
  align-items: stretch; /* Vertically stretch to match height */
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px; /* Matches founders section */
}

.build-section h1 {
  color: #7653fd;
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.build-section h2 {
  color: #7653fd;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 25px;
}

.build-section .description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  max-width: 90%;
  margin-bottom: 20px;
  text-align: center;
}

.build-section .design-label {
  font-weight: bold;
  margin-bottom: 15px;
}

.build-section .check-list {
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
}

.build-section .check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
  font-weight: 500;
}

.build-section .check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 900;
}

.build-section .powered-by {
  font-size: 2.1rem;
  font-weight: 700;
  text-align: center;

  /* Text Gradient */
  background: linear-gradient(to right, #7653fd, #ff7c9b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.build-section .text-content {
  flex: 0 0 calc(50% - 20px);
  box-sizing: border-box;
}

.build-section .image-content {
  flex: 0 0 calc(50% - 20px);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px; /* Ensures enough height for the image */
  overflow: visible;
}

.build-section .image-content img {
  position: absolute;
  height: 100%;
  width: auto;
  max-width: none;
  max-height: 580px;
  left: 50%;
  top: 50%;
  transform: translate(
    -30%,
    -50%
  ); /* Significantly increased offset to pull phone left into the center of the column */
}

.ext-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.btn-ext {
  display: inline-block;
  background-color: #fff;
  padding: 10px 40px;
  border: 4px solid #7653fd;
  border-radius: 40px;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  min-width: 360px;
  transition: transform 0.2s ease, background-color 0.2s ease;
  color: #7653fd;
  text-align: center;

  min-width: 240px;
  font-size: 1.4rem;
}

.btn-ext:hover {
  transform: scale(1.02);
  background-color: #f1f6ff;
}

.contribution-section {
  padding: 20px 20px;
  background-color: #fff;
  text-align: center;
}

.contribution-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.contribution-section h1 {
  color: #7653fd;
  font-size: 2.5rem;
  margin-bottom: 50px;
  text-align: center;
}

.contribution-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.contribution-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}

.banner-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.flower-banner {
  max-width: 100%;
  height: auto;
}

/* Response Grid for Tablet */
@media (max-width: 1024px) {
  .contribution-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* Mobile View (Stacking) */
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .button-group {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  p {
    margin: 0 auto 30px auto;
  }

  .hero-section p {
    margin-bottom: 30px; /* Maintains the auto left/right margins from above */
  }

  .founders-section {
    padding: 0px;
    width: 100%;
  }

  .founders-section .image-content {
    flex: 0 0 100%;
    max-width: none;
    width: 100%;
    padding-top: 20px;
  }

  .founders-text {
    flex: 0 0 90%;
    max-width: 90%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .founders-section .content-wrapper {
    flex-direction: column; /* Stacks image on top of text for mobile */
  }

  .accent-title {
    text-align: center;
  }

  .accent-title h3 {
    text-align: center;
  }

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

  .text-content {
    flex: 0 0 100%;
  }

  .check-list {
    display: inline-block;
    text-align: left;
  }

  .image-content img {
    width: 100%;
  }

  .contribution-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contribution-section h1 {
    font-size: 2rem;
  }

  .build-section {
    background-color: #caddff;
    padding: 10px 10%;
    overflow: hidden; /* Keeps the PNG shapes contained if they bleed over */
  }

  .build-section .image-content img {
    max-height: 504px;
    height: 120%;
  }

  .build-section .founder-content img {
    height: auto;
    width: 100%;
    object-fit: cover;
  }
}

.supporter-section {
  /* Diagonal Gradient: Top-Left to Bottom-Right */
  background: linear-gradient(45deg, #dc72b2 0%, #7653fd 100%);
  padding: 20px 20px;
  color: white;
  text-align: center;
}

.supporter-header h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: white;
  text-align: center;
}

.supporter-header {
  margin-bottom: 60px;
}

.intro-p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 10px auto;
  line-height: 1.4;
  opacity: 0.9;
}

.intro-p.subtitle {
  margin-bottom: 60px;
}

.supporter-row {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.supporter-row.alternate {
  flex-direction: row-reverse;
}

.supporter-content {
  flex: 1.2;
}

.supporter-card {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .text-content {
    flex: 0 0 100%;
  }

  .check-list {
    display: inline-block;
    text-align: left;
  }

  .image-content img {
    width: 100%;
  }

  .contribution-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contribution-section h1 {
    font-size: 2rem;
  }
}

.intro-p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 10px auto;
  line-height: 1.4;
  opacity: 0.9;
}

.intro-p.subtitle {
  margin-bottom: 60px;
}

.supporter-card {
  background-color: white;
  color: #444;
  padding: 50px;
  border-radius: 40px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
}

.card-title {
  color: #7653fd;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.card-subtitle {
  color: #7653fd;
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 25px;
  text-align: center;
}

.supporter-card p {
  text-align: center;
  max-width: none;
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.list-head {
  font-weight: 600;
  margin-top: 30px !important;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.benefit-list li {
  padding-left: 0;
  margin-bottom: 10px;
  font-size: 1.05rem;
  text-align: center;
}

.disclaimer {
  margin-top: 30px !important;
  font-size: 0.95rem !important;
}

.receipt-info {
  font-size: 0.9rem !important;
  opacity: 0.8;
}

.action-btn {
  display: flex;
  justify-content: center;
}

.btn-supporter {
  background: linear-gradient(135deg, #7653fd 0%, #b29bff 100%);
  color: white !important;
  padding: 18px 40px;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: 700;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}

.btn-supporter:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.supporter-image {
  flex: 1;
}

.supporter-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile responsive for supporter section */
@media (max-width: 900px) {
  .supporter-row,
  .supporter-row.alternate {
    flex-direction: column !important;
    gap: 40px;
  }

  .supporter-card {
    padding: 30px;
  }

  .supporter-header h1 {
    font-size: 2.2rem;
  }
}

.matters-section {
  background-color: #d6e6ff;
  padding: 20px 20px 0px 20px;
  text-align: center;
  color: #333;
}

.matters-section h1 {
  color: #7653fd;
  font-size: 2.8rem;
  margin-bottom: 40px;
}

.matters-text {
  width: 100%;
  margin: 0 auto 60px auto;
}

.matters-text p {
  font-size: 1.2rem;
  line-height: 1.4;
  margin-bottom: 10px;
  font-weight: 400;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.matters-logo-container {
  margin-bottom: 60px;
}

.matters-logo {
  max-width: 250px;
  height: auto;
}

.matters-owners-container {
  display: flex;
  justify-content: center;
}

.matters-owners-img {
  max-width: 100%;
  height: auto;
}

/* Response for mobile */
@media (max-width: 768px) {
  .matters-section h1 {
    font-size: 2.2rem;
  }

  .matters-text p {
    font-size: 1.2rem;
  }
}

.final-cta-section {
  padding: 10px 10px;
  background-color: #fff;
  text-align: center;
}

.cta-statement {
  color: #ff7fa6;
  font-size: 1.8rem;
  margin: 0px 0px 20px 0px;
  padding: 0px;
  font-weight: 600;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.btn-cta {
  display: inline-block;
  padding: 10px 40px;
  border: 4px solid #7653fd;
  border-radius: 40px;
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  min-width: 360px;
  transition: transform 0.2s ease, background-color 0.2s ease;

  /* Text Gradient */
  background: linear-gradient(to right, #7653fd, #ff7c9b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.btn-cta:hover {
  transform: scale(1.02);
  background-color: rgba(118, 83, 253, 0.05);
}

.cta-closing {
  color: #7653fd;
  font-size: 1.3rem;
  font-weight: 600;
  text-align: center;
  max-width: none;
  margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .build-section .powered-by {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
  }

  .btn-ext {
    min-width: 240px;
    font-size: 1.4rem;
  }

  .btn-cta {
    min-width: 240px;
    font-size: 1.4rem;
    padding: 20px 30px;
  }

  .cta-statement {
    font-size: 1.5rem;
  }
}

.kc-footer {
  background-color: #000;
  padding: 20px 20px;
  text-align: center;
}

.kc-footer p {
  max-width: none;
  width: 100%;
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 1.3rem;
  margin-left: auto;
  margin-right: auto;
}

.footer-logo {
  max-width: 250px;
  height: auto;
}

.cta-buttons .btn-cta {
  background-color: white;
}

