/* apps/web/browser/styles.css */
:root {
  --buncss-light: initial;
  --buncss-dark: ;
  color-scheme: light;
  --ink: #111;
  --muted: #606060;
  --line: #dedede;
  --paper: #fff;
  --wash: #f7f7f7;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

main {
  max-width: 1280px;
  margin-inline-start: auto;
  margin-inline-end: auto;
  padding: 0 40px 64px;
}

a {
  color: inherit;
  text-underline-offset: 3px;
}

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button, .button {
  display: inline-flex;
  border: 1px solid var(--line);
  background: var(--paper);
  text-decoration: none;
  cursor: pointer;
  border-radius: 4px;
  justify-content: center;
  align-items:  center;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 40px;
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

button:hover, .button:hover {
  border-color: var(--ink);
  background: var(--wash);
}

button.primary, .button.primary {
  color: #fff;
  background: #111;
  border-color: #111;
}

button.primary:hover, .button.primary:hover {
  background: #333;
}

button:disabled {
  opacity: .4;
  cursor: not-allowed;
}

input:not([type="checkbox"]), select, textarea {
  background: #fff;
  border: 1px solid #c8c8c8;
  border-radius: 4px;
  width: 100%;
  min-width: 0;
  min-height: 40px;
  padding: 8px 10px;
}

input[type="checkbox"] {
  accent-color: #111;
  flex: none;
  width: 17px;
  height: 17px;
  margin: 2px 0 0;
}

input[type="number"] {
  font-family: var(--mono);
}

label {
  display: grid;
  align-content:  start;
  gap: 7px;
  min-width: 0;
  font-size: 13px;
  font-weight: 500;
}

form {
  display: grid;
  gap: 16px;
  margin: 0;
}

fieldset {
  border: 0;
  min-width: 0;
  margin: 0;
  padding: 0;
}

legend {
  padding: 0 0 16px;
  font-weight: 600;
}

small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

p {
  margin: 0 0 12px;
}

p:last-child {
  margin-bottom: 0;
}

h1, h2, h3 {
  margin: 0;
  font-weight: 600;
}

h1 {
  letter-spacing: -.055em;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
}

h2 {
  letter-spacing: -.035em;
  font-size: 20px;
  line-height: 1.25;
}

h3 {
  letter-spacing: -.015em;
  font-size: 14px;
  line-height: 1.4;
}

code, .meta, .eyebrow, .badge {
  font-family: var(--mono);
}

code {
  overflow-wrap: anywhere;
  font-size: 12px;
}

.meta, .eyebrow {
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
}

.eyebrow {
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.muted {
  color: var(--muted);
  font-size: 12px;
}

.badge {
  display: inline-flex;
  border: 1px solid var(--line);
  white-space: nowrap;
  border-radius: 3px;
  align-items:  center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 3px 7px;
  font-size: 10px;
  font-weight: 400;
  line-height: 1.4;
}

img, video, canvas {
  border-radius: 3px;
  max-width: 100%;
  height: auto;
}

button, a, input, select, summary {
  outline-offset: 3px;
}

.save-bar strong {
  font-size: 13px;
}

.site-header {
  display: flex;
  border-bottom: 1px solid var(--ink);
  justify-content: space-between;
  align-items:  center;
  gap: 20px;
  min-height: 84px;
}

.wordmark {
  font-family: var(--mono);
  letter-spacing: -1px;
  text-decoration: none;
  font-size: 21px;
  font-weight: 700;
}

.wordmark span {
  color: #aaa;
}

.site-header nav {
  display: flex;
  align-items:  center;
  gap: 26px;
  font-size: 13px;
}

.site-header nav a {
  color: var(--muted);
  text-decoration: none;
}

.site-header nav a[aria-current="page"] {
  color: var(--ink);
  font-weight: 600;
}

.site-header nav a:hover {
  color: var(--ink);
  text-decoration: underline;
}

.nav-logout {
  min-height: 32px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 400;
}

.page-heading {
  display: flex;
  justify-content: space-between;
  align-items:  center;
  gap: 24px;
  padding: 36px 0 30px;
}

.page-heading h1 + p {
  color: var(--muted);
  margin: 10px 0 0;
}

.page-heading .eyebrow {
  margin-bottom: 8px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items:  center;
  gap: 20px;
  margin: 28px 0 16px;
}

.section-heading p {
  color: var(--muted);
  margin: 6px 0 0;
  font-size: 13px;
}

.tile, .panel, .gate-tile {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 5px;
  min-width: 0;
}

.tile {
  padding: 24px;
}

.tile > h2 {
  margin-bottom: 12px;
}

.tile > p:not(.eyebrow) {
  color: var(--muted);
}

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

.gate-tile {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
}

.tile-heading {
  display: flex;
  justify-content: space-between;
  align-items:  start;
  gap: 8px;
  margin-bottom: 4px;
}

.gate-tile p {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}

.gate-tile p strong {
  display: inline-block;
  font-family: var(--mono);
  text-transform: uppercase;
  min-width: 24px;
  font-size: 10px;
}

.gate-control {
  display: flex;
  align-items:  center;
  gap: 8px;
  margin-top: 4px;
}

.gate-control select {
  width: 100%;
}

.gate-tile > small {
  border-top: 1px solid var(--line);
  margin-top: 2px;
  padding-top: 10px;
}

.gate-tile > label {
  margin-top: 4px;
}

.settings-grid, .operations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items:  start;
  gap: 12px;
}

.panel summary {
  display: flex;
  cursor: pointer;
  list-style: none;
  justify-content: space-between;
  align-items:  center;
  gap: 16px;
  min-height: 76px;
  padding: 18px;
}

.panel summary::-webkit-details-marker {
  display: none;
}

.panel summary:after {
  content: "+";
  font-family: var(--mono);
  font-size: 18px;
  font-weight: 400;
}

.panel[open] > summary:after {
  content: "−";
}

.panel summary strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.panel summary small {
  margin-top: 3px;
}

.panel summary:hover {
  background: var(--wash);
}

.panel[open] > summary {
  border-bottom: 1px solid var(--line);
}

.panel-body {
  padding: 20px;
}

.panel-body > p {
  color: var(--muted);
  font-size: 13px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 16px;
}

.field-grid + .field-grid {
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding-top: 20px;
}

.check-label, .check-field label {
  display: flex;
  align-items:  start;
  gap: 9px;
}

.check-field small {
  margin-top: 7px;
}

.save-bar {
  position: sticky;
  z-index: 2;
  display: flex;
  background: #fff;
  border: 1px solid #111;
  border-radius: 5px;
  justify-content: space-between;
  align-items:  center;
  gap: 20px;
  padding: 16px 18px;
  bottom: 12px;
}

.save-bar small {
  margin-top: 3px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.config-reference {
  color: var(--muted);
  font-size: 11px;
}

.config-reference summary {
  cursor: pointer;
}

.config-reference code {
  display: block;
  margin-top: 8px;
}

.watermark-copy {
  display: flex;
  border: 1px dashed var(--line);
  justify-content: space-between;
  gap: 16px;
  margin-top: 20px;
  padding: 12px;
}

.operation-panel[open] {
  grid-column: 1 / -1;
}

.operation-forms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.operation-form {
  border: 1px solid var(--line);
  border-radius: 4px;
  align-content:  start;
  padding: 16px;
}

.operation-form p {
  color: var(--muted);
  font-size: 12px;
}

.operation-form:not(.operation-forms .operation-form) {
  max-width: 640px;
}

.records {
  margin-top: 20px;
}

.records:empty {
  display: none;
}

.table-scroll {
  overflow-x: auto;
  max-width: 100%;
}

table {
  border-collapse: collapse;
  width: 100%;
  font-size: 12px;
}

th, td {
  text-align: start;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  padding: 10px 12px;
}

th {
  color: var(--muted);
  background: var(--wash);
  white-space: nowrap;
  font-size: 11px;
  font-weight: 500;
}

td {
  font-family: var(--mono);
  overflow-wrap: anywhere;
  min-width: 84px;
  max-width: 260px;
  font-size: 11px;
}

[data-admin-runtime-form] {
  gap: 0;
}

[data-admin-runtime-form] > .section-heading:first-child {
  margin-top: 0;
}

[data-admin-runtime-form] .save-bar {
  margin-top: 16px;
}

[data-admin-runtime-form] .config-reference {
  margin-top: 10px;
}

[data-admin-status]:not(:empty) {
  position: sticky;
  z-index: 3;
  border: 1px solid var(--ink);
  background: #fff;
  margin-bottom: 20px;
  padding: 12px 16px;
  top: 8px;
}

.guest-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  align-items:  center;
  gap: 72px;
  padding: 64px 0;
}

.hero h1 {
  letter-spacing: -.075em;
  margin-bottom: 26px;
  font-size: clamp(60px, 7vw, 100px);
  line-height: .96;
}

.hero-copy {
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

.process-strip {
  display: flex;
  font-family: var(--mono);
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
  font-size: 11px;
}

.join-panel {
  border: 1px solid var(--ink);
  border-radius: 5px;
  padding: 30px;
}

.join-panel h2 {
  margin-bottom: 12px;
  font-size: 32px;
}

.join-panel > p:not(.eyebrow) {
  color: var(--muted);
  margin-bottom: 24px;
}

.sign-in-form {
  border-top: 1px solid var(--line);
  margin-top: 24px;
  padding-top: 22px;
}

.sign-in-form > p {
  margin: 0;
}

[data-auth-email] > button {
  width: 100%;
}

.examples-section {
  border-top: 1px solid var(--line);
}

.showcase-grid, .library-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.showcase-grid > p {
  grid-column: 1 / -1;
  display: grid;
  border: 1px dashed var(--line);
  color: var(--muted);
  place-items:  center;
  min-height: 120px;
  font-size: 13px;
}

figure {
  margin: 0;
}

figcaption {
  margin-top: 10px;
  font-size: 13px;
}

.studio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items:  start;
  gap: 20px;
}

.output-panel {
  grid-column: 1 / -1;
}

.phone-panel {
  margin-bottom: 20px;
}

.camera-panel {
  min-height: 260px;
}

.camera-panel video {
  margin: 16px 0;
}

.current-output p {
  color: var(--muted);
  font-size: 13px;
}

.current-output button {
  margin: 8px 8px 0 0;
}

.current-output img {
  display: block;
  object-fit: contain;
  max-height: 420px;
  margin: 16px 0;
}

.library-card {
  padding: 18px;
}

.card-id {
  display: grid;
  overflow-wrap: anywhere;
  gap: 8px;
}

.library-card dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 12px;
  margin: 18px 0;
  font-size: 11px;
}

dt {
  color: var(--muted);
}

dd {
  overflow-wrap: anywhere;
  margin: 0;
}

.library-card dd {
  font-family: var(--mono);
}

.library-card > p {
  overflow-wrap: anywhere;
  font-size: 11px;
}

.library-card img {
  display: block;
  width: 100%;
  margin-top: 16px;
}

.notice, [role="alert"] {
  border: 1px solid var(--ink);
  border-radius: 4px;
  margin-bottom: 20px;
  padding: 12px 16px;
  font-size: 13px;
}

[role="status"] {
  font-size: 13px;
}

:focus-visible {
  outline: 2px solid var(--ink);
}

[hidden] {
  display: none;
}

.sr-only {
  position: absolute;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
}

@media (width <= 1000px) {
  main {
    padding-inline-start: 24px;
    padding-inline-end: 24px;
  }

  .gate-grid, .library-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .guest-grid {
    gap: 36px;
  }

  .join-panel {
    padding: 24px;
  }
}

@media (width <= 680px) {
  main {
    padding: 0 16px 40px;
  }

  .site-header {
    gap: 12px;
    min-height: 70px;
  }

  .wordmark {
    font-size: 18px;
  }

  .site-header nav {
    gap: 12px;
    font-size: 12px;
  }

  .nav-logout {
    padding-inline-start: 7px;
    padding-inline-end: 7px;
  }

  .page-heading {
    align-items:  start;
    padding: 28px 0 24px;
  }

  .page-heading > .meta {
    display: none;
  }

  .page-heading > .button {
    white-space: nowrap;
  }

  .gate-grid, .settings-grid, .operations-grid, .studio-grid, .guest-grid, .library-grid, .showcase-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .guest-grid {
    gap: 32px;
    padding: 40px 0;
  }

  .hero h1 {
    font-size: 72px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .process-strip {
    margin-top: 26px;
  }

  .gate-tile, .tile, .panel-body {
    padding: 18px;
  }

  .save-bar {
    position: static;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .save-bar .actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .save-bar button {
    width: 100%;
  }

  .field-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *:before, *:after {
    animation-duration: .01ms;
    animation-iteration-count: 1;
    transition-duration: .01ms;
  }
}

.selfie-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-block-start: 16px;
  margin-block-end: 16px;
}

.selfie-choice {
  display: grid;
  background: var(--paper);
  border: 1px solid var(--line);
  gap: 8px;
  padding: 8px;
}

.selfie-choice[aria-pressed="true"] {
  border-color: var(--ink);
  outline: 2px solid var(--ink);
}

.selfie-choice img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}

.admin-tabs {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.admin-tabs [aria-current="page"] {
  font-weight: 700;
}

/* apps/web/browser/landing/landing.css */
.landing {
  position: relative;
  display: flex;
  overflow: hidden;
  isolation: isolate;
  color: #f5f4f5;
  background: #f8f8f8;
  flex-direction: column;
  max-width: none;
  min-height: 100dvh;
  margin: 0;
  padding: 12px;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

.landing-frame {
  position: relative;
  display: flex;
  overflow: hidden;
  isolation: isolate;
  background: #1a1a22;
  border-radius: 16px;
  flex-direction: column;
  flex: 1;
}

.landing-media {
  position: absolute;
  z-index: 0;
  overflow: hidden;
  background: #1a1a22;
  inset: 0;
}

.landing-noise {
  position: absolute;
  opacity: .5;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n' x='0' y='0' width='100%25' height='100%25' color-interpolation-filters='sRGB'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch' seed='7'/><feColorMatrix type='saturate' values='0'/><feComponentTransfer><feFuncA type='discrete' tableValues='0 0 0 0 0 0.35 0.7 1'/></feComponentTransfer></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-repeat: repeat;
  background-size: 200px 200px;
  inset: 0;
}

.landing .landing-poster, .landing .landing-video {
  position: absolute;
  display: block;
  object-fit: cover;
  mix-blend-mode: lighten;
  border-radius: 0;
  width: 100%;
  max-width: none;
  height: calc(100% + 20px);
  inset: 0 0 -20px;
}

.landing .landing-poster {
  display: none;
  z-index: 0;
}

.landing .landing-video {
  z-index: 1;
}

.landing-shade {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(#1a1a228c 0%, #1a1a2200 55%);
  inset: 0;
}

.landing-scrim {
  display: none;
  position: absolute;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, #1a1a22cc 0%, #1a1a2280 34%, #1a1a2200 60%);
  inset: 0;
}

@media (prefers-reduced-motion: reduce) {
  .landing .landing-video {
    display: none;
  }

  .landing .landing-poster {
    display: block;
  }
}

.landing-socials {
  position: absolute;
  z-index: 2;
  display: flex;
  color: #f5f4f5;
  align-items:  center;
  gap: 14px;
  top: 24px;
  right: 24px;
}

.landing .landing-socials a {
  display: block;
  color: inherit;
  opacity: .92;
}

.landing .landing-socials a:hover {
  opacity: 1;
}

.landing-socials svg {
  display: block;
  width: var(--landing-social-icon, 17px);
  height: var(--landing-social-icon, 17px);
}

.landing-hero {
  position: relative;
  z-index: 1;
  display: flex;
  pointer-events: none;
  flex-direction: column;
  flex: 1;
  align-items:  center;
}

.landing-heroContent {
  pointer-events: auto;
}

.landing-heroContent {
  display: flex;
  flex-direction: column;
  align-items:  center;
  margin-top: clamp(96px, 37vw, 180px);
}

.landing .landing-wordmark {
  border-radius: 0;
  width: 126px;
  height: auto;
}

.landing .landing-tagline {
  color: #f5f4f5;
  margin: 8px 0 0;
  font-size: 12px;
  font-weight: 500;
}

.landing-panel {
  --landing-input-width: 186px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items:  center;
  min-height: 72px;
  margin-top: 40px;
}

.landing-panelStage {
  display: flex;
  align-items: inherit;
  flex-direction: column;
  gap: 12px;
}

.landing .landing-pill {
  color: #0d0e19;
  cursor: pointer;
  background: #fffefe;
  border: none;
  border-radius: 29px;
  width: auto;
  height: 40px;
  min-height: 0;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
}

.landing .landing-pill:hover {
  background: #fffefe;
  border: none;
}

.landing .landing-pill:disabled {
  cursor: default;
  opacity: .7;
}

.landing .landing-form {
  display: flex;
  flex-direction: row;
  align-items:  center;
  gap: 0;
  margin: 0;
}

.landing .landing-input {
  width: var(--landing-input-width);
  overflow: hidden;
  color: #0d0e19;
  background: #fffefe;
  border: none;
  border-radius: 29px;
  flex: none;
  min-width: 0;
  height: 40px;
  min-height: 0;
  padding: 0 16px;
  font-size: 14px;
}

.landing .landing-input::placeholder {
  color: #0d0e1973;
}

.landing .landing-input:focus {
  outline: 2px solid #ffffffbf;
  outline-offset: 2px;
}

.landing .landing-input:focus-visible {
  outline: 2px solid #ffffffbf;
  outline-offset: 2px;
}

.landing .landing-input:disabled {
  opacity: .7;
}

.landing .landing-signInLine {
  color: #f5f4f5;
  margin: 2px 0 0;
  font-size: 12px;
  font-weight: 500;
}

.landing .landing-linkButton {
  display: inline;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 0;
  width: auto;
  min-height: 0;
  padding: 0;
}

.landing .landing-linkButton:hover {
  background: none;
  border: none;
}

.landing .landing-status {
  color: #f5f4f5;
  text-align: center;
  border: none;
  max-width: 280px;
  margin: 0;
  padding: 0;
  font-size: 12px;
  line-height: 1.5;
}

.landing .landing-accountLinks {
  display: flex;
  color: #f5f4f5;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin: 0;
  font-size: 12px;
  font-weight: 500;
}

.landing .landing-accountLinks a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.landing-footerBar {
  display: none;
}

.landing .landing-footerCopyright {
  margin: 0;
}

.landing .landing-footerCopyright a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.landing-footerLinks {
  display: flex;
  gap: 20px;
}

.landing .landing-footerLinks a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (width >= 768px) {
  .landing {
    --landing-inset: 48px;
    padding: 24px;
  }

  .landing-shade {
    background: linear-gradient(#1a1a2280 0%, #1a1a2200 60%);
  }

  .landing-scrim {
    display: block;
  }

  .landing-socials {
    --landing-social-icon: 22px;
    top: var(--landing-inset);
    right: var(--landing-inset);
  }

  .landing-hero {
    justify-content: center;
    align-items:  flex-start;
  }

  .landing-heroContent {
    padding-left: var(--landing-inset);
    align-items:  flex-start;
    max-width: min(60vw, 820px);
    margin-top: 0;
  }

  .landing .landing-wordmark {
    width: clamp(150px, 12vw, 190px);
  }

  .landing .landing-tagline {
    margin-top: 10px;
  }

  .landing-panel {
    align-items:  flex-start;
    margin-top: 40px;
  }

  .landing .landing-status {
    text-align: left;
    max-width: 320px;
  }

  .landing-panel {
    --landing-input-width: 220px;
  }

  .landing .landing-accountLinks {
    justify-content: flex-start;
  }

  .landing-footerBar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: var(--landing-inset);
    z-index: 1;
    display: flex;
    padding: 0 var(--landing-inset);
    color: #f5f4f5d9;
    justify-content: space-between;
    align-items:  center;
    font-size: 12px;
  }
}

@media (width >= 1440px) {
  .landing-socials {
    --landing-social-icon: 26px;
  }
}
