/* LazyBudget app colors — Ocean theme */
:root {
  --ocean-accent: #3373b8;
  --ocean-dark: #1a4785;
  --ocean-light: #4d94e0;
  --ocean-highlight: #5ba3e8;
  --ocean-header: #1a2e52;
  --ocean-bg-start: #e3f2fd;
  --ocean-bg-mid: #bbdefb;
  --ocean-bg-end: #90caf9;
}

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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(165deg, var(--ocean-bg-start) 0%, var(--ocean-bg-mid) 45%, var(--ocean-bg-end) 100%);
  color: #1e293b;
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 24px 0;
}

/* Hero */

.hero {
  text-align: center;
  max-width: 520px;
  width: 100%;
  padding: 0 0 48px;
}

.logo {
  width: 100px;
  height: 100px;
  margin: 0 auto 24px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(51, 115, 184, 0.3);
}

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

h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--ocean-header);
}

.tagline {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 12px;
  color: var(--ocean-accent);
}

.subtitle {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 0 28px;
  color: #475569;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.app-store-btn {
  display: inline-block;
  transition: transform 0.2s, box-shadow 0.2s;
  filter: drop-shadow(0 4px 12px rgba(51, 115, 184, 0.35));
}

.app-store-btn:hover {
  transform: scale(1.02);
  filter: drop-shadow(0 6px 16px rgba(51, 115, 184, 0.45));
}

.coming-soon {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ocean-accent);
  margin: 12px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Features */

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 560px;
  width: 100%;
  padding: 0 0 56px;
}

.feature {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(51, 115, 184, 0.2);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(51, 115, 184, 0.1);
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.feature h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--ocean-header);
}

.feature p {
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
  color: #475569;
}

/* Footer */

footer {
  text-align: center;
  padding: 24px 0 40px;
  width: 100%;
  max-width: 560px;
  border-top: 1px solid rgba(51, 115, 184, 0.25);
}

.footer-text {
  font-size: 0.8rem;
  color: #64748b;
  margin: 0 0 8px;
}

footer a {
  color: var(--ocean-dark);
  font-size: 0.82rem;
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover {
  color: var(--ocean-accent);
  text-decoration: underline;
}

.footer-sep {
  color: #94a3b8;
  margin: 0 6px;
  font-size: 0.82rem;
}

/* Mobile */

@media (max-width: 520px) {
  .features {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 2rem;
  }
}
