/* werks coming soon styles */
:root {
  --brand-primary: #6B4EFF; /* from CupertinoThemeData.primaryColor */
  --brand-accent: #8409BE;  /* accent used across app */
  --bg: #0b0b10;
  --text: #ffffff;
  --muted: #a1a1aa;
  --card: #111116;
  --input: #1a1a22;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: radial-gradient(1200px 800px at 20% -10%, rgba(107,78,255,0.25), transparent 60%),
              radial-gradient(900px 700px at 100% 0%, rgba(132,9,190,0.20), transparent 55%),
              var(--bg);
  color: var(--text);
  font-family: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.page {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto auto; /* Added auto for features */
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  padding: 28px 20px 16px;
}

.brand { display: inline-flex; align-items: center; gap: 10px; }
.app-icon {
  width: 96px;
  height: 96px;
  border-radius: 22%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35), 0 6px 18px rgba(107,78,255,0.25);
}
.brand .logo { display: none; }
.brand .name { font-weight: 700; letter-spacing: 0.2px; font-size: 18px; }

/* small inline brand icon beside title */
.brand-icon { width: 28px; height: 28px; border-radius: 7px; }

.hero {
  display: grid;
  place-items: center;
  text-align: center;
  padding: 56px 20px 36px;
  gap: 14px;
}
.hero h1 {
  margin: 0;
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.hero p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 2.5vw, 18px);
}

.notify {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: min(560px, 92vw);
  background: color-mix(in oklab, var(--card) 85%, black 15%);
  border: 1px solid color-mix(in oklab, var(--brand-primary) 18%, #2a2a33 82%);
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.35), 0 1px 0 rgba(255,255,255,0.04) inset;
}
.notify input,
.notify select {
  background: var(--input);
  color: var(--text);
  border: 1px solid #262633;
  outline: none;
  padding: 14px 14px;
  border-radius: 10px;
  font-size: 16px;
}
.notify input::placeholder { color: #8b8b96; }
.notify select {
  cursor: pointer;
}
.notify select option {
  background: var(--input);
  color: var(--text);
}
.notify button {
  background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
  color: white;
  border: 0;
  padding: 14px 18px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(107,78,255,0.35), 0 4px 12px rgba(132,9,190,0.25);
}
.notify button:hover { filter: brightness(1.05); }
.notify button:active { transform: translateY(1px); }

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 20px 30px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

/* Features Section */
.features {
  padding: 20px 20px 60px;
  display: grid;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.feature-card h2 {
  font-size: 24px;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #fff, #ccc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.feature-card p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 24px;
}

.feature-img {
  width: 50%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  border: 1px solid #222234;
}

.comparison-demo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 20px;
}

.reference-block {
  margin-top: 20px;
  margin-bottom: 12px;
}

.comp-img {
  position: relative;
  aspect-ratio: 9/16;
  background: var(--card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #2a2a33;
}

.comp-img span {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: white;
  z-index: 2;
}

.placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #1a1a22, #222);
  display: grid;
  place-items: center;
  color: #444;
}

.demo-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.caption {
  font-size: 13px;
  opacity: 0.6;
  margin-top: 12px;
}

.section-divider {
  margin-top: 24px;
  margin-bottom: 12px;
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0), rgba(255,255,255,0.3), rgba(255,255,255,0));
}

.tutorial-heading {
  margin: 0 0 8px 0;
  font-size: 18px;
  font-weight: 700;
}

.tutorial-video {
  width: 70%;
  max-width: 480px;
  display: block;
  margin: 16px auto 0;
  border-radius: 16px;
  border: 1px solid #222234;
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
  background: #000;
}
