/* ===== Selftape Studio - Global Styles ===== */

:root {
  --gold: #D4A017;
  --gold-light: #E8C547;
  --gold-dark: #B8860B;
  --charcoal: #2D2D2D;
  --charcoal-light: #3D3D3D;
  --gray: #9E9E9E;
  --gray-light: #BDBDBD;
  --off-white: #F5F5F5;
  --white: #FFFFFF;
  --font: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--white);
  background: var(--charcoal);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover {
  color: var(--gold-light);
}

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

/* ===== Header / Nav ===== */

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: var(--charcoal);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
}

.site-header .logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.site-header .logo span {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-header nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.site-header nav a {
  color: var(--gray-light);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.site-header nav a:hover,
.site-header nav a.active {
  color: var(--gold);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== Hero ===== */

.hero {
  text-align: center;
  padding: 5rem 2rem 4rem;
  background: linear-gradient(180deg, var(--charcoal) 0%, #1a1a1a 100%);
}

.hero .logo-img {
  width: 160px;
  height: 160px;
  border-radius: 32px;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(212, 160, 23, 0.25);
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: var(--white);
}

.hero h1 .accent {
  color: var(--gold);
}

.hero .tagline {
  font-size: 1.25rem;
  color: var(--gray-light);
  max-width: 520px;
  margin: 0 auto 2.5rem;
  line-height: 1.5;
}

.btn-appstore {
  display: inline-block;
  transition: transform 0.1s, opacity 0.2s;
}
.btn-appstore img {
  height: 54px;
  width: auto;
}
.btn-appstore:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--charcoal);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--charcoal);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--gold);
  font-weight: 600;
  font-size: 1rem;
  padding: 0.875rem 2rem;
  border-radius: 12px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.btn-secondary:hover {
  background: var(--gold);
  color: var(--charcoal);
}

/* ===== Section Defaults ===== */

section {
  padding: 5rem 2rem;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 3rem;
}

/* ===== Features Grid ===== */

.features {
  background: #1a1a1a;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: var(--charcoal-light);
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.feature-card .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(212, 160, 23, 0.12);
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* ===== How It Works ===== */

.how-it-works {
  background: var(--charcoal);
}

.steps {
  display: flex;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  justify-content: center;
}

.step {
  flex: 1;
  text-align: center;
  max-width: 260px;
}

.step .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--charcoal);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step p {
  color: var(--gray-light);
  font-size: 0.95rem;
}

/* ===== Pricing ===== */

.pricing {
  background: #1a1a1a;
}

.pricing-cards {
  display: flex;
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
  justify-content: center;
}

.pricing-card {
  flex: 1;
  background: var(--charcoal-light);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  max-width: 320px;
  border: 2px solid transparent;
  transition: border-color 0.2s;
}

.pricing-card.featured {
  border-color: var(--gold);
}

.pricing-card .plan-name {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.pricing-card .price-note {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-card ul li {
  padding: 0.5rem 0;
  color: var(--gray-light);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-card ul li .material-symbols-outlined {
  color: var(--gold);
  font-size: 1.2rem;
}

/* ===== Footer ===== */

.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: var(--gray-light);
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: var(--gold);
}

.footer-contact {
  color: var(--gray);
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.footer-copyright {
  color: var(--gray);
  font-size: 0.8rem;
}

/* ===== Legal Pages ===== */

.legal-hero {
  text-align: center;
  padding: 4rem 2rem 2rem;
  background: linear-gradient(180deg, var(--charcoal) 0%, #1a1a1a 100%);
}

.legal-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.legal-hero .updated {
  color: var(--gray);
  font-size: 0.95rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.legal-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--gold);
}

.legal-content h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-content p {
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.legal-content ul {
  color: var(--gray-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

.legal-content ul li {
  margin-bottom: 0.4rem;
}

.legal-content a {
  color: var(--gold);
}

/* ===== Responsive ===== */

@media (max-width: 768px) {
  .site-header nav {
    display: none;
  }
  .site-header nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--charcoal);
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-toggle {
    display: block;
  }

  .hero {
    padding: 3rem 1.5rem 2.5rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero .tagline {
    font-size: 1.05rem;
  }
  .hero .logo-img {
    width: 120px;
    height: 120px;
    border-radius: 24px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .steps {
    flex-direction: column;
    align-items: center;
  }

  .pricing-cards {
    flex-direction: column;
    align-items: center;
  }

  section {
    padding: 3rem 1.5rem;
  }

  .legal-hero h1 {
    font-size: 1.75rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
