/* ============================================================
   Aura — landing page in the visual language of playful-blue
   browser sites: cream paper, electric blue, perforated edges.
   ============================================================ */

:root {
  --cream: #fffcea;
  --cream-soft: #fffadd;
  --blue: #3139fb;
  --blue-deep: #2702c2;
  --blue-deeper: #2404aa;
  --ink: #1c1c1c;
  --white: #ffffff;
  --grey: #6f6f6f;

  --font-soft: "Nunito", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: "Source Serif 4", Georgia, serif;
  --font-mono: "Space Mono", monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-soft);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ---------- perforated stamp edge (shared) ---------- */
.quote-band::after,
.footer-band::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 14px;
  pointer-events: none;
}

/* ============================================================
   HERO BAND
   ============================================================ */
.hero-band {
  position: relative;
  background:
    radial-gradient(48% 150px at 8% 0%, rgba(255, 156, 195, 0.75) 0%, transparent 100%),
    radial-gradient(46% 140px at 42% 0%, rgba(255, 219, 162, 0.8) 0%, transparent 100%),
    radial-gradient(44% 150px at 74% 0%, rgba(233, 196, 255, 0.8) 0%, transparent 100%),
    radial-gradient(40% 140px at 100% 0%, rgba(170, 187, 255, 0.8) 0%, transparent 100%),
    linear-gradient(180deg, #fdf0ec 0%, #fffdf6 32%, #fffcea 100%);
  padding-bottom: 70px;
}

/* blue tail rising behind the browser mockup with a zigzag edge,
   flowing seamlessly into the quote band below */
.hero-band__tail {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 235px;
  background: var(--blue);
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 14px 14px;
  -webkit-mask:
    conic-gradient(from 135deg at 50% 0%, #000 90deg, transparent 0) 0 0 / 28px 14px repeat-x,
    linear-gradient(#000, #000) 0 14px / 100% calc(100% - 14px) no-repeat;
  mask:
    conic-gradient(from 135deg at 50% 0%, #000 90deg, transparent 0) 0 0 / 28px 14px repeat-x,
    linear-gradient(#000, #000) 0 14px / 100% calc(100% - 14px) no-repeat;
  pointer-events: none;
}

/* white perforation strip across the very top */
.hero-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 9px;
  background: var(--cream);
  -webkit-mask: conic-gradient(from -45deg at 50% 100%, #000 90deg, transparent 0) 0 0 / 22px 100%;
  mask: conic-gradient(from -45deg at 50% 100%, #000 90deg, transparent 0) 0 0 / 22px 100%;
  z-index: 4;
}

/* ---------- nav ---------- */
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 26px 48px 0;
  position: relative;
  z-index: 5;
}

.nav__logo-star {
  fill: #ff5060;
  stroke: var(--ink);
  stroke-width: 1.4;
}

.nav__links {
  display: flex;
  gap: 28px;
  font-weight: 800;
  font-size: 13.5px;
  color: var(--ink);
}

.nav__links a { transition: opacity 0.15s ease; }
.nav__links a:hover { opacity: 0.55; }

.nav__mini { font-size: 10px; opacity: 0.6; }

/* ---------- hero copy ---------- */
.hero {
  position: relative;
  z-index: 2;
  max-width: 1060px;
  margin: 0 auto;
  padding: 64px 32px 0;
  text-align: center;
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(30px, 3.3vw, 46px);
  letter-spacing: -0.01em;
  color: var(--ink);
}

.hero__sub {
  margin-top: 18px;
  font-weight: 700;
  font-size: 16.5px;
  color: #3a3a3a;
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 13px 26px 13px 16px;
  background: var(--ink);
  color: var(--white);
  font-weight: 800;
  font-size: 17px;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(28, 28, 28, 0.35);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.hero__cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 36px rgba(28, 28, 28, 0.4);
}

.hero__cta-icon { display: inline-flex; }

.hero__cta-arrow { font-size: 19px; transform: translateY(-1px); }

/* ---------- browser mockup ---------- */
.browser {
  margin: 64px auto 0;
  max-width: 800px;
  background: #f6f7f8;
  border-radius: 14px;
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.6) inset,
    0 30px 80px rgba(38, 6, 156, 0.28);
  overflow: hidden;
  text-align: left;
}

.browser__chrome {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px;
  background: #edeef1;
  border-bottom: 1px solid #e0e1e6;
}

.browser__dots { display: flex; gap: 6px; }
.browser__dots i {
  width: 11px; height: 11px; border-radius: 50%;
  background: #d3d4da;
}
.browser__dots i:first-child { background: #ff5f57; }
.browser__dots i:nth-child(2) { background: #febc2e; }
.browser__dots i:last-child { background: #28c840; }

.browser__pill {
  background: var(--blue);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 999px;
}

.browser__url {
  flex: 1;
  font-size: 12px;
  color: var(--grey);
  font-weight: 700;
}

.browser__nav-arrows { letter-spacing: 4px; margin-right: 12px; color: #b3b4ba; }
.browser__domain { color: var(--ink); }
.browser__path { color: #b3b4ba; }

.browser__body {
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 330px;
}

.browser__sidebar {
  background: #fdfdfd;
  border-right: 1px solid #ececf0;
  padding: 14px 12px;
}

.sidebar__apps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.app {
  display: block;
  height: 34px;
  border-radius: 9px;
  background: #f0f1f5;
}
.app--red { background: linear-gradient(135deg, #ffe3e0, #ffb8b0); }
.app--dark { background: linear-gradient(135deg, #3c3c44, #1f1f24); }
.app--blue { background: linear-gradient(135deg, #cfe0ff, #96c4ff); }
.app--teal { background: linear-gradient(135deg, #d8f6ee, #9ce4cf); }
.app--green { background: linear-gradient(135deg, #ddf3c8, #a8dd7c); }
.app--black { background: linear-gradient(135deg, #2a2a30, #0e0e12); }

.sidebar__item {
  font-size: 12.5px;
  font-weight: 700;
  color: #5a5a62;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 2px;
}

.sidebar__item--active {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.browser__content {
  padding: 26px 30px;
  position: relative;
}

.chat__bubble {
  margin-left: auto;
  width: fit-content;
  max-width: 70%;
  background: #cfe0ff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 14px 14px 4px 14px;
}

.chat__tab {
  display: inline-block;
  background: var(--white);
  border-radius: 6px;
  padding: 1px 7px;
  font-size: 11.5px;
  margin-left: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.chat__thought {
  margin-top: 26px;
  font-size: 11.5px;
  font-weight: 700;
  color: #b3b4ba;
  opacity: 0;
}

.chat__answer {
  margin-top: 12px;
  font-size: 14.5px;
  font-weight: 700;
  line-height: 1.55;
  color: #2c2c32;
  max-width: 75%;
  opacity: 0;
}

.chat__answer-dim {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
  color: #b9bac2;
  max-width: 75%;
  opacity: 0;
}

/* ============================================================
   QUOTE BAND
   ============================================================ */
.quote-band {
  position: relative;
  background: var(--blue);
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 14px 14px;
  padding: 80px 32px 120px;
  text-align: center;
}

.quote p {
  font-weight: 900;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.25;
  color: var(--white);
  letter-spacing: -0.01em;
}

.quote__mark { color: #8cacff; }

.quote__cite {
  display: inline-block;
  margin-top: 30px;
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--white);
  background: var(--ink);
  padding: 7px 16px;
  border-radius: 999px;
}

/* zigzag bottom edge: quote band → cream */
.quote-band::after {
  bottom: -13px;
  background: var(--blue);
  -webkit-mask: conic-gradient(from -45deg at 50% 100%, #000 90deg, transparent 0) 0 0 / 28px 100%;
  mask: conic-gradient(from -45deg at 50% 100%, #000 90deg, transparent 0) 0 0 / 28px 100%;
  transform: scaleY(-1);
}

/* ============================================================
   FEATURE SECTIONS
   ============================================================ */
.feature {
  padding: 110px 32px 90px;
  text-align: center;
  background: var(--cream);
}

.feature--tint { background: var(--cream-soft); }

.feature__title {
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 900;
  color: var(--blue);
  letter-spacing: -0.01em;
}

.feature__sub {
  margin-top: 12px;
  font-size: 14.5px;
  font-weight: 600;
  color: #4a4a45;
}

.feature__sub strong { font-weight: 900; }

.feature__mock {
  max-width: 880px;
  margin: 48px auto 0;
}

/* ---------- generic mock browser ---------- */
.mock-browser {
  display: grid;
  grid-template-columns: 190px 1fr;
  border-radius: 14px;
  overflow: hidden;
  text-align: left;
  box-shadow: 0 24px 64px rgba(38, 6, 156, 0.16);
  border: 2px solid rgba(255, 137, 179, 0.65);
  min-height: 360px;
  background: var(--white);
}

.mock-browser--split { border-color: rgba(140, 172, 255, 0.8); }

.mock-sidebar {
  padding: 18px 14px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.mock-sidebar--sunset {
  background: linear-gradient(185deg, #ffb223 0%, #ff7a59 38%, #ff5060 70%, #e8447f 100%);
}

.mock-sidebar--orchid {
  background: linear-gradient(185deg, #f0b4ff 0%, #c08bff 50%, #8cacff 100%);
}

.mock-sidebar__url {
  background: rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  padding: 6px 10px;
  margin-bottom: 14px;
  font-size: 11.5px;
}

.mock-sidebar__row { padding: 6px 8px; opacity: 0.95; }
.mock-sidebar__row--sub { padding-left: 22px; opacity: 0.75; font-weight: 600; }

.mock-sidebar__pill {
  background: var(--white);
  color: var(--ink);
  border-radius: 999px;
  padding: 6px 12px;
  margin: 10px 0 4px;
  font-size: 11.5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

/* spaces mock content */
.mock-content { padding: 18px 22px; background: #fbfaf6; }

.mock-hero {
  background: #2a2118;
  color: #e9e2d6;
  border-radius: 10px;
  padding: 18px 22px;
}

.mock-hero__kicker {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  margin-bottom: 8px;
  color: #cdbfa6;
}

.mock-hero__copy { font-size: 12px; font-weight: 600; line-height: 1.6; max-width: 420px; }

.mock-filter {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 700;
  color: #8a8a82;
  margin: 16px 2px 10px;
}

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

.mock-card__img {
  display: block;
  height: 110px;
  border-radius: 8px;
}
.mock-card__img--a { background: linear-gradient(145deg, #d9cfc0, #b4a896); }
.mock-card__img--b { background: linear-gradient(145deg, #efe9df, #d6cdbd); }
.mock-card__img--c { background: linear-gradient(145deg, #c9c2b2, #a39a86); }

.mock-card figcaption {
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #55554e;
  line-height: 1.45;
}

.mock-card figcaption em {
  font-style: normal;
  color: #9a9a90;
  display: block;
}

/* split view mock */
.mock-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: #e8e4f4;
}

.mock-page { padding: 22px; }

.mock-page--zineleft {
  background: linear-gradient(180deg, #f6e3ef, #ecd7ea);
}

.mock-page--zineleft h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  color: #443343;
}

.mock-page--zineleft p { font-size: 11.5px; font-weight: 600; line-height: 1.7; color: #6c5a6b; }

.mock-page--zineright {
  background: var(--cream-soft);
  position: relative;
}

.mock-page__masthead {
  font-family: var(--font-mono);
  font-size: 26px;
  line-height: 1.05;
  color: var(--blue);
}

.mock-page__vol {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #8a8676;
}

.mock-swatches {
  display: flex;
  gap: 6px;
  margin-top: 64px;
}

.mock-swatches i {
  width: 16px; height: 16px; border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.mock-swatches i:nth-child(1) { background: #5b4a3f; }
.mock-swatches i:nth-child(2) { background: #7d8b5e; }
.mock-swatches i:nth-child(3) { background: #b65a4e; }
.mock-swatches i:nth-child(4) { background: #c9a86a; }
.mock-swatches i:nth-child(5) { background: #6d7fb3; }
.mock-swatches i:nth-child(6) { background: #a86d96; }
.mock-swatches i:nth-child(7) { background: #4f8d8b; }
.mock-swatches i:nth-child(8) { background: #d3c8b4; }

.mock-squiggle { width: 130px; margin-top: 18px; }

/* ============================================================
   PRIVACY
   ============================================================ */
.privacy {
  background: var(--white);
  text-align: center;
  padding: 96px 32px;
  border-top: 1px dashed rgba(49, 57, 251, 0.25);
  border-bottom: 1px dashed rgba(49, 57, 251, 0.25);
}

.privacy__title {
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 900;
  color: var(--blue);
}

.privacy__sub {
  margin: 14px auto 0;
  max-width: 460px;
  font-size: 14px;
  font-weight: 600;
  color: #4a4a45;
  line-height: 1.65;
}

.privacy__link {
  display: inline-block;
  margin-top: 18px;
  font-size: 13.5px;
  font-weight: 800;
  color: var(--blue);
}

.privacy__link:hover { text-decoration: underline; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--cream);
  padding: 80px 32px 96px;
  text-align: center;
}

.testimonials__icons {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 36px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1080px;
  margin: 0 auto;
}

.testimonial p {
  font-size: 15.5px;
  font-weight: 900;
  line-height: 1.4;
  color: var(--blue);
  letter-spacing: -0.01em;
}

.testimonial__badge {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 9.5px;
  letter-spacing: 0.1em;
  color: var(--blue);
  border: 1px solid rgba(49, 57, 251, 0.45);
  border-radius: 999px;
  padding: 5px 12px;
}

/* ============================================================
   FOOTER BAND
   ============================================================ */
.footer-band {
  position: relative;
  background: var(--blue);
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 14px 14px;
  color: var(--white);
  padding-top: 90px;
}

/* zigzag top edge: cream → footer band */
.footer-band::before {
  top: -13px;
  background: var(--blue);
  -webkit-mask: conic-gradient(from 135deg at 50% 0%, #000 90deg, transparent 0) 0 0 / 28px 100%;
  mask: conic-gradient(from 135deg at 50% 0%, #000 90deg, transparent 0) 0 0 / 28px 100%;
}

.footer-cta {
  text-align: center;
  padding: 0 32px 70px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.35);
}

.footer-cta__title {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 900;
  letter-spacing: -0.01em;
}

.footer-cta__title em {
  font-family: var(--font-serif);
  font-weight: 500;
}

.footer-cta__btn {
  display: inline-block;
  margin-top: 28px;
  background: var(--white);
  color: var(--blue-deep);
  font-weight: 800;
  font-size: 13.5px;
  padding: 12px 24px;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(0, 3, 84, 0.35);
  transition: transform 0.18s ease;
}

.footer-cta__btn:hover { transform: translateY(-2px) scale(1.03); }

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 64px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
  padding: 52px 32px 64px;
}

.footer__cols { display: flex; gap: 80px; }

.footer__col { display: flex; flex-direction: column; gap: 8px; }

.footer__head {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: #8cacff;
  margin-bottom: 6px;
}

.footer__col a {
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
}

.footer__col a:hover { color: var(--white); text-decoration: underline; }

.footer__company {
  font-family: var(--font-serif);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-align: right;
  line-height: 1.7;
}

.footer__company span { font-style: italic; opacity: 0.8; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 880px) {
  .nav { padding: 22px 24px 0; }
  .nav__links { gap: 18px; font-size: 12.5px; }

  .browser__body { grid-template-columns: 1fr; }
  .browser__sidebar { display: none; }

  .mock-browser { grid-template-columns: 1fr; }
  .mock-sidebar { display: none; }
  .mock-split { grid-template-columns: 1fr; }

  .testimonials__grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  .footer { grid-template-columns: 1fr; gap: 36px; }
  .footer__company { text-align: left; }
}

@media (max-width: 520px) {
  .testimonials__grid { grid-template-columns: 1fr; }
  .footer__cols { flex-direction: column; gap: 32px; }
}
