:root {
  --ink: #101828;
  --muted: #667085;
  --line: rgba(16, 24, 40, 0.1);
  --panel: rgba(255, 255, 255, 0.9);
  --panel-strong: #ffffff;
  --brand: #155dfc;
  --brand-dark: #0f49d8;
  --brand-soft: #eef4ff;
  --accent: #7c3aed;
  --green: #10b981;
  --bg: #f7f9ff;
  --shadow: 0 18px 42px rgba(16, 24, 40, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--bg);
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

.site-shell::before {
  display: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: 0 10px 30px rgba(16, 24, 40, 0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.brand-text {
  display: grid;
  gap: 1px;
  line-height: 1.1;
}

.brand-text strong {
  color: var(--ink);
  font-size: 1.07rem;
}

.brand-text small {
  color: #667085;
  font-size: 0.72rem;
  font-weight: 750;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 6px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 10px;
  background: rgba(247, 249, 255, 0.78);
}

.nav-links a,
.pill-link {
  text-decoration: none;
  color: #344054;
  font-weight: 750;
  font-size: 0.9rem;
  padding: 9px 12px;
  border-radius: 6px;
}

.nav-links a:hover,
.pill-link:hover {
  color: var(--brand);
  background: rgba(21, 93, 252, 0.07);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 15px;
  color: #ffffff;
  background: var(--brand);
  border: 1px solid rgba(21, 93, 252, 0.2);
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(21, 93, 252, 0.16);
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--brand-dark);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid rgba(16, 24, 40, 0.12);
  border-radius: 8px;
  background: var(--panel-strong);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(16, 24, 40, 0.04);
  max-width: 100%;
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button.primary {
  color: #fff;
  border-color: transparent;
  background: var(--brand);
  box-shadow: 0 14px 28px rgba(21, 93, 252, 0.18);
}

.button.primary:hover {
  background: var(--brand-dark);
}

.button.store {
  justify-content: flex-start;
  width: 190px;
}

.button small {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  line-height: 1;
}

.button strong {
  display: block;
  font-size: 0.96rem;
  line-height: 1.15;
}

.hero {
  padding: 76px 0 52px;
  border-bottom: 1px solid rgba(16, 24, 40, 0.08);
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.74) 54%, rgba(247, 249, 255, 0.96) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 470px);
  gap: 56px;
  align-items: center;
}

.hero-copy {
  max-width: 650px;
  margin: 0;
  text-align: left;
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  margin: 0 0 18px;
  color: var(--brand);
  background: rgba(21, 93, 252, 0.08);
  border: 1px solid rgba(21, 93, 252, 0.14);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 800;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.14);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 650px;
  margin: 0;
  font-size: 4.55rem;
  font-weight: 800;
  min-width: 0;
}

.hero p {
  max-width: 610px;
  margin: 20px 0 0;
  color: #475467;
  font-size: 1.13rem;
}

.hero-note {
  color: #6b3b00 !important;
  font-size: 0.94rem !important;
  font-weight: 750;
  margin-top: 16px !important;
}

.hero-actions {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 34px;
  max-width: 720px;
}

.showcase {
  position: relative;
  min-height: 640px;
  max-width: 470px;
  margin: 0 0 0 auto;
}

.showcase-card {
  position: absolute;
  z-index: 2;
  width: 196px;
  padding: 17px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 34px rgba(16, 24, 40, 0.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: cardDrift 7s ease-in-out infinite;
  overflow: hidden;
}

.showcase-card::after,
.phone::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, transparent 28%, transparent 66%, rgba(21, 93, 252, 0.16) 100%);
  pointer-events: none;
}

.showcase-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
}

.showcase-card strong {
  display: block;
  font-size: 1rem;
  line-height: 1.25;
}

.showcase-live {
  top: 82px;
  left: 0;
}

.showcase-safety {
  top: 246px;
  right: 0;
  animation-delay: -2s;
}

.showcase-creator {
  left: 22px;
  bottom: 84px;
  animation-delay: -4s;
}

.trust-item,
.glass-card,
.policy-card,
.legal-card,
.support-box {
  background: var(--panel);
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.trust-item {
  padding: 14px;
  border-radius: 6px;
  box-shadow: none;
}

.trust-item strong {
  display: block;
  font-size: 1.1rem;
}

.trust-item span {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
}

.phone-stage {
  position: relative;
  min-height: 0;
  display: flex;
  justify-content: flex-end;
  padding-top: 8px;
}

.phone {
  width: min(100%, 330px);
  position: relative;
  margin: 0 28px 0 auto;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 58px rgba(16, 24, 40, 0.16);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: phoneFloat 8s ease-in-out infinite;
  overflow: hidden;
}

.product-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  overflow: hidden;
  margin-top: 30px;
  border: 1px solid rgba(16, 24, 40, 0.08);
  border-radius: 8px;
  background: rgba(16, 24, 40, 0.08);
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.05);
}

.product-strip span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 58px;
  padding: 12px;
  background: #ffffff;
  color: #344054;
  font-size: 0.92rem;
  font-weight: 800;
  text-align: center;
}

.phone-screen {
  overflow: hidden;
  position: relative;
  z-index: 1;
  aspect-ratio: 1080 / 2340;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(16, 24, 40, 0.08);
}

.mockup-screenshot {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.status-bar {
  display: flex;
  justify-content: space-between;
  padding: 16px 18px 8px;
  color: #1f2937;
  font-size: 0.78rem;
  font-weight: 800;
}

.app-top {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
}

.app-top img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 0;
}

.app-top strong {
  display: block;
}

.app-top span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
}

.room-card {
  margin: 16px;
  padding: 18px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.86), rgba(22, 78, 99, 0.76)),
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.45), transparent 12rem);
}

.room-card .room-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  font-weight: 700;
}

.room-card h3 {
  margin-top: 54px;
  font-size: 1.55rem;
}

.speaker-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #38bdf8, #fb7185);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0 16px 16px;
}

.mini-card {
  min-height: 104px;
  padding: 14px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 24, 39, 0.08);
}

.mini-card strong {
  display: block;
  margin-top: 18px;
}

.mini-card span {
  color: var(--muted);
  font-size: 0.8rem;
}

.section {
  padding: 68px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
}

.section-heading.stacked {
  display: block;
}

.section-heading.stacked p {
  margin-top: 12px;
}

.section-kicker {
  margin: 0 0 10px !important;
  color: var(--brand) !important;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.section-heading h2 {
  font-size: 2.6rem;
  max-width: 720px;
}

.section-heading p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
}

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

.glass-card,
.policy-card {
  border-radius: 8px;
  padding: 24px;
  background: #ffffff;
}

.glass-card h3,
.policy-card h3 {
  font-size: 1.18rem;
  margin: 8px 0 10px;
}

.glass-card p,
.policy-card p {
  margin: 0;
  color: var(--muted);
}

.feature-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid rgba(21, 93, 252, 0.14);
  border-radius: 4px;
  padding: 5px 8px;
  font-size: 0.76rem;
  font-weight: 800;
}

.feature-label .icon {
  width: 15px;
  height: 15px;
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes cardDrift {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

.wide-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 16px;
  align-items: stretch;
  margin-top: 16px;
}

.callout {
  padding: 28px;
  border-radius: 8px;
  background: #101828;
  color: #fff;
}

.callout p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.callout h3 {
  font-size: 2.05rem;
}

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

.safety-list div {
  padding: 16px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: 0 12px 26px rgba(16, 24, 40, 0.05);
}

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

.policy-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 176px;
  text-decoration: none;
}

.policy-card span {
  margin-top: auto;
  color: var(--brand);
  font-weight: 800;
}

.footer {
  padding: 46px 0 22px;
  color: var(--muted);
  background: #ffffff;
  border-top: 1px solid rgba(16, 24, 40, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.6fr) repeat(3, minmax(150px, 1fr));
  gap: 34px;
  align-items: start;
}

.footer-brand-block p {
  max-width: 390px;
  margin: 18px 0 0;
  color: #475467;
}

.footer-brand-block .footer-company {
  margin-top: 12px;
  font-weight: 750;
}

.footer-brand-block a,
.footer-contact a {
  color: var(--brand);
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column h2 {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-column a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.94rem;
  font-weight: 750;
}

.footer-column a:hover {
  color: var(--brand);
}

.footer-contact p {
  margin: 0;
  color: #475467;
}

.footer-contact span {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  color: #7c2d12;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.22);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 850;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(16, 24, 40, 0.08);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom div {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 750;
}

.legal-hero {
  padding: 54px 0 20px;
}

.legal-hero h1 {
  font-size: 4rem;
}

.legal-hero p {
  max-width: 760px;
  color: #475467;
  font-size: 1.08rem;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 26px 0 70px;
}

.legal-toc {
  position: sticky;
  top: 96px;
  padding: 18px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(16, 24, 40, 0.08);
  box-shadow: 0 12px 26px rgba(16, 24, 40, 0.05);
}

.legal-toc a {
  display: block;
  padding: 8px 0;
  color: #344054;
  text-decoration: none;
  font-weight: 750;
  font-size: 0.92rem;
}

.legal-card {
  padding: 34px;
  border-radius: 8px;
  background: #ffffff;
}

.legal-card section + section {
  margin-top: 34px;
  padding-top: 30px;
  border-top: 1px solid rgba(17, 24, 39, 0.1);
}

.legal-card h2 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

.legal-card p,
.legal-card li {
  color: #475467;
}

.legal-card ul,
.legal-card ol {
  padding-left: 22px;
}

.notice {
  padding: 16px 18px;
  border-radius: 8px;
  background: rgba(21, 93, 252, 0.08);
  border: 1px solid rgba(21, 93, 252, 0.18);
  color: #123783;
}

.warning {
  background: rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.28);
  color: #7c2d12;
}

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

.support-box {
  padding: 24px;
  border-radius: 8px;
}

.support-box h2 {
  font-size: 1.2rem;
}

.contact-line {
  word-break: break-word;
  font-weight: 850;
  color: var(--brand);
}

@media (max-width: 900px) {
  .hero-grid,
  .wide-panel,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .nav {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
  }

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

  .hero-copy {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  h1 {
    margin: 0 auto;
  }

  .hero p {
    margin: 20px auto 0;
  }

  .hero-actions {
    justify-content: center;
  }

  .showcase {
    min-height: 620px;
    max-width: 460px;
    margin: 36px auto 0;
  }

  .showcase-live,
  .showcase-safety,
  .showcase-creator {
    transform: none;
  }

  h1,
  .legal-hero h1 {
    font-size: 3.55rem;
  }

  .section-heading h2 {
    font-size: 2.25rem;
  }

  .product-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .phone-stage {
    min-height: auto;
  }

  .phone {
    margin: 0 24px 0 auto;
  }

  .card-grid,
  .policy-grid,
  .support-grid {
    grid-template-columns: 1fr 1fr;
  }

  .legal-toc {
    position: static;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    position: static;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 6px;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    padding: 42px 0 34px;
  }

  h1,
  .legal-hero h1 {
    max-width: 280px;
    font-size: 1.78rem;
    line-height: 1.12;
  }

  .section-heading h2,
  .callout h3 {
    font-size: 1.85rem;
  }

  .hero p {
    font-size: 1.02rem;
    max-width: 300px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 28px auto 0;
  }

  .hero-actions .button {
    width: 100%;
  }

  .showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: auto;
    padding: 0;
  }

  .phone-stage {
    order: -1;
    justify-content: center;
  }

  .showcase-card {
    position: relative;
    inset: auto;
    width: 100%;
    padding: 12px;
    transform: none;
    animation: none;
  }

  .showcase-card strong {
    font-size: 0.9rem;
  }

  .product-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .phone {
    width: min(100%, 290px);
    margin: 0 auto;
  }

  .safety-list {
    grid-template-columns: 1fr;
  }

  .trust-strip,
  .card-grid,
  .policy-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 12px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-card {
    padding: 22px;
  }

  .phone-screen {
    min-height: auto;
  }
}
