@font-face {
  font-family: "Jugendreisen";
  src: url("fonts/Jugendreisen-Small.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --accent: #ff5252;
  --body: #292a4a;
  --muted: #9899ad;
  --link: #5f6fff;
  --surface: #ffffff;
  --page: #ffffff;
  --soft-surface: rgba(40, 40, 40, 0.04);
  --ring: rgba(0, 0, 0, 0.08);
  --footer-border: #d4d4d8;
  --review-ink: rgba(76, 23, 154, 0.6);
  --hero-subtitle: #64748b;
  --shadow-card: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-nav: 0 2px 16px rgba(0, 0, 0, 0.06);
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Jugendreisen", Georgia, serif;
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --accent: #ff6262;
    --body: #ffffff;
    --muted: #999999;
    --link: #7cbdff;
    --surface: #282828;
    --page: #1c1919;
    --soft-surface: rgba(255, 255, 255, 0.04);
    --ring: rgba(255, 255, 255, 0.1);
    --footer-border: #3f3f46;
    --review-ink: #d8b4fe;
    --hero-subtitle: #cfebfe;
    --shadow-card: 0 10px 15px -3px rgba(0, 0, 0, 0.28), 0 4px 6px -4px rgba(0, 0, 0, 0.28);
    --shadow-nav: 0 2px 16px rgba(0, 0, 0, 0.2);
  }
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100dvh;
  margin: 0;
  overflow-x: hidden;
  background: var(--page);
  color: var(--body);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
}

body.menu-open {
  overflow: hidden;
}

img,
svg,
picture {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

a:hover {
  color: var(--accent);
}

button,
input {
  font: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.site-header {
  position: fixed;
  top: 8px;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 12px 16px;
  pointer-events: none;
}

.nav-pill {
  width: 100%;
  max-width: 800px;
  padding: 10px 12px 10px 16px;
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 28px;
  box-shadow: var(--shadow-nav), 0 0 0 1px var(--ring);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: border-radius 0.2s ease;
}

@media (prefers-color-scheme: dark) {
  .nav-pill {
    background: rgba(40, 40, 40, 0.65);
  }
}

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

.brand-slot,
.nav-actions {
  display: flex;
  flex: 1 1 0;
}

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

.brand-mark {
  flex: 0 0 auto;
  color: var(--accent);
}

.brand span {
  position: relative;
  top: 0.1em;
  font-family: var(--display);
  font-size: 24px;
  line-height: 1;
  letter-spacing: -0.025em;
}

.desktop-nav {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.desktop-nav a,
.mobile-nav a:not(.button) {
  color: #52525b;
  font-weight: 500;
  white-space: nowrap;
}

@media (prefers-color-scheme: dark) {
  .desktop-nav a,
  .mobile-nav a:not(.button) {
    color: #a1a1aa;
  }
}

.nav-actions {
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}

.button {
  display: inline-block;
  border-radius: 999px;
  background: #ffffff;
  color: #000000;
  box-shadow: 0 0 0 1px var(--ring);
  font-size: 0.95rem;
  font-weight: 550;
  line-height: 1rem;
  padding: 10px 24px;
  text-align: center;
  white-space: nowrap;
  transition: color 0.2s ease-in-out, transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.button:hover {
  color: #000000;
  transform: translateY(-1px);
}

.button-small {
  padding: 10px 16px;
  line-height: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 1px var(--ring);
}

.button-dark {
  background: #000000;
  color: #ffffff;
}

@media (prefers-color-scheme: dark) {
  .button-dark {
    background: #ffffff;
    color: #000000;
  }
}

.menu-toggle {
  display: none;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #52525b;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.menu-toggle:hover {
  background: rgba(0, 0, 0, 0.05);
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
}

.close-icon,
.mobile-nav {
  display: none;
}

.nav-pill.is-open {
  border-radius: 24px;
}

.nav-pill.is-open .menu-icon {
  display: none;
}

.nav-pill.is-open .close-icon {
  display: block;
}

.mobile-nav {
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  padding: 12px 0 4px;
  border-top: 1px solid var(--ring);
}

.mobile-nav a:not(.button) {
  padding: 8px 0;
}

.hero {
  position: relative;
  display: flex;
  min-height: 1028px;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  text-align: center;
}

.hero-gradient {
  position: absolute;
  inset: 0 auto auto 50%;
  width: 2000px;
  height: 2000px;
  transform: translateX(-50%);
  background: radial-gradient(circle at 50% 52%, rgba(94, 158, 209, 0.5), rgba(94, 158, 209, 0) 70%);
  pointer-events: none;
}

.noise-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  filter: url("#noise");
  opacity: 0.05;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  height: 400px;
  flex-shrink: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 128px;
}

.ask-app-icon {
  position: relative;
  display: flex;
  width: 66px;
  height: 66px;
  align-items: center;
  justify-content: center;
  margin-bottom: 48px;
  border-radius: 18px;
  background: linear-gradient(145deg, #ff7474, #ff4040);
  box-shadow: 0 16px 28px rgba(255, 82, 82, 0.26), inset 0 0 0 1px rgba(150, 0, 0, 0.24);
}

.ask-app-icon span:first-child,
.ask-app-icon span:last-child,
.ask-avatar span:first-child,
.ask-avatar span:last-child {
  display: block;
  background: rgba(255, 255, 255, 0.62);
}

.ask-app-icon span:first-child,
.ask-avatar span:first-child {
  width: 14px;
  height: 36px;
  border-radius: 999px;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.32);
}

.ask-app-icon span:last-child,
.ask-avatar span:last-child {
  width: 23px;
  height: 23px;
  margin-left: 4px;
  border-radius: 999px;
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.32);
}

.hero h1,
.section-heading h2,
.feature-copy h3,
.ready h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
}

.hero h1 {
  max-width: 920px;
  margin-bottom: 16px;
  padding: 0 16px;
  font-size: 48px;
  line-height: 64px;
  letter-spacing: -0.025em;
  text-wrap: balance;
  word-spacing: 0.075em;
}

.hero p {
  max-width: 610px;
  margin: 0;
  color: var(--hero-subtitle);
  font-size: 20px;
  font-weight: 450;
  line-height: 1.5;
}

.hero-button {
  margin-top: 32px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05), 0 0 0 1px var(--ring);
}

.hero-devices {
  position: relative;
  z-index: 1;
  display: flex;
  flex: 1 1 auto;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
}

.hero-devices img {
  max-height: 520px;
  width: auto;
  max-width: min(100vw, 1840px);
  object-fit: scale-down;
}

.section-stack {
  position: relative;
  width: min(100%, 896px);
  margin: 0 auto;
  padding: 80px 0 160px;
}

.anchor-target {
  position: absolute;
  top: -40px;
}

.section-heading {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-label {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.5em;
  text-transform: uppercase;
}

.section-heading h2,
.ready h2 {
  margin-top: 32px;
  font-size: 2.5rem;
  line-height: 1.2;
}

.widget-showcase {
  width: min(100%, 1100px);
  padding-top: 120px;
}

.widget-demo {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.35fr);
  align-items: center;
  gap: 56px;
  margin-top: 96px;
  padding: 0 24px;
}

.widget-demo,
.widget-copy,
.site-preview,
.preview-shell,
.chat-widget {
  min-width: 0;
}

.widget-copy h3 {
  margin: 0 0 16px;
  color: #111827;
  font-size: 28px;
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.14;
  overflow-wrap: anywhere;
}

.widget-copy p {
  margin: 0;
  color: #71717a;
  font-size: 19px;
  font-weight: 450;
  line-height: 1.48;
}

.snippet-card {
  display: grid;
  gap: 10px;
  margin-top: 28px;
  padding: 18px;
  border-radius: 18px;
  background: #0f1014;
  color: #ffffff;
  max-width: 100%;
  overflow: hidden;
  box-shadow: 0 18px 30px rgba(15, 16, 20, 0.14);
}

.snippet-card span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.snippet-card code {
  display: block;
  overflow-wrap: anywhere;
  word-break: break-all;
  white-space: normal;
  color: rgba(255, 255, 255, 0.9);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 13px;
  line-height: 1.45;
}

.site-preview {
  min-width: 0;
}

.preview-shell {
  overflow: hidden;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 24px 60px rgba(39, 42, 64, 0.12), 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.preview-topbar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 54px;
  padding: 0 20px;
  border-bottom: 1px solid #edf0f4;
  background: #f8fafc;
}

.preview-topbar > span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.preview-topbar > span:nth-child(1) {
  background: #ff6b6b;
}

.preview-topbar > span:nth-child(2) {
  background: #f7bf4f;
}

.preview-topbar > span:nth-child(3) {
  background: #45c778;
}

.preview-topbar div {
  width: min(260px, 45%);
  height: 24px;
  margin-left: 16px;
  border-radius: 999px;
  background: #e8edf3;
}

.preview-content {
  position: relative;
  min-height: 520px;
  padding: 48px;
  background:
    linear-gradient(90deg, rgba(248, 250, 252, 0.98), rgba(248, 250, 252, 0.78)),
    radial-gradient(circle at 20% 20%, rgba(255, 82, 82, 0.08), transparent 34%);
}

.preview-page-copy {
  width: min(330px, 52%);
}

.preview-kicker {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.preview-page-copy h3 {
  margin: 0;
  color: #111827;
  font-size: 34px;
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 1.04;
}

.preview-page-copy p {
  margin: 18px 0 0;
  color: #71717a;
  font-size: 17px;
  line-height: 1.5;
}

.preview-lines {
  display: grid;
  gap: 14px;
  margin-top: 38px;
}

.preview-lines span {
  height: 20px;
  border-radius: 999px;
  background: #e5e7eb;
}

.preview-lines span:nth-child(1) {
  width: 92%;
}

.preview-lines span:nth-child(2) {
  width: 74%;
}

.preview-lines span:nth-child(3) {
  width: 84%;
}

.chat-widget {
  position: absolute;
  right: 36px;
  bottom: 36px;
  display: flex;
  width: min(360px, calc(100% - 72px));
  min-height: 420px;
  flex-direction: column;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(15, 23, 42, 0.08);
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid #eef0f4;
}

.chat-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #111827;
  font-size: 15px;
}

.chat-logo {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: linear-gradient(145deg, #ff7474, #ff4040);
}

.chat-logo::before,
.chat-logo::after {
  content: "";
  position: absolute;
  top: 8px;
  background: rgba(255, 255, 255, 0.66);
}

.chat-logo::before {
  left: 7px;
  width: 6px;
  height: 13px;
  border-radius: 999px;
}

.chat-logo::after {
  right: 6px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.chat-header button {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #71717a;
  font-size: 22px;
  line-height: 1;
}

.chat-thread {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
}

.chat-message {
  max-width: 88%;
  border-radius: 18px;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1.42;
  overflow-wrap: anywhere;
}

.chat-message.user {
  align-self: flex-end;
  background: #f4f4f5;
  color: #18181b;
}

.chat-message.assistant {
  display: grid;
  gap: 5px;
  align-self: flex-start;
  background: #111318;
  color: #ffffff;
}

.chat-message.assistant span {
  color: rgba(255, 255, 255, 0.68);
}

.chat-sources {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.chat-sources span {
  padding: 7px 10px;
  border-radius: 999px;
  background: #f4f4f5;
  color: #52525b;
  font-size: 12px;
  font-weight: 700;
}

.chat-composer {
  display: flex;
  gap: 8px;
  padding: 14px;
  border-top: 1px solid #eef0f4;
}

.chat-composer input {
  min-width: 0;
  flex: 1 1 auto;
  height: 42px;
  border: 1px solid #e4e4e7;
  border-radius: 999px;
  padding: 0 14px;
  background: #fafafa;
  color: #71717a;
  font-size: 13px;
}

.chat-composer button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: #111318;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 120px;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 64px;
  padding: 0;
}

.feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-copy,
.media-card {
  min-width: 0;
  flex: 1 1 0;
}

.feature-copy h3 {
  margin-bottom: 16px;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0.025em;
}

.feature-copy p {
  margin: 0;
  color: #9ca3af;
  font-size: 20px;
  font-weight: 450;
  line-height: 1.5;
}

.review-card,
.message-copy {
  border-radius: 24px;
  background: var(--soft-surface);
  box-shadow: var(--shadow-card), 0 0 0 1px var(--ring);
}

.media-card {
  overflow: visible;
}

.media-card img {
  width: 100%;
  filter: drop-shadow(0 18px 24px rgba(41, 42, 74, 0.08));
}

.waitlist {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding-bottom: 96px;
}

.waitlist-anchor {
  top: -124px;
}

.waitlist-cards {
  display: flex;
  width: min(100%, 896px);
  justify-content: center;
  gap: 16px;
  padding: 24px;
}

.launch-card {
  width: 288px;
  margin: 0;
  padding: 28px;
  border-radius: 24px;
  background: var(--soft-surface);
  box-shadow: var(--shadow-card), 0 0 0 1px var(--ring);
}

.launch-card h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.launch-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 450;
  line-height: 1.45;
}

.waitlist-button {
  font-weight: 600;
}

.reviews {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  overflow: hidden;
  padding: 88px 24px;
}

.reviews-gradient {
  background: radial-gradient(circle at 50% 52%, rgba(167, 0, 255, 0.1), rgba(94, 158, 209, 0) 70%);
}

.reviews .section-label,
.review-card figcaption {
  color: var(--review-ink);
}

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

.review-grid {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 1024px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.review-card {
  display: flex;
  max-width: 320px;
  min-height: 137px;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 24px 20px 12px;
  background: #ffffff;
  text-align: center;
}

@media (prefers-color-scheme: dark) {
  .review-card {
    background: #6b7280;
  }
}

.review-card blockquote {
  flex: 1 1 auto;
  margin: 0;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.35;
  text-wrap: pretty;
}

.review-card figcaption {
  font-size: 0.875rem;
  font-style: normal;
  font-weight: 600;
}

.ready {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  padding-bottom: 120px;
}

.ready h2 {
  margin-top: 32px;
  text-align: center;
}

.founder-message {
  display: flex;
  align-items: flex-end;
  gap: 16px;
}

.avatar {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  border-radius: 0;
}

.ask-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: linear-gradient(145deg, #ff7474, #ff4040);
  box-shadow: 0 8px 16px rgba(255, 82, 82, 0.2);
}

.ask-avatar span:first-child {
  width: 9px;
  height: 24px;
}

.ask-avatar span:last-child {
  width: 15px;
  height: 15px;
  margin-left: 3px;
}

.message-copy {
  display: flex;
  max-width: 288px;
  flex-direction: column;
  gap: 16px;
  padding: 12px 16px;
  background: #f3f4f6;
  font-size: 0.9rem;
  line-height: 1.5;
}

@media (prefers-color-scheme: dark) {
  .message-copy {
    background: #27272a;
  }
}

.message-copy p {
  margin: 0;
}

.message-copy a {
  color: var(--link);
  text-decoration: underline;
  text-decoration-style: wavy;
}

.ready-button {
  font-weight: 600;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), 0 0 0 1px var(--ring);
}

.site-footer {
  width: 100%;
  border-top: 0.5px solid var(--footer-border);
  padding: 40px 0;
  color: #52525b;
}

.live-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  font-family: var(--sans);
}

.live-widget-panel {
  display: none;
  width: min(420px, calc(100vw - 32px));
  height: min(660px, calc(100dvh - 48px));
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 80px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
}

.live-widget.is-open .live-widget-panel {
  display: flex;
  flex-direction: column;
}

.live-widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px 20px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.live-widget-brand {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 14px;
}

.live-widget-brand div {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.live-widget-brand strong {
  color: #111827;
  font-size: 20px;
  font-weight: 760;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.live-widget-brand span:not(.live-widget-logo) {
  color: #71717a;
  font-size: 14px;
  line-height: 1.25;
}

.live-widget-logo {
  position: relative;
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 13px;
  background: linear-gradient(145deg, #ff7474, #ff4040);
  box-shadow: 0 10px 22px rgba(255, 82, 82, 0.24), inset 0 0 0 1px rgba(140, 0, 0, 0.16);
}

.live-widget-logo::before,
.live-widget-logo::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.66);
}

.live-widget-logo::before {
  left: 11px;
  top: 10px;
  width: 8px;
  height: 22px;
  border-radius: 999px;
}

.live-widget-logo::after {
  right: 9px;
  top: 14px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
}

.live-widget-close {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #8b8b92;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  transition: background 160ms ease, color 160ms ease;
}

.live-widget-close:hover {
  background: #f4f4f5;
  color: #18181b;
}

.live-widget-messages {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  padding: 28px 26px;
}

.live-widget-message {
  max-width: 86%;
  border-radius: 22px;
  padding: 14px 16px;
  color: #111827;
  font-size: 15px;
  font-weight: 450;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.live-widget-message.assistant {
  align-self: flex-start;
  background: #ffffff;
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.06), 0 0 0 1px rgba(15, 23, 42, 0.06);
}

.live-widget-message.user {
  align-self: flex-end;
  background: #111318;
  color: #ffffff;
}

.live-widget-message.loading {
  display: inline-flex;
  width: auto;
  align-items: center;
  gap: 5px;
}

.live-widget-message.loading::after {
  content: "";
  width: 28px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #d4d4d8, #f4f4f5, #d4d4d8);
  background-size: 200% 100%;
  animation: widgetLoading 900ms linear infinite;
}

@keyframes widgetLoading {
  to {
    background-position: -200% 0;
  }
}

.live-widget-privacy {
  margin: 0;
  padding: 0 26px 12px;
  color: #a1a1aa;
  font-size: 12px;
  text-align: center;
}

.live-widget-form {
  display: flex;
  gap: 10px;
  padding: 0 20px 20px;
}

.live-widget-form input {
  min-width: 0;
  flex: 1 1 auto;
  height: 58px;
  border: 0;
  border-radius: 999px;
  background: #f1f1f4;
  color: #111827;
  padding: 0 20px;
  outline: none;
}

.live-widget-form input::placeholder {
  color: #9ca3af;
}

.live-widget-form button,
.live-widget-bubble {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.live-widget-form button {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  background: #111318;
  color: #ffffff;
  font-size: 28px;
  font-weight: 650;
  transition: transform 160ms ease, opacity 160ms ease;
}

.live-widget-form button:disabled {
  cursor: wait;
  opacity: 0.45;
}

.live-widget-form button:not(:disabled):hover {
  transform: translateY(-1px);
}

.live-widget-bubble {
  gap: 10px;
  width: auto;
  height: 62px;
  padding: 10px 18px 10px 12px;
  margin-left: auto;
  background: #ffffff;
  color: #111827;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.18), 0 0 0 1px rgba(15, 23, 42, 0.08);
  font-size: 15px;
  font-weight: 750;
  letter-spacing: -0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.live-widget-bubble:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.2), 0 0 0 1px rgba(15, 23, 42, 0.1);
}

.live-widget-bubble .live-widget-logo {
  width: 36px;
  height: 36px;
  border-radius: 12px;
}

.live-widget-bubble .live-widget-logo::before {
  left: 9px;
  top: 9px;
  width: 7px;
  height: 18px;
}

.live-widget-bubble .live-widget-logo::after {
  right: 8px;
  top: 12px;
  width: 12px;
  height: 12px;
}

.live-widget.is-open .live-widget-bubble {
  display: none;
}

@media (prefers-color-scheme: dark) {
  .site-footer {
    color: #a1a1aa;
  }
}

.footer-inner {
  display: flex;
  width: min(100%, 800px);
  margin: 0 auto;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  font-size: 0.875rem;
}

.brand-column {
  gap: 4px;
  font-size: 0.75rem;
}

.footer-brand {
  margin-bottom: 4px;
}

.site-footer a {
  font-weight: 500;
}

.footer-legal {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.footer-label {
  margin-bottom: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.mobile-break {
  display: none;
}

@media (max-width: 719px) {
  .site-header {
    padding-inline: 16px;
  }

  .desktop-nav,
  .desktop-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-nav.is-open {
    display: flex;
  }

  .hero {
    min-height: 760px;
  }

  .hero-copy {
    height: 360px;
    margin-top: 128px;
  }

  .hero h1 {
    max-width: 360px;
    font-size: 29px;
    line-height: 1.18;
    overflow-wrap: normal;
  }

  .hero p {
    max-width: 340px;
    padding: 0 18px;
    font-size: 16px;
  }

  .hero-devices img {
    width: calc(100vw - 28px);
    max-width: 430px;
    max-height: 360px;
    padding: 0 14px;
  }

  .hero-devices {
    justify-content: center;
    margin-top: 24px;
    transform: translateX(0);
  }

  .section-stack {
    padding: 60px 0;
  }

  .widget-showcase {
    padding-top: 80px;
  }

  .section-heading {
    padding: 0 24px;
  }

  .section-heading h2,
  .ready h2 {
    font-size: 30px;
  }

  .mobile-break {
    display: block;
  }

  .widget-demo {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 64px;
    overflow: hidden;
    padding: 0 24px;
  }

  .widget-copy h3 {
    font-size: 22px;
    line-height: 1.22;
  }

  .widget-copy p {
    font-size: 16px;
  }

  .snippet-card {
    padding: 16px;
    max-width: calc(100vw - 48px);
  }

  .preview-shell {
    border-radius: 24px;
  }

  .preview-content {
    min-height: 620px;
    padding: 28px 18px 18px;
  }

  .preview-page-copy {
    width: 100%;
  }

  .preview-page-copy h3 {
    font-size: 28px;
  }

  .preview-page-copy p {
    max-width: 300px;
    font-size: 15px;
  }

  .preview-lines {
    width: 72%;
    margin-top: 28px;
  }

  .chat-widget {
    right: 18px;
    bottom: 14px;
    left: 18px;
    width: auto;
    min-height: 370px;
  }

  .chat-message {
    max-width: 82%;
  }

  .chat-composer button {
    display: none;
  }

  .chat-message {
    font-size: 13px;
  }

  .feature-list {
    gap: 80px;
    margin-top: 80px;
  }

  .feature-row,
  .feature-row.reverse {
    flex-direction: column;
    gap: 24px;
    padding: 0 24px;
  }

  .feature-copy h3 {
    margin-bottom: 8px;
    font-size: 20px;
  }

  .feature-copy p {
    font-size: 16px;
  }

  .waitlist {
    padding-bottom: 80px;
  }

  .waitlist-cards {
    justify-content: flex-start;
    overflow-x: auto;
    padding-inline: 24px;
  }

  .launch-card {
    width: 268px;
    flex: 0 0 268px;
    padding: 20px;
  }
  .reviews {
    padding-inline: 24px;
  }

  .ready {
    gap: 40px;
  }

  .founder-message {
    padding: 0 24px;
  }

  .avatar {
    width: 48px;
    height: 48px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .live-widget {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .live-widget-panel {
    width: 100%;
    height: min(620px, calc(100dvh - 24px));
    border-radius: 28px;
  }

  .live-widget-header {
    padding: 20px 20px 16px;
  }

  .live-widget-brand strong {
    font-size: 18px;
  }

  .live-widget-messages {
    padding: 22px 20px;
  }

  .live-widget-form {
    padding: 0 16px 16px;
  }

  .live-widget-form input,
  .live-widget-form button {
    height: 54px;
  }

  .live-widget-form button {
    width: 54px;
    font-size: 24px;
  }

  .live-widget-bubble {
    height: 58px;
    padding: 10px 16px 10px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
