/* ROXIPA Landing – Farben aus der App */
:root {
  --brand-a: #94e8e9;
  --brand-b: #e7aeee;
  --ink: #1f2438;
  --ink-strong: #2f3756;
  --accent: #ff7845;
  --accent-strong: #fe8f39;
  --accent-border: #ffb99d;
  --highlight: #ffd66b;
  --bg: #f8fafc;
  --surface: #ffffff;
  --surface-2: #f2f4f8;
  --text: #1f2438;
  --text-muted: #5b6480;
  --radius: 16px;
  --shadow: 0 8px 24px rgba(31, 36, 56, 0.12);
  --shadow-lg: 0 20px 40px rgba(31, 36, 56, 0.16);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
}

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

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31, 36, 56, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--text);
  text-decoration: none;
}

.logo-icon {
  color: var(--accent);
  font-size: 1.2rem;
}

.logo-icon-image {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: inline-block;
}

.nav {
  display: flex;
  gap: 28px;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

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

/* Hero */
.hero {
  padding: 64px 0 80px;
  background: linear-gradient(165deg, #ffffff 0%, rgba(148, 232, 233, 0.22) 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
/* Phone mockup */
.hero-visual {
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 800px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-cta { justify-content: center; }
  .hero-visual { /* order: -1; */ justify-content: center; }
}

.hero-title {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.hero-title em {
  font-style: normal;
  color: var(--accent);
}

.hero-lead {
  margin: 0 0 32px;
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 480px;
}

@media (max-width: 800px) {
  .hero-lead { max-width: none; }
}

.hero-cta {
  display: flex;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: var(--accent);
  border: 1px solid var(--accent-border);
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  box-shadow: var(--shadow);
}

.btn:hover {
  background: var(--accent-strong);
  transform: translateY(-2px);
}

.btn.disabled,
.btn[aria-disabled="true"] {
  opacity: 0.6;
  pointer-events: none;
  transform: none;
}

.btn-icon {
  font-size: 1.25rem;
}

.btn-large {
  padding: 18px 32px;
  font-size: 1.1rem;
}

.phone-mockup {
  width: 280px;
  background: linear-gradient(145deg, #2f3756 0%, #1a1f33 100%);
  border-radius: 36px;
  padding: 12px;
  box-shadow: var(--shadow-lg), 0 0 0 2px rgba(31, 36, 56, 0.08);
}

.phone-screen {
  background: linear-gradient(160deg, var(--brand-a) 0%, var(--brand-b) 100%);
  border-radius: 28px;
  aspect-ratio: 9 / 19.5;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 24px; */
  overflow: hidden;
}

.phone-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}


/* Features */
.features {
  padding: 80px 0;
}

/* Screens */
.screens {
  padding: 60px 0 20px;
}

.screens-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .screens-grid {
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  .screens-grid::-webkit-scrollbar { height: 6px; }
  .screens-grid::-webkit-scrollbar-track { background: rgba(31, 36, 56, 0.08); border-radius: 999px; }
  .screens-grid::-webkit-scrollbar-thumb { background: rgba(31, 36, 56, 0.25); border-radius: 999px; }
  .screen-card { scroll-snap-align: center; }
}

.screen-card {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow);
  border: 1px solid rgba(31, 36, 56, 0.08);
}

.screen-card img {
  display: block;
  width: 100%;
  height: auto;
}

.section-title {
  margin: 0 0 48px;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  color: var(--text);
}

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

@media (max-width: 800px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  background: var(--surface);
  padding: 32px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(31, 36, 56, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

.feature-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1;
  color: var(--accent);
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
}

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

/* Download */
.download {
  padding: 80px 0;
  background: linear-gradient(180deg, rgba(148, 232, 233, 0.18) 0%, #ffffff 100%);
}

.download-inner {
  text-align: center;
}

.coming-icon {
  width: 96px;
  height: 96px;
  border-radius: 22px;
  margin: 0 auto 18px;
  display: block;
  box-shadow: var(--shadow);
}

.download-lead {
  margin: 0 0 28px;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.download-note {
  margin: 24px 0 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  opacity: 0.85;
}

/* Footer */
.footer {
  padding: 32px 0;
  border-top: 1px solid rgba(31, 36, 56, 0.08);
  text-align: center;
}

.footer-brand {
  margin: 0 0 6px;
  font-weight: 600;
  color: var(--accent);
}

.footer-copy {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Coming soon */
.coming {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: var(--bg);
}

.coming-card {
  max-width: 720px;
  text-align: center;
  background: var(--surface);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(31, 36, 56, 0.08);
}

.coming-card h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--text);
}

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