/* ── Minuta — minimal landing page ────────────────────────── */

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

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #fff;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ── Nav ─────────────────────────────────────────────────── */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  /* hidden until user scrolls */
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav.scrolled {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: #000;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-logo-img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: #444;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 100px;
  transition: color 0.15s, background 0.15s;
}
.nav-link:hover { color: #000; background: rgba(0,0,0,0.05); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: #000;
  padding: 9px 18px;
  border-radius: 100px;
  transition: opacity 0.15s, transform 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { opacity: .82; transform: translateY(-1px); }
.nav-cta:active { opacity: 1; transform: none; }

.nav-cta-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ── Hero ────────────────────────────────────────────────── */

.hero {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 60px;
  gap: 0;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
}

.hero-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.hero-hl {
  font-size: clamp(48px, 7.5vw, 88px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #000;
  margin: 0 0 48px;
  max-width: 860px;
}

/* Inline icon chip — like iOS app icons in the headline */
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  margin: 0 .08em;
  position: relative;
  top: -.06em;
  flex-shrink: 0;
}

.chip svg {
  width: .75em;
  height: .75em;
}

/* ── CTA buttons ─────────────────────────────────────────── */

.hero-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  letter-spacing: -0.01em;
  padding: 15px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: opacity 0.15s, transform 0.15s;
  white-space: nowrap;
}
.btn-store:hover { opacity: .82; transform: translateY(-1px); }
.btn-store:active { opacity: 1; transform: none; }

.btn-ios {
  background: #000;
  color: #fff;
  border: 1.5px solid #000;
}

.btn-android {
  background: #fff;
  color: #000;
  border: 1.5px solid #e0e0e0;
}
.btn-android:hover { border-color: #bbb; opacity: 1; }

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── Social proof ────────────────────────────────────────── */

.hero-proof {
  display: flex;
  align-items: center;
  gap: 8px;
}

.proof-stars {
  font-size: 15px;
  color: #bbb;
  letter-spacing: 1px;
}

.proof-text {
  font-size: 13px;
  color: #aaa;
  font-weight: 500;
}

/* ── Phone showcase ──────────────────────────────────────── */

.phone-section {
  background: #f5f5f7;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  overflow: hidden;
  padding: 72px 48px 0;
}

.phone-side {
  flex: 1;
  max-width: 200px;
}

.phone-side-left { text-align: right; }
.phone-side-right { text-align: left; }

.phone-side-tag {
  display: block;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: #000;
  margin-bottom: 10px;
  line-height: 1.1;
}

.phone-side-text {
  font-size: 15px;
  color: #888;
  line-height: 1.6;
  margin: 0;
  letter-spacing: -0.01em;
}

.phone-mockup-img {
  cursor: zoom-in;
  width: 60%;
  max-width: 680px;
  display: block;
  transform: scale(1);
  transform-origin: center bottom;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.6s ease;
  will-change: transform;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.08));
}

.phone-mockup-img:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.16));
}

/* ── Lightbox ────────────────────────────────────────────── */

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 24px;
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 92vw;
  max-height: 92vh;
  width: auto;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 40px 120px rgba(0,0,0,0.6);
  transform: scale(0.88);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: zoom-out;
}

.lightbox.open .lightbox-img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(8px);
}
.lightbox-close:hover { background: rgba(255,255,255,0.22); }

/* ── Showcase ────────────────────────────────────────────── */

.showcase {
  background: #f0f4fd;
  padding: 80px 0;
  overflow: hidden;
}

.showcase-inner {
  max-width: 100%;
  margin: 0;
  padding: 0 48px;
}

.showcase-header {
  text-align: center;
  margin-bottom: 56px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.showcase-hl {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #000;
  margin: 0 0 14px;
  line-height: 1.08;
}

.showcase-sub {
  font-size: 16px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

.showcase-body {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 0;
  align-items: center;
}

/* ── Feature list ── */
.showcase-list {
  display: flex;
  flex-direction: column;
  padding-right: 24px;
}

.sfeat {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 20px;
  background: none;
  border: none;
  border-left: 3px solid transparent;
  border-radius: 0;
  cursor: pointer;
  text-align: left;
  width: 100%;
  transition: background 0.15s, border-color 0.15s;
  font-family: inherit;
}

.sfeat:hover { background: rgba(255,255,255,0.55); }

.sfeat.active {
  border-left-color: #2563eb;
  background: rgba(255,255,255,0.8);
}

.sfeat-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  color: #aaa;
  margin-top: 2px;
  transition: color 0.15s;
}
.sfeat-icon svg { width: 26px; height: 26px; }
.sfeat.active .sfeat-icon { color: #2563eb; }

.sfeat-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sfeat-title {
  font-size: 19px;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.02em;
}

.sfeat-desc {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
}

.sfeat-arrow {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  color: #ccc;
  margin-top: 3px;
  transition: color 0.15s;
}
.sfeat.active .sfeat-arrow { color: #2563eb; }

/* ── Preview panel ── */
.showcase-preview {
  position: relative;
  min-height: 420px;
}

.spanel {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.09);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.spanel.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Panel with real screenshot — no card chrome, full bleed */
.spanel:has(.spanel-img) {
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.spanel-img {
  cursor: zoom-in;
  width: calc(100% + 48px); /* bleed to right edge */
  max-width: none;
  max-height: 820px;
  object-fit: contain;
  object-position: left center;
  display: block;
  border-radius: 0;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 0.6s ease;
  will-change: transform;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.08));
}

.spanel-img:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 32px 64px rgba(0,0,0,0.16));
}

/* ── Mock UI: header ── */
.mock-header {
  padding: 20px 20px 0;
}

.mock-title {
  font-size: 17px;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.02em;
  margin-bottom: 3px;
}

.mock-meta {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 12px;
}

.mock-tabs {
  display: flex;
  gap: 0;
  margin: 0 -20px;
  padding: 0 16px;
  border-bottom: 1px solid #f0f0f0;
}

.mock-tab {
  font-size: 13px;
  font-weight: 500;
  color: #aaa;
  padding: 10px 12px;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
}

.mock-tab.active {
  color: #2563eb;
  border-bottom-color: #2563eb;
  font-weight: 600;
}

/* ── Mock UI: body ── */
.mock-body {
  padding: 20px;
  max-height: 360px;
  overflow: hidden;
}

.mock-section-title {
  font-size: 13px;
  font-weight: 700;
  color: #000;
  margin: 16px 0 7px;
  letter-spacing: -0.01em;
}
.mock-section-title:first-child { margin-top: 0; }

.mock-bullets {
  margin: 0 0 4px;
  padding-left: 16px;
}
.mock-bullets li {
  font-size: 13px;
  color: #333;
  margin-bottom: 5px;
  line-height: 1.45;
}

/* ── Mock UI: transcript segments ── */
.mock-segment { margin-bottom: 14px; }

.mock-seg-meta {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 3px;
}

.mock-speaker {
  font-size: 12px;
  font-weight: 700;
  color: #2563eb;
}

.mock-ts {
  font-size: 11px;
  color: #bbb;
}

.mock-segment p {
  font-size: 13px;
  color: #333;
  margin: 0;
  line-height: 1.5;
}

/* ── Mock UI: import panel ── */
.mock-import {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mock-import-title {
  font-size: 17px;
  font-weight: 700;
  color: #000;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  align-self: flex-start;
}

.mock-import-record {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.mock-record-btn {
  width: 72px;
  height: 72px;
  background: #fee2e2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ef4444;
}
.mock-record-btn svg { width: 30px; height: 30px; }

.mock-record-label {
  font-size: 13px;
  color: #666;
  font-weight: 500;
}

.mock-import-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 4px 0 16px;
}
.mock-import-divider::before,
.mock-import-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #eee;
}
.mock-import-divider span { color: #bbb; font-size: 12px; }

.mock-import-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 13px 16px;
  background: #f5f5f5;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
  font-family: inherit;
}
.mock-import-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.mock-import-yt svg { color: #ff0000; }

/* ── Mock UI: share items ── */
.mock-share-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
}
.mock-share-item:last-child { border-bottom: none; }

.mock-share-icon {
  width: 36px;
  height: 36px;
  background: #f5f5f5;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #555;
}
.mock-share-icon svg { width: 17px; height: 17px; }

.mock-share-label {
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  color: #000;
}

.mock-share-arrow {
  width: 15px;
  height: 15px;
  color: #ccc;
}

/* ── FAQ ─────────────────────────────────────────────────── */

.faq-section {
  max-width: 600px;
  margin: 80px auto;
  padding: 0 24px;
}

.faq-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #999;
  margin: 0 0 24px;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-top: 1px solid #f0f0f0;
}
.faq-item:last-child { border-bottom: 1px solid #f0f0f0; }

.faq-item summary {
  padding: 18px 0;
  font-size: 15px;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: -0.02em;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: #bbb;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  margin: 0 0 18px;
  padding-right: 24px;
}

/* ── Download Section ────────────────────────────────────── */

.dl-section {
  padding: 80px 24px;
  background: #f5f7ff;
}

.dl-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.dl-hl {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f0f1a;
  margin: 0 0 8px;
}

.dl-sub {
  font-size: 17px;
  color: #6e6e80;
  margin: 0 0 40px;
}

.dl-card {
  display: flex;
  align-items: center;
  gap: 48px;
  background: #fff;
  border-radius: 28px;
  padding: 40px 48px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.dl-card-img {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.dl-mockup {
  width: 180px;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(0, 0, 0, 0.18));
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.dl-mockup:hover {
  transform: scale(1.05);
}

.dl-card-body {
  flex: 1;
}

.dl-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #0f0f1a;
  margin: 0 0 10px;
}

.dl-card-desc {
  font-size: 15px;
  color: #6e6e80;
  line-height: 1.6;
  margin: 0 0 28px;
}

.dl-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 14px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  font-family: inherit;
}

.dl-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.dl-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.dl-btn-sub {
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 2px;
}

.dl-btn-main {
  display: block;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
}

.dl-btn-ios {
  background: #0f0f1a;
  color: #fff;
  border: 2px solid #0f0f1a;
}

.dl-btn-android {
  background: #fff;
  color: #0f0f1a;
  border: 2px solid #0f0f1a;
}

@media (max-width: 640px) {
  .dl-card {
    flex-direction: column;
    padding: 32px 24px;
    gap: 28px;
    text-align: center;
  }
  .dl-btns {
    justify-content: center;
  }
  .dl-mockup {
    width: 130px;
  }
}

/* ── Footer ──────────────────────────────────────────────── */

.footer {
  text-align: center;
  padding: 32px 24px 48px;
  border-top: 1px solid #f0f0f0;
}

.footer p {
  font-size: 13px;
  color: #bbb;
  margin: 0;
}

.footer a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.15s;
}
.footer a:hover { color: #444; }

/* ── Responsive ──────────────────────────────────────────── */

@media (max-width: 720px) {
  /* Phone section: stack vertically */
  .phone-section {
    flex-direction: column;
    padding: 48px 24px 0;
    gap: 0;
  }
  .phone-mockup-img {
    width: 80%;
    max-width: 320px;
    order: -1;
  }
  /* Labels row below the phone */
  .phone-side {
    max-width: none;
    flex: 1;
  }
  .phone-section {
    flex-wrap: wrap;
    justify-content: center;
  }
  .phone-side-left,
  .phone-side-right {
    text-align: center;
    padding: 20px 12px 0;
    max-width: 48%;
  }
  .phone-side-tag {
    font-size: clamp(16px, 5vw, 22px);
  }
  .phone-side-text {
    font-size: 13px;
  }

  /* Showcase: single column, hide image panel on mobile */
  .showcase-body {
    grid-template-columns: 1fr;
  }
  .showcase-preview {
    display: none;
  }
  .showcase-list {
    padding-right: 0;
  }
}

@media (max-width: 480px) {
  .nav { padding: 16px 20px; }
  .hero { padding: 80px 20px 48px; }
  .hero-hl { letter-spacing: -0.035em; }
  .btn-store { font-size: 14px; padding: 13px 20px; }
  .iphone-wrap { width: 220px; }
  .faq-section { margin: 56px auto; }
  .showcase { padding: 56px 20px; }
  .showcase-hl { letter-spacing: -0.035em; }
  .sfeat { padding: 18px 14px; gap: 14px; }
  .sfeat-title { font-size: 17px; }
}
