:root {
  --primary-dark: #152b06;
  --on-secondary-container: #440c42;
  --on-secondary-container-light: #f9d9f0;
  --background-color: #fcfafc;
  --border-radius: 36px;
  --border-radius-small: 20px;
  --shadow: 0 4px 20px rgba(39, 43, 51, 0.12);
  --surfaces-surface-container: #f0edf0;
  --button-primary-bg: #89db4f;
  --text-primary: #252626;
  --text-secondary: #525252;
  --tertiary-container-light: #d6e3fc;
  --outline-outline: #e3e2e2;
}

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

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  background-color: var(--background-color);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* Welcome Section */
.welcome {
  padding: 48px 0 200px;
  display: flex;
  align-items: center;
}
.welcome .logo {
  height: 58px;
  margin-bottom: 16px;
}

.welcome-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: center;
}

.welcome-text {
  display: flex;
  flex-direction: column;
}

.welcome-title {
  color: var(--text-primary);
  font-size: 58px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.364px;
  padding-bottom: 4px;
}

.welcome-subtitle {
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.15px;
  padding-bottom: 24px;
}

.italic-text {
  font-style: italic;
  color: var(--text-secondary);
  font-size: 28px;
  font-weight: 200;
  line-height: 120%;
  letter-spacing: 0.15px;
}
.highlight-text {
  background: var(--on-secondary-container-light);
  color: var(--on-secondary-container);
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 100px;
  white-space: nowrap;
}

.welcome-image {
  width: 100%;
  position: relative;
}

.welcome-image img:first-of-type {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.welcome-image img:last-of-type {
  position: absolute;
  left: 0;
  height: 131%;
}

/* Mobile App Preview */

.mobile-preview img {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  object-fit: contain;
}

/* Features Section */

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.feature-card {
  text-align: left;
  padding: 60px 60px 0 60px;
  background: var(--surfaces-surface-container);
  border-radius: 32px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-title {
  font-size: 28px;
  font-weight: 600;
  line-height: 130%;
  letter-spacing: 0.364px;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.feature-description {
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 400;
  line-height: 140%; /* 28px */
  letter-spacing: 0.15px;
}

/* CTA Section */

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* Download Section */
.download-section {
  padding-bottom: 48px;
}

.download-section .logo {
  height: 36px;
  vertical-align: bottom;
}

.download-section .italic-text:first-of-type {
  padding-bottom: 8px;
}

.download-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
}

.download-title {
  color: var(--text-primary);
  font-size: 40px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.364px;
  padding-bottom: 32px;
}

.download-subtitle .heart {
  color: var(--on-secondary-container);
  font-size: 28px;
}

.app-buttons {
  margin-top: 32px;
  display: flex;
  gap: 8px;
}

.app-button {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  border: 1px solid var(--outline-outline);
}
.app-button-text {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
}
.app-button-text-1 {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.5px;
}
.app-button-text-2 {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0.5px;
}

.app-button:hover {
  transform: translateY(-3px);
}

.app-icon {
  width: 28px;
  height: 28px;
}

.download-image {
}

.download-image img {
  border-radius: 36px;
  width: 100%;
  object-fit: contain;
}

/* New Experience Section */
.new-experience {
  padding-bottom: 200px;
}

.new-experience-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
}

.new-experience-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.new-experience .logo {
  height: 58px;
  margin-bottom: 32px;
}

.new-experience-title {
  margin-bottom: 8px;
  color: var(--text-primary);
  font-size: 40px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 0.364px;
}

.new-experience-description {
  padding-top: 20px;
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.15px;
}

.new-experience-image {
  width: 100%;
  position: relative;
}

.new-experience-image img:first-of-type {
  width: 100%;
  border-radius: 36px;
}

.new-experience-image img:last-of-type {
  position: absolute;
  right: 0;
  height: 128%;
}

/* Responsive Design */

/* Feature Sections Grid */

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-image {
  width: 100%;
  min-height: 250px;
  position: relative;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
  object-position: bottom;
}

.feature-card:hover .feature-image img {
  transform: scale(1.05);
}

.feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding-bottom: 40px;
}

.feature-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.3;
}

.feature-description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  flex: 1;
}

/* Responsive Design */

/* Authentic Connections Section */
.authentic-connections {
  padding: 100px 80px 100px 120px;
}

.connections-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
}

.connections-text {
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-container {
  background: var(--tertiary-container-light);
  border-radius: 32px;
  padding: 64px;
  text-align: center;
}

.connections-message {
  color: var(--text-primary);
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 0.15px;
}

.phone-mockups {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-mockups img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.phone-back img,
.phone-front img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.phone-back img {
  opacity: 0.8;
}

/* ===== MEDIA QUERIES ===== */

@media (max-width: 1280px) {
  .italic-text {
    font-size: 21px;
  }

  .welcome-content {
    gap: 48px;
  }
  .welcome-title {
    font-size: 44px;
  }
  .welcome-subtitle {
    font-size: 16px;
  }

  .welcome .logo {
    height: 44px;
  }

  .new-experience-content {
    gap: 48px;
  }

  .new-experience .logo {
    height: 44px;
    margin-bottom: 24px;
  }
  .new-experience-title {
    font-size: 32px;
  }
  .new-experience-description {
    font-size: 16px;
    padding-top: 16px;
  }

  .feature-title {
    font-size: 24px;
  }
  .feature-description {
    font-size: 16px;
  }
  .feature-card {
    padding: 36px 36px 0 36px;
  }

  .connections-message {
    font-size: 20px;
  }

  .download-content {
    gap: 48px;
  }

  .download-title {
    font-size: 32px;
    padding-bottom: 24px;
  }

  .download-section .logo {
    height: 28px;
    vertical-align: text-bottom;
  }

  .authentic-connections {
    padding: 100px 20px 100px 40px;
  }

  .text-container {
    padding: 32px;
  }
}

@media (max-width: 1024px) {
  body {
    padding: 0 16px;
  }
  .welcome {
    padding-bottom: 72px;
  }
  .welcome-content {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: left;
  }

  .welcome-image {
    margin-bottom: 8vw;
  }

  .new-experience {
    padding-bottom: 72px;
  }

  .new-experience-content {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: left;
  }

  .new-experience-image {
    margin-bottom: 8vw;
  }

  .new-experience-text {
    order: 2;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .feature-image {
    width: 90%;
    align-self: center;
    min-height: initial;
  }

  .authentic-connections {
    padding: 72px 0;
  }

  .connections-content {
    grid-template-columns: 1.7fr 1fr;
  }

  .text-container {
    padding-right: 48px;
  }

  .phone-mockups {
    margin-left: -30%;
  }

  .download-content {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: left;
  }

  .download-text {
    order: 2;
  }
}

@media (max-width: 770px) {
  .connections-content {
    grid-template-columns: 1fr;
  }

  .text-container {
    padding-right: 32px;
    padding-bottom: 64px;
  }

  .phone-mockups {
    margin-left: 0;
    margin-top: -60px;
  }
  .authentic-connections {
    padding-bottom: 0;
  }
}

@media (max-width: 620px) {
  .welcome {
    padding-bottom: 48px;
  }
  .welcome-content {
    gap: 24px;
  }

  .welcome-title {
    font-size: 40px;
  }

  .welcome .logo {
    height: 40px;
  }

  .new-experience {
    padding-bottom: 48px;
  }

  .new-experience-content {
    gap: 24px;
  }
  .new-experience-title {
    font-size: 28px;
  }

  .new-experience .logo {
    height: 40px;
    margin-bottom: 20px;
  }

  .feature-card {
    padding: 24px 24px 0 24px;
  }

  .feature-title {
    font-size: 22px;
    margin-bottom: 8px;
  }

  .feature-content {
    padding-bottom: 24px;
  }

  .connections-message {
    font-size: 16px;
  }
  .authentic-connections {
    padding-top: 48px;
  }

  .download-title {
    font-size: 28px;
    padding-bottom: 16px;
  }
  .app-buttons {
    margin-top: 16px;
  }
}
