:root {
  --bg: #f4f5fb;
  --surface: #ffffff;
  --text-strong: #0f172a;
  --text-muted: #5b6576;
  --accent: #E8AF42;
  --border: rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 18px 60px rgba(15, 23, 42, 0.12);
  font-size: 16px;
}

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

body {
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text-strong);
  line-height: 1.6;
  min-height: 100vh;
}

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

header {
  background: transparent;
  padding: 1rem 0;
}

.nav-container {
  position: relative;
  z-index: 1001;
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 1.25rem clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}


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

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-links a {
  color: var(--text-strong);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 160ms ease;
}

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

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 200ms ease;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--text-strong);
  border-radius: 2px;
  transition: all 200ms ease;
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(244, 245, 251, 0.98);
  backdrop-filter: blur(20px);
  transform: translateX(-100%);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding-top: 100px;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 2rem;
}

.mobile-menu a {
  color: var(--text-strong);
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 200ms ease;
}

.mobile-menu a:hover {
  color: var(--accent);
}

.mobile-menu .nav-link {
  align-self: flex-start;
  font-size: 1.1rem;
  margin-top: 1rem;
}


.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  color: var(--text-strong);
  text-decoration: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.brand:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(232, 175, 66, 0.25);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.brand:hover img {
  box-shadow: 0 16px 40px rgba(232, 175, 66, 0.35);
  transform: scale(1.05);
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: white;
  text-decoration: none;
  padding: 0.55rem 1.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, #f0c659 100%);
  box-shadow: 0 4px 15px rgba(232, 175, 66, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}


.nav-link:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #d49d37 0%, #e6bb4f 100%);
  box-shadow: 0 6px 20px rgba(232, 175, 66, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

main {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-bottom: clamp(4rem, 9vw, 6rem);
  position: relative;
  z-index: 1;
}

.section {
  padding: clamp(4rem, 8vw, 5.5rem) clamp(1.5rem, 5vw, 2.75rem);
}

.container {
  width: min(960px, 100%);
  margin: 0 auto;
}

.section-muted {
  background: #eef1f8;
}

main .section + .section {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
}

.hero {
  padding: clamp(5rem, 9vw, 6.5rem) clamp(1.5rem, 5vw, 2.75rem) clamp(3.5rem, 6vw, 4.5rem);
}

.hero-layout {
  display: grid;
  justify-items: center;
  gap: clamp(2rem, 5vw, 3.75rem);
  text-align: center;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  text-align: center;
  align-items: center;
  max-width: 36rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(2.6rem, 4.2vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.hero p {
  max-width: 32rem;
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.1rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.badge {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 12px 20px rgba(15, 23, 42, 0.12));
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  transition: transform 160ms ease, filter 160ms ease;
}

.badge:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 16px 25px rgba(15, 23, 42, 0.18));
}


.meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.meta::before {
  content: "•";
  color: rgba(15, 23, 42, 0.4);
}

.hero-media {
  position: relative;
  background: var(--surface);
  border-radius: 32px;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border);
  display: grid;
  gap: 1.5rem;
  width: 100%;
  max-width: clamp(220px, 40vw, 300px);
  margin-inline: auto;
  justify-items: center;
}

.device-frame {
  position: relative;
  border-radius: 28px;
  background: #0f172a;
  padding: 12px;
  overflow: hidden;
  width: 100%;
  max-width: clamp(200px, 38vw, 280px);
  margin-inline: auto;
}

.device-frame::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 52px;
  height: 5px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  z-index: 2;
}

.device-frame img {
  border-radius: 18px;
  position: relative;
  z-index: 1;
}

.feature-section {
  display: grid;
  gap: clamp(2.5rem, 5vw, 3.5rem);
  justify-items: center;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 38rem;
  text-align: center;
}

.section-header h2 {
  font-size: clamp(2rem, 3.3vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.015em;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0 auto;
}


.preview-section {
  display: grid;
  gap: clamp(2.5rem, 5vw, 3.5rem);
  justify-items: center;
}

.preview-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: clamp(2rem, 6vw, 3rem);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  display: grid;
  gap: clamp(2rem, 5vw, 3rem);
  width: 100%;
}

.preview-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
  gap: clamp(2.25rem, 4vw, 3.25rem);
  align-items: center;
}

.preview-copy h2 {
  font-size: clamp(2rem, 3.3vw, 2.6rem);
  letter-spacing: -0.015em;
}

.preview-copy p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: 1rem;
  max-width: 32rem;
}

.preview-stack {
  position: relative;
  display: grid;
  gap: 1.5rem;
}

.preview-card {
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 20px;
  padding: 1.5rem;
  display: grid;
  gap: 0.65rem;
  font-size: 0.95rem;
}

.preview-card strong {
  font-weight: 600;
}

.screenshot-strip {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.screenshot-strip img {
  width: 160px;
  border-radius: 22px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.privacy-section {
  display: grid;
  gap: 2rem;
  text-align: center;
}

.privacy-section h2 {
  font-size: clamp(2.1rem, 3.5vw, 2.75rem);
  letter-spacing: -0.015em;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1.5rem, 4vw, 2.5rem);
}

.privacy-card {
  padding: 1.75rem;
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.98rem;
  display: grid;
  gap: 0.75rem;
}

.cta {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 1.75rem;
  justify-items: center;
}

.cta h2 {
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  letter-spacing: -0.02em;
}

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

footer {
  border-top: 1px solid var(--border);
  padding: 3rem clamp(1.5rem, 5vw, 2.75rem) 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-brand {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-strong);
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 160ms ease;
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 160ms ease;
}

.footer-legal a:hover {
  color: var(--accent);
}

.footer-copyright {
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* Features Page Specific Styles */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.feature-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 0.75rem;
  color: var(--accent);
}

.feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-strong);
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Pricing Page Specific Styles */
.pricing-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 32px;
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, box-shadow 160ms ease;
  width: 100%;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 90px rgba(232, 175, 66, 0.35);
}

.pricing-card.popular {
  border: 3px solid var(--accent);
  position: relative;
  box-shadow: 0 20px 60px rgba(232, 175, 66, 0.3);
}

.pricing-card.popular::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 0;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  display: none;
}

.pricing-header {
  text-align: center;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
}

.pricing-tagline {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.pricing-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--text-strong);
}

.pricing-price {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.25rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.25rem;
}

.currency-sign {
  font-size: 2rem;
  font-weight: 600;
  opacity: 0.7;
  margin-top: 0.5rem;
}

.price-amount {
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.pricing-period {
  color: var(--text-muted);
  font-size: 1.1rem;
  font-weight: 500;
}

.pricing-description {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 0.75rem;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
  line-height: 1.6;
  text-align: left;
  color: var(--text-strong);
}

.pricing-features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 600;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pricing-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 2.5rem 2rem;
  background: rgba(232, 175, 66, 0.04);
  border: 1px solid rgba(232, 175, 66, 0.15);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.pricing-cta h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0;
  color: var(--text-strong);
  letter-spacing: -0.02em;
}

.pricing-cta p {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0 0 0.75rem 0;
}

.pricing-cta .badge {
  margin-top: 0.5rem;
  transition: transform 0.2s ease;
}

.pricing-cta .badge:hover {
  transform: scale(1.05);
}

.pricing-trial {
  text-align: center;
  margin: 2rem 0;
  padding: 2rem;
  background: rgba(232, 175, 66, 0.05);
  border: 1px solid rgba(232, 175, 66, 0.2);
  border-radius: 16px;
}

.pricing-trial h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-strong);
}

.pricing-trial p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 1rem;
}

@media (max-width: 980px) {
  .preview-inner {
    grid-template-columns: 1fr;
  }

  .preview-copy {
    text-align: center;
  }

  .preview-copy p {
    margin-inline: auto;
  }

  .preview-stack {
    justify-items: center;
  }

  .meta::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-menu {
    gap: 1rem;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-link {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-card {
    padding: 2rem;
  }

  .pricing-price {
    font-size: 2rem;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 2rem;
  }

  .hero-media {
    border-radius: 26px;
    padding: 1.5rem;
  }

  .preview-panel {
    padding: 1.75rem;
    border-radius: 24px;
  }

  .feature-card,
  .privacy-card {
    padding: 1.5rem;
  }

  .screenshot-strip img {
    width: 140px;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .footer-nav {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .footer-legal {
    justify-content: center;
  }
}

/* Support Page */
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

.support-email {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--accent);
  text-decoration: none;
  padding: 1rem 2rem;
  border-radius: 12px;
  background: rgba(232, 175, 66, 0.1);
  transition: all 0.3s ease;
}

.support-email svg {
  flex-shrink: 0;
}

.support-email:hover {
  background: rgba(232, 175, 66, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 175, 66, 0.2);
}

/* Legal Pages (Privacy Policy & Terms of Service) */
.legal-content {
  padding: clamp(3rem, 6vw, 4rem) clamp(1.5rem, 5vw, 2.75rem);
  max-width: 1200px;
  margin: 0 auto;
}

.legal-content .container {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.legal-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
  color: var(--text-strong);
  text-align: center;
}

.legal-updated {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  display: block;
  text-align: center;
}

.legal-content h2 {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--text-strong);
  letter-spacing: -0.01em;
}

.legal-content h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.375rem);
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--text-strong);
}

.legal-content p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.legal-content p strong {
  color: var(--text-strong);
  font-weight: 600;
}

.legal-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-muted);
}

.legal-content li {
  margin-bottom: 0.75rem;
  padding-left: 0.5rem;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
}

.legal-content a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.legal-content a:hover {
  border-bottom-color: var(--accent);
}

.legal-content em {
  color: var(--text-muted);
  font-style: italic;
}

.legal-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-nav a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.legal-nav a:hover {
  background: rgba(232, 175, 66, 0.1);
  border-bottom-color: transparent;
}

@media (max-width: 640px) {
  .legal-content {
    padding: 2rem 1.25rem;
  }

  .legal-content ul {
    margin-left: 1rem;
  }

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