@font-face {
  font-family: Manrope;
  src: url("/assets/fonts/manrope.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --paper: #f5f5ef;
  --ink: #233d2e;
  --muted: #69746b;
  --line: #dfe4d9;
  --green: #244b37;
  --lime: #e8efbb;
  --white: #fffefa;
  --red: #914537;
  --font: Manrope, "Manrope Fallback";
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-synthesis: none;
  font-size: 16px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #719956;
  outline-offset: 4px;
}
img {
  max-width: 100%;
  display: block;
}
h1,
h2,
h3,
p {
  margin: 0;
}
p {
  line-height: 1.55;
}
h1 {
  font-size: clamp(42px, 5.7vw, 80px);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 1.02;
}
h2 {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.15;
}
h3 {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
}
.header {
  max-width: 1440px;
  margin: auto;
  min-height: 92px;
  padding: 22px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -1.3px;
}
.brand span {
  font-size: 10px;
  align-self: flex-start;
  position: relative;
  top: 6px;
  margin-left: -5px;
}
.header nav {
  display: flex;
  gap: 30px;
  align-items: center;
  font-size: 14px;
  color: var(--muted);
}
nav a {
  padding: 12px 0;
  position: relative;
}
nav a[aria-current="page"] {
  color: var(--ink);
}
nav a[aria-current="page"]:after {
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green);
  content: "";
}
.button {
  border: 1px solid var(--green);
  background: var(--green);
  color: var(--white);
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  transition:
    transform 0.18s,
    background 0.18s;
}
.button:hover {
  transform: translateY(-2px);
  background: #163825;
}
.button.secondary {
  background: transparent;
  color: var(--ink);
  border-color: #c9d2c4;
}
.button.secondary:hover {
  background: #e9ede2;
}
.button.small {
  min-height: 40px;
  padding: 9px 17px;
  font-size: 13px;
}
.button.danger {
  background: var(--red);
  border-color: var(--red);
}
.button svg,
.text-button svg {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}
.text-button {
  background: none;
  border: 0;
  padding: 8px 0;
  color: var(--ink);
  font-size: 14px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.skip {
  position: fixed;
  top: -60px;
  left: 20px;
  background: var(--white);
  padding: 12px;
  z-index: 100;
}
.skip:focus {
  top: 10px;
}
main {
  max-width: 1344px;
  margin: auto;
  min-height: 65vh;
}
.hero {
  padding: 70px 30px 30px;
  text-align: center;
}
.hero .subtitle {
  color: var(--muted);
  max-width: 460px;
  font-size: 17px;
  margin: 24px auto;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero .actions {
  justify-content: center;
}
.hero-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 16px;
}
.hero-gallery {
  display: flex;
  justify-content: center;
  gap: 22px;
  align-items: center;
  margin: 56px auto 30px;
  max-width: 870px;
  position: relative;
}
.sample-card {
  background: var(--white);
  border: 1px solid #d8ddcf;
  padding: 9px 9px 15px;
  border-radius: 15px;
  width: 250px;
  text-align: left;
  box-shadow: 0 12px 28px #28381a08;
  transition: transform 0.25s;
}
.sample-card:first-child {
  transform: rotate(-7deg) translateY(12px);
}
.sample-card:last-child {
  transform: rotate(7deg) translateY(12px);
}
.sample-card:nth-child(2) {
  width: 270px;
  z-index: 1;
}
.sample-card:hover {
  transform: rotate(0) translateY(-8px);
}
.sample-card img {
  aspect-ratio: 1.08;
  object-fit: cover;
  width: 100%;
  border-radius: 9px;
  background: #dfe8d3;
}
.sample-card .card-info {
  padding: 13px 6px 0;
}
.card-type {
  font-size: 11px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 7px;
}
.sample-card h3 {
  font-size: 18px;
}
.latin {
  font-size: 12px;
  font-style: italic;
  color: var(--muted);
  margin-top: 4px;
}
.caption {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin: 22px 0;
}
.intro {
  margin: 70px 48px 0;
  padding: 45px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 54px;
}
.intro h3 {
  margin: 14px 0 10px;
}
.intro p {
  font-size: 14px;
  color: var(--muted);
}
.line-icon {
  width: 28px;
  height: 28px;
}
.section {
  padding: 50px 48px;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 25px;
  margin-bottom: 30px;
}
.section-head p {
  color: var(--muted);
  max-width: 510px;
  font-size: 15px;
  margin-top: 12px;
}
.feature-mission {
  background: #e7ebdd;
  padding: 32px;
  border-radius: 18px;
  display: grid;
  grid-template-columns: 1fr 280px;
  align-items: center;
  gap: 35px;
}
.feature-mission p {
  color: var(--muted);
  max-width: 420px;
  margin: 12px 0 22px;
}
.feature-mission img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}
.tag {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 4px 7px;
  font-size: 11px;
  color: var(--muted);
  background: #fafbf6;
}
.page-heading {
  padding: 60px 48px 32px;
}
.page-heading h1 {
  font-size: 52px;
}
.page-heading p {
  color: var(--muted);
  max-width: 620px;
  margin-top: 17px;
}
.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 0 48px 24px;
  flex-wrap: wrap;
}
.filters {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.filter {
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 25px;
  padding: 9px 17px;
  font-size: 13px;
  color: var(--muted);
}
.filter.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.search {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 9px;
  padding: 11px 14px;
  width: 240px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 0 48px 60px;
}
.discovery-card {
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 13px;
  text-align: left;
  color: var(--ink);
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.discovery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px #233d2e0c;
}
.discovery-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
  background: #dfe8d3;
}
.discovery-card .card-info {
  padding: 14px 7px;
}
.discovery-card h3 {
  font-size: 17px;
}
.discovery-card .tag {
  margin-top: 12px;
}
.status-approved {
  background: #e9f0d8;
  color: #355632;
}
.status-rejected,
.status-ai_failed {
  background: #f4e6df;
  color: #834534;
}
.empty {
  margin: 0 48px 65px;
  border: 1px dashed #bfcbb8;
  border-radius: 20px;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 45px;
}
.empty-inner {
  max-width: 460px;
}
.empty .line-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 22px;
}
.empty h2 {
  font-size: 30px;
}
.empty p {
  color: var(--muted);
  font-size: 15px;
  margin: 16px 0 24px;
}
.empty .actions {
  justify-content: center;
}
.journal-summary {
  display: flex;
  gap: 30px;
  margin-top: 22px;
  font-size: 13px;
  color: var(--muted);
}
.journal-summary strong {
  font-size: 22px;
  color: var(--ink);
  margin-right: 5px;
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 0 48px 60px;
}
.mission-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
}
.mission-card .line-icon {
  margin-bottom: 22px;
}
.mission-card p {
  color: var(--muted);
  font-size: 14px;
  margin: 12px 0 22px;
  max-width: 440px;
}
.progress {
  height: 5px;
  background: #e4e8dc;
  border-radius: 9px;
  width: 100%;
  overflow: hidden;
  margin: 18px 0 9px;
}
.progress div {
  height: 100%;
  background: #7d975e;
}
.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
}
.campaign {
  border-top: 1px solid var(--line);
  margin-top: 22px;
  padding-top: 20px;
}
.campaign .button {
  margin-top: 15px;
}
.funding-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 20px;
}
.reward-layout {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 30px;
  padding: 0 48px 60px;
}
.reward-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px;
}
.reward-panel h2 {
  font-size: 28px;
}
.reward-panel p {
  font-size: 14px;
  color: var(--muted);
  margin: 15px 0;
}
.amount {
  font-size: 54px;
  letter-spacing: -3px;
  margin: 22px 0 8px;
}
.definition-list {
  margin: 24px 0 0;
}
.definition-list div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.definition-list dt {
  color: var(--muted);
}
.definition-list dd {
  margin: 0;
  text-align: right;
  overflow-wrap: anywhere;
}
.notice {
  background: #ecefdf;
  border: 1px solid #d9dfc3;
  border-radius: 10px;
  padding: 15px 18px;
  font-size: 13px;
  line-height: 1.6;
  margin: 20px 0;
}
.notice.error {
  background: #f5e8e3;
  border-color: #e6cec4;
  color: #854738;
}
.privacy-copy {
  max-width: 780px;
  padding: 0 48px 60px;
}
.privacy-copy h2 {
  font-size: 24px;
  margin: 30px 0 13px;
}
.privacy-copy p,
.privacy-copy li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 12px 0;
}
.footer {
  max-width: 1344px;
  border-top: 1px solid var(--line);
  margin: 25px auto 0;
  padding: 34px 48px 42px;
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
}
.footer p {
  font-size: 13px;
  color: var(--muted);
}
.footer > div {
  display: flex;
  gap: 22px;
  font-size: 12px;
  align-items: center;
}
.footer .text-button {
  font-size: 12px;
}
.loading {
  padding: 100px 30px;
  text-align: center;
  color: var(--muted);
}
dialog {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  color: var(--ink);
  padding: 0;
  width: min(620px, calc(100vw - 28px));
  max-height: 90dvh;
}
dialog::backdrop {
  background: #14221890;
  backdrop-filter: blur(5px);
}
.dialog-body {
  padding: 28px;
}
.dialog-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.dialog-top h2 {
  font-size: 26px;
}
.close {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 22px;
  color: var(--ink);
  flex-shrink: 0;
}
.dialog-body p {
  font-size: 14px;
  color: var(--muted);
  margin: 12px 0;
}
.dialog-body .actions {
  margin-top: 24px;
}
.camera-frame {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  aspect-ratio: 4/3;
  background: #17271e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
}
.camera-frame video,
.camera-frame img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.camera-overlay {
  position: absolute;
  inset: 18px;
  border: 1px solid #ffffff80;
  border-radius: 12px;
  pointer-events: none;
}
.camera-message {
  padding: 35px;
  font-size: 14px;
}
.photo-strip {
  display: flex;
  gap: 12px;
  margin: 14px 0;
}
.photo-strip img {
  width: 70px;
  height: 60px;
  object-fit: cover;
  border-radius: 7px;
}
.field {
  display: block;
  font-size: 13px;
  margin: 18px 0;
}
.field input:not([type="checkbox"]),
.field textarea,
.field select {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 12px;
  border: 1px solid #cbd4c3;
  background: var(--white);
  border-radius: 8px;
  color: var(--ink);
}
.field textarea {
  min-height: 85px;
  resize: vertical;
}
.checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
  margin: 18px 0;
}
.checkbox input {
  margin-top: 3px;
  flex-shrink: 0;
  width: 17px;
  height: 17px;
}
.dialog-photo {
  border-radius: 12px;
  max-height: 340px;
  object-fit: cover;
  width: 100%;
}
.dialog-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.dialog-photos img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 8px;
}
.toast {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translate(-50%, 20px);
  padding: 13px 22px;
  border-radius: 12px;
  background: var(--ink);
  color: var(--white);
  font-size: 13px;
  box-shadow: 0 5px 25px #0002;
  max-width: calc(100vw - 30px);
  z-index: 20;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s;
}
.toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
.row-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.row-list li {
  border-bottom: 1px solid var(--line);
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 13px;
  overflow-wrap: anywhere;
}
.review-grid {
  padding: 0 48px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.review-entry {
  padding: 25px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 14px;
}
.review-entry .dialog-photos {
  margin: 15px 0;
}
.review-entry p {
  font-size: 13px;
  color: var(--muted);
  margin: 12px 0;
}
.review-entry ul {
  font-size: 12px;
  color: var(--red);
  padding-left: 20px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
[hidden] {
  display: none !important;
}
.credit-list p {
  font-size: 12px;
}
.spaced {
  margin-top: 22px;
}
.code {
  font-size: 12px;
  word-break: break-all;
}
.loading-bar {
  height: 4px;
  background: var(--lime);
  border-radius: 5px;
  overflow: hidden;
  margin: 20px 0;
}
.loading-bar:after {
  content: "";
  display: block;
  height: 100%;
  width: 35%;
  background: var(--green);
  animation: loading 1.4s infinite ease-in-out;
}
@keyframes loading {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(400%);
  }
}
@media (max-width: 1000px) {
  .header {
    padding: 20px 28px;
    gap: 20px;
  }
  .header nav {
    gap: 20px;
  }
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .footer {
    flex-wrap: wrap;
  }
  .footer p {
    flex: 1;
    text-align: right;
  }
  .intro {
    gap: 25px;
  }
  .hero {
    padding-top: 60px;
  }
  .reward-layout {
    gap: 20px;
  }
  .reward-panel {
    padding: 24px;
  }
}
@media (max-width: 700px) {
  .header {
    padding: 18px 20px 0;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }
  .header .brand {
    font-size: 25px;
  }
  .header nav {
    grid-row: 2;
    grid-column: 1/-1;
    justify-content: space-between;
    gap: 16px;
    padding: 4px 0 10px;
  }
  .header .button {
    font-size: 11px;
    padding: 8px 11px;
    min-height: 36px;
  }
  .hero {
    padding: 44px 20px 15px;
  }
  .hero h1 {
    font-size: 48px;
    max-width: 440px;
    margin: auto;
  }
  .hero .subtitle {
    font-size: 15px;
    max-width: 330px;
  }
  .hero .button {
    font-size: 13px;
    padding: 12px 18px;
  }
  .hero-gallery {
    gap: 10px;
    margin-top: 42px;
  }
  .sample-card {
    padding: 5px 5px 11px;
    width: 29%;
    border-radius: 10px;
  }
  .sample-card:nth-child(2) {
    width: 35%;
  }
  .sample-card .card-info {
    padding: 9px 2px 0;
  }
  .sample-card h3 {
    font-size: 11px;
    letter-spacing: -0.03em;
  }
  .sample-card .latin {
    display: none;
  }
  .sample-card .card-type {
    font-size: 8px;
    margin-bottom: 5px;
  }
  .sample-card img {
    border-radius: 5px;
    aspect-ratio: 0.85;
  }
  .caption {
    font-size: 10px;
    margin-top: 26px;
  }
  .intro {
    margin: 30px 20px 0;
    padding: 30px 0;
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .intro article {
    display: grid;
    grid-template-columns: 30px 1fr;
    column-gap: 18px;
  }
  .intro h3 {
    margin: 0 0 8px;
    font-size: 18px;
  }
  .intro p {
    grid-column: 2;
    font-size: 13px;
  }
  .section {
    padding: 30px 20px;
  }
  .section-head {
    align-items: flex-start;
    gap: 12px;
  }
  .section-head .text-button {
    font-size: 12px;
    white-space: nowrap;
  }
  .feature-mission {
    grid-template-columns: 1fr;
    padding: 23px;
    gap: 22px;
  }
  .feature-mission img {
    height: 190px;
    grid-row: 1;
  }
  .feature-mission h3 {
    font-size: 24px;
  }
  .page-heading {
    padding: 38px 20px 25px;
  }
  .page-heading h1 {
    font-size: 40px;
  }
  .page-heading p {
    font-size: 14px;
  }
  .toolbar {
    padding: 0 20px 22px;
    gap: 15px;
  }
  .filters {
    gap: 5px;
  }
  .filter {
    padding: 8px 12px;
    font-size: 12px;
  }
  .search {
    width: 100%;
  }
  .card-grid {
    padding: 0 20px 35px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
  }
  .discovery-card .card-info {
    padding: 10px 3px;
  }
  .discovery-card h3 {
    font-size: 14px;
  }
  .discovery-card .latin {
    font-size: 10px;
  }
  .discovery-card .card-type {
    font-size: 10px;
  }
  .discovery-card .tag {
    font-size: 9px;
  }
  .empty {
    margin: 0 20px 40px;
    padding: 30px 20px;
    min-height: 340px;
  }
  .empty h2 {
    font-size: 26px;
  }
  .journal-summary {
    gap: 17px;
    font-size: 11px;
    flex-wrap: wrap;
  }
  .journal-summary strong {
    font-size: 19px;
  }
  .mission-grid {
    padding: 0 20px 35px;
    grid-template-columns: 1fr;
  }
  .mission-card {
    padding: 24px;
  }
  .reward-layout {
    padding: 0 20px 35px;
    grid-template-columns: 1fr;
  }
  .footer {
    padding: 27px 20px;
    gap: 20px;
    margin-top: 20px;
  }
  .footer .brand {
    font-size: 23px;
  }
  .footer p {
    font-size: 11px;
    max-width: 160px;
  }
  .footer > div {
    width: 100%;
    justify-content: space-between;
  }
  .dialog-body {
    padding: 22px;
  }
  .dialog-top h2 {
    font-size: 23px;
  }
  .privacy-copy {
    padding: 0 20px 35px;
  }
  .review-grid {
    padding: 0 20px 35px;
    grid-template-columns: 1fr;
  }
  .review-entry {
    padding: 20px;
  }
  .notice {
    font-size: 12px;
  }
  .amount {
    font-size: 44px;
  }
  .section-head h2 {
    font-size: 28px;
  }
}
progress.progress {
  display: block;
  border: 0;
  appearance: none;
  color: #7d975e;
}
progress.progress::-webkit-progress-bar {
  background: #e4e8dc;
  border-radius: 9px;
}
progress.progress::-webkit-progress-value {
  background: #7d975e;
  border-radius: 9px;
}
progress.progress::-moz-progress-bar {
  background: #7d975e;
  border-radius: 9px;
}
.camera-message {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #17271ed0;
}
.camera-message[hidden] {
  display: none;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  .sample-card:hover,
  .button:hover,
  .discovery-card:hover {
    transform: none;
  }
}

.hero h1 {
  font-weight: 800;
  letter-spacing: -0.055em;
}

/* Privy's own dialog retains its focus management and authentication flow. */
#privy-dialog {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #03060d66;
  --privy-color-background: #050911;
  --privy-color-background-2: #111824;
  --privy-color-background-3: #1c2634;
  --privy-color-foreground: #f0f1f5;
  --privy-color-foreground-2: #a5adba;
  --privy-color-foreground-3: #85909f;
  --privy-border-radius-md: 14px;
  --privy-border-radius-lg: 32px;
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

#privy-modal-content {
  border-radius: 32px;
  box-shadow: 0 24px 100px #0009;
}

#privy-modal-content
  div:has(> #privy-content-footer-container):has(.login-method-button) {
  min-height: min(470px, calc(100dvh - 48px));
  padding-bottom: 20px;
}

#privy-modal-content img[src$="/assets/auth-mark.svg"] {
  display: block;
  width: 90px;
  height: 90px;
  margin: 24px auto 8px;
}

#privy-modal-content h3 {
  color: #f0f1f5;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.025em;
}

#privy-modal-content .login-method-button {
  min-height: 56px;
  border: 1px solid #263141;
  border-radius: 14px;
  background: #050911;
  color: #f0f1f5;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 600;
  box-shadow: none;
}

#privy-modal-content .login-method-button:hover {
  border-color: #829c75;
  background: #111b20;
}

#privy-modal-content button:focus-visible {
  outline: 2px solid #d8ebb0;
  outline-offset: 4px;
}

#privy-modal-content button[aria-label="close modal"] {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #141c28;
  color: #8e98a7;
}

#privy-modal-content #privy-content-footer-container {
  margin-top: auto;
  padding-top: 28px;
}

#privy-modal-content #protected-by-privy {
  color: #85909f;
}
