:root {
  color-scheme: light dark;
  --bg: #f4f4f4;
  --text: #18181a;
  --secondary: #68686d;
  --tertiary: #8b8b90;
  --line: rgba(0, 0, 0, 0.075);
  --surface: rgba(255, 255, 255, 0.75);
  --glass: rgba(255, 255, 255, 0.62);
  --glass-border: rgba(255, 255, 255, 0.95);
  --control: #1c1c1e;
  --on-control: #fff;
  --selected: rgba(0, 0, 0, 0.075);
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.045), 0 1px 3px rgba(0, 0, 0, 0.035);
  font-family:
    -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  min-height: 100%;
  overscroll-behavior: none;
}
body {
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  letter-spacing: -0.025em;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 12% 5%, #fff 0, transparent 45%),
    radial-gradient(ellipse at 85% 80%, #ddd 0, transparent 55%);
  pointer-events: none;
}
button,
input,
textarea,
select {
  font: inherit;
  letter-spacing: inherit;
}
button,
a,
input,
textarea,
select,
label {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
  border: 0;
  cursor: pointer;
  background: none;
}
button:disabled {
  opacity: 0.38;
  cursor: default;
}
button:not(:disabled):active,
.file-button:active {
  transform: scale(0.97);
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
label:has(+ input:focus-visible) {
  outline: 2px solid var(--text);
  outline-offset: 4px;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--tertiary);
  outline-offset: 2px;
}
button {
  transition:
    transform 0.18s ease,
    background 0.2s ease,
    opacity 0.2s ease;
}
h1,
h2,
h3,
p {
  margin: 0;
}
svg {
  display: block;
}
.icon {
  width: 24px;
  height: 24px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon-definitions {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
[hidden] {
  display: none !important;
}
.glass {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  box-shadow:
    var(--shadow),
    inset 0 -1px 0 rgba(0, 0, 0, 0.025);
  -webkit-backdrop-filter: blur(22px) saturate(1.1);
  backdrop-filter: blur(22px) saturate(1.1);
}
.app-shell {
  height: 100vh;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding-top: env(safe-area-inset-top);
}
.app-header {
  padding: 22px 24px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: none;
  gap: 16px;
}
.identity {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-icon {
  width: 42px;
  height: 42px;
  background: var(--control);
  color: var(--on-control);
  border-radius: 14px;
  display: grid;
  place-items: center;
  box-shadow: inset 0 1px 2px #ffffff40;
}
.brand-icon .icon {
  width: 26px;
  height: 26px;
  stroke-width: 1.5;
}
.identity h1 {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.16;
}
.identity p {
  font-size: 12px;
  letter-spacing: 0;
  color: var(--secondary);
  margin-top: 4px;
}
.glasses-link {
  height: 46px;
  min-width: 65px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.glasses-link .icon {
  width: 26px;
}
.device-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--tertiary);
}
.device-dot.connected {
  background: var(--text);
  box-shadow: 0 0 0 3px var(--selected);
}
.app-content {
  flex: 1;
  min-height: 0;
  position: relative;
  display: flex;
  flex-direction: column;
}
.panel {
  min-height: 0;
  flex: 1;
}
.scroll-panel {
  overflow: auto;
  padding: 12px 24px 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
}
.notice {
  padding: 12px 16px;
  background: var(--control);
  color: var(--on-control);
  border-radius: 18px;
  font-size: 13px;
  line-height: 1.4;
  margin: 3px 20px 9px;
  max-height: 120px;
  overflow: auto;
}
.conversation {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.messages {
  flex: 1;
  overflow: auto;
  padding: 12px 24px 20px;
  scrollbar-width: thin;
  scrollbar-color: var(--line) transparent;
  scroll-behavior: smooth;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.messages:has(.welcome) {
  padding-top: 0;
  padding-bottom: 0;
}
.welcome {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: auto 0;
  padding: 15px 0 12px;
  flex: none;
}
.welcome h2 {
  font-size: 37px;
  line-height: 1.1;
  letter-spacing: -1.8px;
  font-weight: 650;
  text-wrap: balance;
}
.welcome > p {
  margin-top: 14px;
  color: var(--secondary);
  font-size: 15px;
  line-height: 1.5;
  letter-spacing: -0.2px;
}
.suggestions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  margin-top: 21px;
  width: min(100%, 280px);
}
.suggestion {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  font-size: 13px;
  text-align: left;
  padding: 0 12px;
  border-radius: 16px;
}
.suggestion:hover {
  background: var(--selected);
}
.suggestion > .icon {
  width: 17px;
  height: 17px;
  color: var(--secondary);
}
.chevron {
  width: 15px;
  height: 15px;
  color: var(--tertiary);
  margin-left: auto;
}
.suggestion .chevron {
  width: 12px;
  height: 12px;
}
.conversation-controls {
  padding: 8px 20px 0;
  flex: none;
  max-width: 680px;
  width: 100%;
  align-self: center;
}
.voice-control {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 14px;
}
.voice-button {
  min-height: 50px;
  min-width: 204px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  font-size: 15px;
  font-weight: 600;
}
.voice-button .icon {
  width: 21px;
  height: 21px;
}
.voice-button-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--tertiary);
  margin-left: 6px;
}
.voice-button[aria-pressed="true"] {
  background: var(--control);
  color: var(--on-control);
  border-color: #ffffff24;
}
.voice-button[aria-pressed="true"] .voice-button-dot {
  background: var(--on-control);
  animation: breathe 2s ease-in-out infinite;
}
.voice-control > p {
  font-size: 11px;
  color: var(--secondary);
  letter-spacing: 0;
  margin-top: 8px;
}
.composer {
  border-radius: 29px;
  padding: 5px;
}
.composer:focus-within {
  box-shadow:
    var(--shadow),
    0 0 0 2px var(--line);
}
.composer-row {
  display: flex;
  align-items: center;
  min-height: 46px;
  gap: 3px;
}
.icon-button {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  flex: none;
}
.add-photo {
  color: var(--secondary);
}
textarea {
  display: block;
  flex: 1;
  min-width: 0;
  background: transparent;
  color: var(--text);
  border: 0;
  outline: none !important;
  resize: none;
  line-height: 24px;
  font-size: 16px;
  padding: 10px 4px;
  height: 44px;
  max-height: 108px;
  scrollbar-width: none;
}
textarea::placeholder {
  color: var(--tertiary);
}
.send-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: none;
  border-radius: 50%;
  background: var(--control);
  color: var(--on-control);
}
.send-button .icon {
  width: 22px;
  height: 22px;
  stroke-width: 2;
}
.stop-button span {
  width: 13px;
  height: 13px;
  border-radius: 3px;
  background: currentColor;
}
.conversation-footnote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--secondary);
  font-size: 10px;
  letter-spacing: 0;
  padding: 10px 0 2px;
}
.conversation-footnote .icon {
  height: 10px;
  width: 10px;
  stroke-width: 1.8;
}
.attachment-preview {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 7px 8px 9px;
  font-size: 12px;
  border-bottom: 1px solid var(--line);
}
.attachment-preview img {
  height: 36px;
  width: 44px;
  object-fit: cover;
  border-radius: 8px;
}
.attachment-preview label {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 1;
}
.attachment-preview input {
  accent-color: var(--control);
  width: 16px;
  height: 16px;
}
.attachment-preview .icon-button {
  height: 44px;
  width: 44px;
}
.attachment-preview .icon {
  height: 16px;
  width: 16px;
}
.message {
  max-width: 88%;
  font-size: 16px;
  line-height: 1.55;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  flex: none;
}
.message small {
  font-size: 10px;
  letter-spacing: 0.09em;
  font-weight: 600;
  display: block;
  margin-bottom: 7px;
  color: var(--secondary);
}
.message span {
  display: block;
}
.message.user {
  align-self: flex-end;
  background: var(--surface);
  border-radius: 23px 23px 7px 23px;
  padding: 13px 18px;
  border: 1px solid var(--glass-border);
}
.message.user small {
  display: none;
}
.message.assistant {
  align-self: flex-start;
  padding: 0 5px;
  max-width: 94%;
}
.message img {
  display: block;
  max-width: 100%;
  max-height: 200px;
  object-fit: contain;
  border-radius: 14px;
  margin-top: 12px;
}
.message.assistant span:empty::before {
  content: "•••";
  color: var(--secondary);
  letter-spacing: 4px;
  animation: breathe 1s infinite alternate;
}
.tab-bar {
  display: flex;
  flex: none;
  margin: 13px auto max(14px, env(safe-area-inset-bottom));
  border-radius: 35px;
  padding: 5px;
  gap: 3px;
  max-width: 370px;
  width: calc(100% - 40px);
  position: relative;
}
.tab-bar button {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 7px 12px;
  min-height: 53px;
  border-radius: 28px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--secondary);
}
.tab-bar button[aria-selected="true"] {
  background: var(--selected);
  color: var(--text);
  font-weight: 650;
  box-shadow: inset 0 1px 1px #ffffff50;
}
.tab-bar .icon {
  width: 22px;
  height: 22px;
  stroke-width: 1.8;
}
.page-intro {
  padding: 11px 0 23px;
}
.section-kicker {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--secondary);
}
.page-intro h2 {
  font-size: 29px;
  line-height: 1.15;
  letter-spacing: -1.1px;
  margin: 9px 0;
}
.page-intro p {
  font-size: 14px;
  color: var(--secondary);
  line-height: 1.5;
}
.viewfinder {
  background: linear-gradient(145deg, #e2e2e5, #eeeff0 60%, #d6d6d9);
  border-radius: 28px;
  aspect-ratio: 4/3;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  color: #55555c;
  border: 1px solid var(--line);
}
#camera-placeholder {
  text-align: center;
  padding: 40px 20px;
}
#camera-placeholder h3 {
  font-size: 18px;
  font-weight: 550;
  letter-spacing: -0.4px;
  margin: 13px 0 8px;
}
#camera-placeholder p {
  font-size: 13px;
  line-height: 1.55;
}
.viewfinder-icon {
  width: 62px;
  height: 62px;
  background: #ffffff55;
  border: 1px solid #ffffffb0;
  box-shadow: 0 4px 15px #00000006;
  display: grid;
  place-items: center;
  border-radius: 21px;
  margin: auto;
}
.viewfinder-icon .icon {
  width: 28px;
  height: 28px;
  stroke-width: 1.3;
}
#snapshot {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  inset: 0;
  cursor: zoom-in;
  background: #161618;
}
.frame-corner {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1.5px solid #88888855;
  pointer-events: none;
}
.top-left {
  top: 16px;
  left: 16px;
  border-right: 0;
  border-bottom: 0;
  border-top-left-radius: 5px;
}
.top-right {
  top: 16px;
  right: 16px;
  border-left: 0;
  border-bottom: 0;
  border-top-right-radius: 5px;
}
.bottom-left {
  bottom: 16px;
  left: 16px;
  border-right: 0;
  border-top: 0;
  border-bottom-left-radius: 5px;
}
.bottom-right {
  bottom: 16px;
  right: 16px;
  border-left: 0;
  border-top: 0;
  border-bottom-right-radius: 5px;
}
.image-badge {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 9px;
  border-radius: 12px;
  font-size: 8px;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--text);
}
.image-badge span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}
.photo-caption {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 10px;
  color: var(--secondary);
  padding: 11px 3px 17px;
  letter-spacing: 0;
}
.photo-actions {
  display: flex;
  gap: 10px;
}
.file-button {
  min-height: 58px;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}
.file-button .icon {
  width: 20px;
  height: 20px;
}
.group-label {
  font-size: 11px;
  color: var(--secondary);
  letter-spacing: 0.04em;
  margin: 26px 16px 8px;
}
.settings-group {
  background: var(--surface);
  border-radius: 21px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
}
.settings-row {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 57px;
  padding: 10px 16px;
  width: 100%;
  text-align: left;
  font-size: 14px;
  position: relative;
}
.settings-group > * + * {
  border-top: 1px solid var(--line);
}
.settings-row > .switch,
.settings-row > .row-value,
.settings-row > .text-button {
  margin-left: auto;
}
.row-icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--selected);
  flex: none;
}
.row-icon .icon {
  height: 18px;
  width: 18px;
  stroke-width: 1.6;
}
.row-value {
  color: var(--secondary);
  font-size: 14px;
}
.row-value + .chevron {
  margin-left: 0;
}
.stacked-row {
  display: block;
  padding: 14px 16px;
  font-size: 14px;
}
.stacked-row > span {
  display: flex;
  align-items: center;
  gap: 9px;
}
.stacked-row .icon {
  width: 18px;
  height: 18px;
  color: var(--secondary);
}
select,
.stacked-row input {
  display: block;
  width: 100%;
  min-height: 44px;
  margin-top: 8px;
  border: 0;
  border-radius: 9px;
  padding: 8px 10px;
  background: var(--selected);
  color: var(--text);
  font-size: 16px;
  max-width: 100%;
}
select:disabled {
  opacity: 1;
  color: var(--secondary);
  -webkit-text-fill-color: var(--secondary);
}
.switch {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  flex: none;
  width: 45px;
  height: 28px;
  margin-top: 0;
  margin-bottom: 0;
  border: 0;
  border-radius: 16px;
  background: #bfbfc4;
  cursor: pointer;
  transition: background 0.2s ease;
}
.switch::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 4px #0002;
  transition: transform 0.2s ease;
}
.switch:checked {
  background: var(--control);
}
.switch:checked::after {
  transform: translateX(17px);
}
.section-note {
  margin: 10px 16px;
  font-size: 12px;
  line-height: 1.6;
  color: var(--secondary);
  letter-spacing: -0.1px;
}
.device-row {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px;
}
.device-row > .row-icon {
  width: 40px;
  height: 40px;
  border-radius: 13px;
}
.device-row .row-icon .icon {
  width: 27px;
  height: 27px;
}
.row-copy {
  min-width: 0;
}
.row-copy strong {
  font-size: 14px;
  font-weight: 600;
}
.row-copy p {
  color: var(--secondary);
  font-size: 11px;
  margin-top: 5px;
  line-height: 1.45;
  letter-spacing: 0;
}
.device-actions {
  display: flex;
  padding: 2px 8px;
  gap: 6px;
}
.device-actions > * {
  flex: 1;
}
.text-button {
  font-size: 13px;
  font-weight: 550;
  min-height: 44px;
  border-radius: 12px;
  padding: 8px;
}
.text-button:hover {
  background: var(--selected);
}
.primary-button,
.secondary-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 50px;
  padding: 12px 16px;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 600;
}
.primary-button {
  background: var(--control);
  color: var(--on-control);
  box-shadow: inset 0 1px 1px #ffffff33;
  margin-bottom: 10px;
}
.primary-button .icon {
  height: 20px;
  width: 20px;
}
.secondary-button {
  background: var(--selected);
  margin: 10px 0;
}
.privacy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--secondary);
  font-size: 10px;
  letter-spacing: 0;
  margin: 24px 0 0;
}
.privacy-note .icon {
  height: 12px;
  width: 12px;
}
.advanced {
  margin-top: 22px;
}
.advanced summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 8px 16px;
  list-style: none;
  cursor: pointer;
  font-size: 13px;
  color: var(--secondary);
}
.advanced summary::-webkit-details-marker {
  display: none;
}
.advanced[open] summary .icon {
  transform: rotate(90deg);
}
.advanced .settings-group {
  margin-top: 6px;
}
.microphone-status {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  color: var(--secondary);
  margin: 15px 16px 0;
  letter-spacing: 0;
}
.microphone-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--tertiary);
}
#mic-label {
  font-size: 10px;
  margin-top: 5px;
}
.privacy-card {
  text-align: center;
  max-width: 330px;
  margin: 32px auto 20px;
  padding: 0 4px;
}
.privacy-card > .icon {
  margin: 0 auto 12px;
  height: 22px;
  width: 22px;
}
.privacy-card h3 {
  font-size: 15px;
  font-weight: 600;
}
.privacy-card p {
  color: var(--secondary);
  font-size: 12px;
  line-height: 1.65;
  margin-top: 8px;
}
#events {
  font:
    11px/1.6 ui-monospace,
    monospace;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  color: var(--secondary);
  background: var(--selected);
  border-radius: 16px;
  padding: 15px;
  max-height: 250px;
  overflow: auto;
}
.settings-signoff {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--tertiary);
  font-size: 11px;
  margin: 28px 0 6px;
}
.settings-signoff .icon {
  width: 22px;
  height: 22px;
  stroke-width: 1.3;
}
.sheet {
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--glass-border);
  border-radius: 32px 32px 0 0;
  padding: 8px 20px max(20px, env(safe-area-inset-bottom));
  margin: auto auto 0;
  width: 100%;
  max-width: 560px;
  max-height: 90dvh;
  overflow: auto;
  box-shadow: 0 -10px 80px #0002;
}
.sheet[open] {
  animation: sheet-in 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.sheet::backdrop {
  background: #0005;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.sheet-handle {
  width: 34px;
  height: 5px;
  border-radius: 4px;
  background: var(--line);
  margin: 0 auto 18px;
}
.sheet-header {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 16px;
}
.sheet-header h2 {
  font-size: 22px;
  letter-spacing: -0.75px;
  font-weight: 650;
}
.sheet-header .icon-button {
  height: 36px;
  width: 36px;
  min-height: 44px;
  min-width: 44px;
}
.sheet-header .icon {
  height: 18px;
  width: 18px;
}
.sheet-body > p:first-of-type {
  font-size: 14px;
  line-height: 1.5;
  color: var(--secondary);
  margin: 0 0 19px;
}
.sheet-body > .primary-button {
  margin-top: 22px;
}
.sheet-body > .notice {
  margin: 0 0 14px;
}
.command-list {
  background: var(--surface);
  padding: 0 16px;
  border-radius: 20px;
}
.command-list p {
  font-size: 16px;
  padding: 16px 0;
  line-height: 1.5;
}
.command-list p + p {
  border-top: 1px solid var(--line);
}
.command-list span {
  display: block;
  font-size: 12px;
  color: var(--secondary);
}
@keyframes breathe {
  50% {
    opacity: 0.35;
  }
}
@keyframes sheet-in {
  from {
    transform: translateY(35px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@media (min-width: 700px) {
  body {
    padding: 22px;
  }
  .app-shell {
    height: calc(100dvh - 44px);
    border: 1px solid var(--glass-border);
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 24px 90px #0000000a;
  }
  .app-header {
    padding: 25px 32px 17px;
  }
  .scroll-panel {
    padding: 15px max(30px, calc((100% - 520px) / 2)) 30px;
  }
  .messages {
    padding-left: max(35px, calc((100% - 610px) / 2));
    padding-right: max(35px, calc((100% - 610px) / 2));
  }
  .welcome h2 {
    font-size: 42px;
  }
  .suggestions {
    flex-direction: row;
    width: auto;
    gap: 12px;
    margin-top: 27px;
  }
  .suggestion {
    width: auto;
    background: var(--surface);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 0 16px;
  }
  .suggestion .chevron {
    display: none;
  }
  .conversation-controls {
    padding-left: 15px;
    padding-right: 15px;
  }
  .sheet {
    margin: auto;
    border-radius: 32px;
    padding: 15px 28px 24px;
  }
  .sheet-handle {
    display: none;
  }
  .sheet-header {
    margin-top: 5px;
  }
  .tab-bar {
    margin-top: 17px;
  }
}
@media (max-height: 780px) {
  .app-header {
    padding-top: 16px;
    padding-bottom: 11px;
  }
  .welcome {
    padding-top: 10px;
  }
  .welcome h2 {
    font-size: 32px;
  }
  .welcome > p {
    margin-top: 10px;
  }
  .suggestions {
    margin-top: 13px;
  }
  .suggestion {
    height: 40px;
  }
  .voice-control {
    margin-bottom: 10px;
  }
  .tab-bar {
    margin-top: 10px;
  }
  .voice-button {
    min-height: 46px;
  }
  .conversation-controls {
    padding-top: 4px;
  }
}
@media (max-height: 650px) {
  .welcome {
    padding-top: 10px;
    padding-bottom: 15px;
  }
  .welcome h2 {
    font-size: 27px;
  }
  .welcome > p {
    font-size: 13px;
  }
  .suggestions {
    margin-top: 9px;
  }
  .suggestion {
    min-height: 40px;
    height: 40px;
  }
  .voice-control > p {
    display: none;
  }
  .voice-control {
    margin-bottom: 8px;
  }
  .conversation-footnote {
    display: none;
  }
  .tab-bar {
    margin-top: 9px;
  }
  .messages:has(.welcome) {
    overflow: auto;
  }
  .app-header {
    padding-top: 12px;
  }
  .identity p {
    display: none;
  }
}
@media (max-width: 350px) {
  .app-header {
    padding-left: 18px;
    padding-right: 18px;
  }
  .scroll-panel {
    padding-left: 16px;
    padding-right: 16px;
  }
  .conversation-controls {
    padding-left: 14px;
    padding-right: 14px;
  }
  .page-intro h2 {
    font-size: 26px;
  }
  .file-button {
    font-size: 12px;
  }
  .photo-caption {
    font-size: 9px;
  }
}
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #111113;
    --text: #f0f0f2;
    --secondary: #a1a1a8;
    --tertiary: #7c7c84;
    --line: rgba(255, 255, 255, 0.09);
    --surface: rgba(38, 38, 41, 0.86);
    --glass: rgba(45, 45, 49, 0.65);
    --glass-border: rgba(255, 255, 255, 0.13);
    --control: #ececee;
    --on-control: #151517;
    --selected: rgba(255, 255, 255, 0.1);
    --shadow: 0 8px 30px #0002, 0 1px 3px #0002;
  }
  body::before {
    background:
      radial-gradient(ellipse at 5% 10%, #232326, transparent 50%),
      radial-gradient(ellipse at 95% 85%, #262628, transparent 55%);
  }
  .app-shell {
    background: transparent;
  }
  .viewfinder {
    background: linear-gradient(145deg, #232326, #2f2f32);
    color: #c4c4ca;
  }
  .viewfinder-icon {
    background: #ffffff09;
    border-color: #ffffff18;
  }
  .switch:checked::after {
    background: #252528;
  }
  .image-badge {
    background: #252525aa;
  }
  .tab-bar button[aria-selected="true"] {
    box-shadow: inset 0 1px 1px #fff2;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
@media (prefers-reduced-transparency: reduce) {
  .glass {
    background: var(--bg);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .sheet::backdrop {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
@media (prefers-contrast: more) {
  :root {
    --secondary: var(--text);
    --tertiary: var(--text);
    --line: currentColor;
  }
  .glass,
  .settings-group {
    border: 1px solid var(--text);
    background: var(--bg);
  }
}
/* The chat is the workspace; device state stays visible above it. */
.session-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 24px;
  border-bottom: 1px solid var(--line);
  min-height: 46px;
  flex: none;
  font-size: 12px;
  color: var(--secondary);
  gap: 12px;
}
.session-state {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}
.session-state > span:first-child {
  width: 6px;
  height: 6px;
  flex: none;
  border-radius: 50%;
  background: var(--tertiary);
}
.session-state > span.active {
  background: var(--text);
  box-shadow: 0 0 0 3px var(--selected);
}
.session-strip .text-button {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  font-weight: 400;
  padding: 0 0 0 10px;
  flex: none;
}
.session-strip .icon {
  width: 13px;
  height: 13px;
}
.chat-symbol {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 19px;
  border: 1px solid var(--glass-border);
  background: var(--surface);
  box-shadow: var(--shadow);
  margin-bottom: 18px;
}
.chat-symbol .icon {
  width: 30px;
  height: 30px;
  stroke-width: 1.35;
}
.welcome h2 {
  font-size: 26px;
  letter-spacing: -0.85px;
  font-weight: 600;
}
.welcome > p {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 10px;
}
.suggestions {
  margin-top: 21px;
}
.settings-signoff {
  margin-top: 22px;
}
.page-intro .section-kicker {
  display: none;
}
.page-intro h2 {
  margin-top: 0;
}
@media (min-width: 700px) {
  .session-strip {
    margin-left: 32px;
    margin-right: 32px;
  }
  .welcome h2 {
    font-size: 30px;
  }
  .welcome > p {
    font-size: 15px;
  }
}
html,
body {
  height: 100%;
  overflow: hidden;
}
.scroll-panel {
  display: flex;
  flex-direction: column;
}
.scroll-panel > * {
  flex-shrink: 0;
}
.camera-card .page-intro,
.voice-card .page-intro {
  padding: 4px 0 18px;
}
.viewfinder {
  flex: 1;
  min-height: 155px;
  max-height: 42dvh;
  aspect-ratio: auto;
}
.camera-card .photo-caption {
  padding-bottom: 12px;
}
.camera-options-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-top: 10px;
  color: var(--secondary);
  font-size: 12px;
}
.camera-options-link .icon {
  height: 13px;
  width: 13px;
}
.camera-card .privacy-note {
  margin-top: 12px;
}
.control-segments {
  display: flex;
  border-radius: 13px;
  background: var(--selected);
  padding: 3px;
  gap: 3px;
  margin-bottom: 20px;
}
.control-segments button {
  flex: 1;
  min-height: 38px;
  border-radius: 10px;
  font-size: 13px;
  color: var(--secondary);
}
.control-segments button[aria-selected="true"] {
  color: var(--text);
  background: var(--surface);
  box-shadow: 0 1px 5px #0001;
  font-weight: 600;
}
.control-subtitle {
  font-size: 20px;
  letter-spacing: -0.5px;
  margin: 0 5px 15px;
}
.speech-test-group {
  margin-top: 17px;
}
.settings-signoff {
  margin-top: auto;
  padding-top: 18px;
  gap: 7px;
  font-size: 10px;
}
.settings-signoff .icon {
  display: none;
}
.voice-card .group-label {
  margin-top: 5px;
}
.voice-card .group-label:not(:first-child) {
  margin-top: 24px;
}
.privacy-card {
  margin: 25px auto;
}
.privacy-card p {
  font-size: 12px;
}
.voice-card .page-intro p {
  font-size: 13px;
}
.camera-sheet .group-label {
  margin-top: 0;
}
#control-device .row-value {
  font-size: 12px;
}
.voice-card .settings-row {
  min-height: 53px;
}
@media (max-height: 780px) {
  .camera-card .page-intro,
  .voice-card .page-intro {
    padding-bottom: 13px;
  }
  .page-intro h2 {
    font-size: 25px;
  }
  .control-segments {
    margin-bottom: 14px;
  }
  .control-subtitle {
    margin-bottom: 10px;
  }
  .voice-card .section-note {
    font-size: 11px;
    line-height: 1.4;
    margin-top: 7px;
    margin-bottom: 7px;
  }
  .voice-card .microphone-status {
    margin-top: 10px;
  }
  .speech-test-group {
    margin-top: 10px;
  }
  .settings-signoff {
    display: none;
  }
}
@media (max-height: 650px) {
  .scroll-panel {
    padding-top: 5px;
  }
  .page-intro p {
    display: none;
  }
  .viewfinder {
    min-height: 130px;
  }
  .file-button {
    min-height: 48px;
  }
  .privacy-note {
    font-size: 9px;
  }
  .camera-options-link {
    margin-top: 4px;
  }
  .control-subtitle {
    display: none;
  }
  .voice-card .page-intro {
    padding-bottom: 9px;
  }
  .control-segments {
    margin-bottom: 12px;
  }
  .voice-card .settings-row {
    min-height: 49px;
  }
  .voice-card .stacked-row {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .voice-card .section-note {
    font-size: 10px;
  }
  .voice-card .privacy-card {
    margin: 15px auto;
  }
}
.app-shell {
  height: var(--viewport-height, 100dvh);
}
.session-strip .replay-reply {
  margin-left: auto;
  width: 44px;
  height: 44px;
}
.session-strip .replay-reply .icon {
  width: 19px;
  height: 19px;
}
.session-strip .replay-reply[hidden] + .text-button {
  margin-left: auto;
}
.file-button {
  position: relative;
}
.session-state {
  flex: 1;
}
.session-strip {
  gap: 5px;
}
@media (min-width: 700px) {
  .app-shell {
    height: calc(var(--viewport-height, 100dvh) - 44px);
  }
}
@media (prefers-color-scheme: dark) {
  .glasses-link,
  .voice-button:not([aria-pressed="true"]) {
    background: rgba(38, 38, 41, 0.85);
    color: var(--text);
  }
}
.input-meter {
  width: 44px;
  height: 5px;
  border-radius: 4px;
  background: var(--selected);
  overflow: hidden;
  margin-left: auto;
  flex: none;
}
.input-meter > span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: left;
  border-radius: inherit;
  transition: transform 0.15s ease-out;
}
