:root {
  --bg: #f7f8ff;
  --panel: rgba(0, 0, 0, .04);
  --text: #1a1a1a;
  --muted: rgba(26, 26, 26, .7);
  --border: rgba(0, 0, 0, .10);
  --shadow: 0 14px 60px rgba(0, 0, 0, .12);

  --brand: #673AB7;
  /* Dayjavoo main color */
  --brand2: #9575CD;
  /* lighter accent */

  --radius: 18px;
  --container: 1100px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif
}

:root[data-theme=dark] {
  --bg: #0b0d12;
  --panel: rgba(255, 255, 255, .06);
  --text: #f5f7ff;
  --muted: rgba(245, 247, 255, .72);
  --border: rgba(255, 255, 255, .12);
  --shadow: 0 14px 60px rgba(0, 0, 0, .35);
  --brand: #673AB7;
  --brand2: #9575CD;
}


* {
  box-sizing: border-box
}

html,
body {
  height: 100%
}

body {
  margin: 0;
  font-family: var(--sans);
  background: linear-gradient(180deg,
      #ffffff 0%,
      #faf9fd 100%);

  color: var(--text);
}


a {
  color: inherit;
  text-decoration: none
}

a:hover {
  text-decoration: underline
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 10px;
  background: var(--text);
  color: var(--bg);
  padding: 10px 12px;
  border-radius: 10px
}

.skip-link:focus {
  left: 10px;
  z-index: 9999
}

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  background:#ffffff;
  border-bottom:1px solid #e6e6e6;
}

:root[data-theme=light] .site-header {
  background: rgba(255, 255, 255, .55)
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px
}

.brand-link:hover {
  text-decoration: none
}

.logo {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: .5px;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  box-shadow: var(--shadow)
}

.logo-img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 12px;
}

.brand-name {
  font-weight: 800
}

.brand-tag {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 10px
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  color: var(--text)
}

.nav-toggle-bars {
  display: inline-block;
  width: 18px;
  height: 12px;
  border-top: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  position: relative
}

.nav-toggle-bars:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 4px;
  border-top: 2px solid var(--text)
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  border: 1px solid transparent;
  padding: 12px 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease;
  text-decoration: none !important
}

.btn:hover {
  transform: translateY(-1px)
}

.btn:active {
  transform: translateY(0)
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #fff;
  box-shadow: var(--shadow)
}

.btn-secondary {
  background: var(--panel);
  border-color: var(--border)
}

.btn-ghost {
  background: transparent;
  border-color: var(--border)
}

.btn-sm {
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 14px
}

.section {
  padding: 62px 0
}

.section.alt {
  background: transparent;
  border: none;
}


:root[data-theme=light] .section.alt {
  background: rgba(0, 0, 0, .03)
}

.hero {
  padding: 64px 0 22px
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: center
}

h1 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.04;
  margin: 0 0 14px
}

h2 {
  font-size: clamp(24px, 2.2vw, 34px);
  margin: 0 0 18px
}

h3 {
  margin: 0 0 8px
}

.lead {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 18px
}

.muted {
  color: var(--muted)
}

.small {
  font-size: 14px
}

.sr-only {
  position: absolute;
  left: -9999px
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0 12px
}

.fineprint {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px
}

.badge {
  font-size: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--panel);
  border: 1px solid var(--border)
}

.hero-card {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 20px;
  padding: 20px;
  box-shadow: none;
  text-align: center;
}


.phone {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 10px;
  border-radius: 26px;
  border: 1px solid var(--border);
  background: rgba(124, 92, 255, .25);
  overflow: hidden
}

.phone-top,
.phone-bottom {
  height: 22px;
  background: rgba(255, 255, 255, .06)
}

.phone-screen {
  padding: 18px
}

.mock-title{
  font-weight:800;
  margin-bottom:10px;
  text-align:left;
  background: rgba(103, 58, 183, 0.12);   /* soft Dayjavoo purple */
  padding:8px 12px;
  border-radius:12px;
}

.mock-row {
  height: 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  margin-bottom: 10px
}

.mock-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 12px
}

.mock-tile {
  height: 70px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .1)
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px
}

.card {
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  padding: 18px;
  box-shadow: none;
}


.steps {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 14px
}

.steps li{
  display:grid;
  grid-template-columns:52px 1fr;
  gap:12px;
  align-items:start;
  background: rgba(124, 92, 255, 0.10);   /* light purple */
  border:1px solid rgba(124, 92, 255, 0.25);
  border-radius:16px;
  padding:16px;
}


.step-num {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
  color: #fff
}

.callout {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  background: rgba(124, 92, 255, .1);
  border: 1px solid rgba(124, 92, 255, .28);
  border-radius: var(--radius)
}

.prose {
  max-width: 860px
}

.prose p,
.prose li {
  line-height: 1.7;
  color: var(--muted)
}

.prose h1,
.prose h2,
.prose h3 {
  color: var(--text)
}

.prose a {
  text-decoration: underline
}

.prose code {
  font-family: var(--mono);
  font-size: .95em;
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 2px 7px;
  border-radius: 10px
}

details {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 14px;
  margin: 10px 0
}

summary {
  cursor: pointer;
  font-weight: 800
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 14px
}

.footer-title {
  font-weight: 900;
  margin-bottom: 10px
}

.footer-brand {
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 8px
}

.site-footer a {
  display: block;
  padding: 6px 0;
  color: var(--muted)
}

.site-footer a:hover {
  color: var(--text)
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border)
}

.cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px;
  display: none
}

.cookie.show {
  display: block
}

.cookie-inner{
  width:min(var(--container),calc(100% - 40px));
  margin:0 auto;
  background:#ffffff;              /* solid white */
  border:1px solid #e6e6e6;         /* light grey border */
  border-radius:16px;
  padding:12px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  box-shadow:0 8px 30px rgba(0,0,0,.08);  /* soft subtle shadow */
}

@media (max-width:920px) {
  .hero-grid {
    grid-template-columns: 1fr
  }

  .grid-3 {
    grid-template-columns: 1fr
  }

  .grid-2 {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .callout {
    flex-direction: column;
    align-items: stretch
  }

  .nav-toggle {
    display: inline-flex
  }

  .nav-menu {
    display: none;
    position: absolute;
    right: 20px;
    top: 66px;
    flex-direction: column;
    align-items: stretch;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px;
    min-width: 220px;
    box-shadow: var(--shadow)
  }

  .nav-menu.open {
    display: flex
  }
}