@font-face {
  font-family: 'Font Awesome 6 Brands';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fontawesome/webfonts/fa-brands-400.woff2') format("woff2"),
    url('/assets/fontawesome/webfonts/fa-brands-400.ttf') format("truetype");
}

@font-face {
  font-family: 'Font Awesome 6 Free';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/assets/fontawesome/webfonts/fa-solid-900.woff2') format("woff2");
}

/* Base Styles */
:root {
  --primary-color: #FF7500;
  --primary-dark: #ff1600;
  --primary-light: #fb8600;
  --secondary-color: #ff4b4b;
  --tertiary-color: #4caf50;
  --quaternary-color: #ff9800;
  --dark-color: #000813;
  --darker-color: #000000;
  --darkest-color: #01050b;
  --light-color: #040b1183;
  --lighter-color: #131313;
  --text-color: #ffffff;
  --text-muted: #e0e0e0;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  --shadow-orange: 0 4px 20px rgba(255, 107, 53, 0.3);
  --transition: all 0.2s ease;
  --border-radius: 12px;
  --card-radius: 16px;
}

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

html {
  scroll-snap-type: y mandatory;
  overflow-y: scroll;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  font-display: swap;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--darkest-color);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border-radius);
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

section>h1,
article>h1,
aside>h1,
nav>h1 {
  font-size: 2rem !important;
}

.gradient-text {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--text-color);
  font-weight: 800;
  line-height: 1.2;
}

.section-header p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-margin-top: 80px;
}

.badge {
  display: inline-block;
  background-color: rgba(255, 107, 53, 0.2);
  color: var(--primary-dark);
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgb(0, 0, 0);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  padding: 0 16px;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1rem 0;
  line-height: 1.2;
  font-weight: 800;
}

h1 {
  font-size: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  width: 60px;
  height: 20px;
  margin-right: 10px;
}

.logo img,
#footer-logo-placeholder {
  max-width: 180px;
  height: auto;
}

.nav-links ul {
  display: flex;
  align-items: center;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary-color);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
}

.mobile-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--text-color);
  border-radius: 3px;
  transition: var(--transition);
}

.mobile-menu.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Hero section */
.hero {
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding-top: 80px;
  background: radial-gradient(circle at 30% 40%, rgba(255, 107, 53, 0.2) 0%, transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
  position: relative;
}

.hero .container {
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-content {
  contain: layout;
  transform: translateZ(0);
  min-height: 300px;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 500px;
}

.hero h1 {
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-color);
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-muted);
}

.app-screenshots {
  position: relative;
  width: 100%;
  height: 600px;
}

.screenshot {
  position: absolute;
  border-radius: 24px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
  transition: all 0.5s ease;
  overflow: hidden;
  border: 2px solid rgba(255, 107, 53, 0.2);
}

.screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}

.screenshot-main {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  border-radius: 25px;
  border: none;
  background: none;
  box-shadow:
    0 0 4px 2px var(--primary-dark),
    0 0 4px 2px var(--primary-light),
    0 0 10px 5px rgba(255, 255, 255, 0.2);
}

.screenshot-secondary {
  width: 240px;
  height: 520px;
  top: 40px;
  left: calc(50% - 200px);
  transform: translateX(-50%) rotate(-15deg);
  z-index: 2;
  opacity: 0.9;
}

.screenshot-tertiary {
  width: 240px;
  height: 520px;
  top: 40px;
  left: calc(50% + 200px);
  transform: translateX(-50%) rotate(15deg);
  z-index: 1;
  opacity: 0.9;
}

.download-buttons {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 15px;
  flex-wrap: wrap;
}

.download-buttons .button.store-badge {
  flex: 0 0 auto;
  white-space: nowrap;
  padding: 12px 20px;
  font-size: 0.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 15px;
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
}

.button-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--text-color);
}

.button-primary:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-orange);
}

.store-icon {
  font-size: 1.8rem;
}

/* Features Section */

.features {
  padding: 100px 0;
  background-color: var(--light-color);
  position: relative;
}

.features-wave {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.feature-card {
  background-color: var(--lighter-color);
  border-radius: var(--card-radius);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.feature-icon {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.feature-icon img {
  width: 100%;
  height: auto;
  aspect-ratio: 350 / 250;
  object-fit: cover;
  border-radius: var(--card-radius) var(--card-radius) 0 0;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 20px 20px 10px;
}

.feature-card p {
  color: var(--text-muted);
  margin: 0 20px 20px;
}

/* Personas Sections */

.persona-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.bg-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, rgba(255, 107, 53, 0) 70%);
}

.circle-1 {
  width: 500px;
  height: 500px;
  top: -50px;
  right: -100px;
}

.circle-2 {
  width: 300px;
  height: 300px;
  bottom: 20px;
  left: -150px;
}

.circle-3 {
  width: 200px;
  height: 200px;
  top: 30%;
  right: 10%;
}

.section-row {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.section-row.reverse {
  flex-direction: row-reverse;
}

.section-content {
  flex: 1;
  min-width: 300px;
}

.section-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.section-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.section-image {
  flex: 1;
  display: flex;
  justify-content: center;
  min-width: 300px;
}

.benefit-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 30px 0;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background-color: rgba(255, 107, 53, 0.1);
  padding: 15px;
  border-radius: 12px;
  transition: var(--transition);
}

.benefit-item i {
  font-size: 1.5rem;
  color: var(--primary-dark);
}

.benefit-item span {
  color: var(--text-color);
  font-weight: 500;
}

.phone-container {
  position: relative;
  perspective: 1000px;
  max-width: 280px;
}

.phone-mockup {
  aspect-ratio: 400 / 867;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 24px;
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 8px 2px var(--primary-color),
    0 0 8px 2px var(--primary-dark);
}

.phone-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50px;
  filter: blur(15px);
  z-index: 1;
  animation: glow 3s infinite alternate;
}

@keyframes glow {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }

  100% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.phone-container.animated {
  animation: float 4.5s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Community Section */
.community {
  background-color: var(--dark-color);
  padding: 100px 0;
}

.community-tabs {
  margin-top: 60px;
  background-color: var(--light-color);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 107, 53, 0.1);
}

.tabs-nav {
  display: flex;
  background-color: var(--lighter-color);
  padding: 10px;
  border-radius: var(--card-radius) var(--card-radius) 0 0;
}

.tab-button {
  padding: 15px 25px;
  background-color: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  flex: 1;
  text-align: center;
  border-radius: var(--border-radius);
}

.tab-button:hover {
  color: var(--text-color);
}

.tab-button.active {
  color: var(--text-color);
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
}

.tab-pane {
  display: none;
  padding: 40px;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Instagram Feed */

.instagram-feed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.instagram-post {
  margin-bottom: 2rem;
  transition: var(--transition);
}

.instagram-post:hover {
  transform: translateY(-5px);
}

.post-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
}

.post-media {
  display: flex;
  justify-content: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Testimonials */

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial {
  background-color: var(--lighter-color);
  padding: 30px;
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 107, 53, 0.1);
  transition: var(--transition);
  position: relative;
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary-color);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.rating {
  color: #ffc107;
}

.testimonial-content {
  font-style: italic;
  line-height: 1.6;
}

.testimonial-source {
  font-size: 0.8rem;
  color: #d0d0d0;
  text-align: right;
  position: absolute;
  bottom: 15px;
  right: 30px;
}

/* Footer */
footer {
  background-color: rgb(0, 0, 0);
  color: var(--text-color);
  padding: 80px 0 20px;
  scroll-snap-align: start;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 60px;
}

.footer-logo {
  margin-bottom: 40px;
  flex: 1 1 100%;
}

.footer-logo .logo {
  margin-bottom: 20px;
  width: 180px;
  height: auto;
}

.footer-logo .logo img {
  width: 100%;
  height: auto;
  aspect-ratio: 270 / 52;
  object-fit: contain;
  display: block;
}

.footer-logo p {
  color: var(--text-muted);
  max-width: 300px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin-bottom: 30px;
}

.footer-column h4 {
  font-size: 1.1rem;
  margin-bottom: 25px;
  position: relative;
  font-weight: 600;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-color);
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column a {
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-column a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  flex-wrap: wrap;
}

.footer-bottom p {
  margin-bottom: 15px;
  color: var(--text-muted);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--light-color);
  border-radius: 50%;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--primary-color);
  transform: translateY(-3px);
}