@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700&display=swap');

:root {
  --cream: #f8f7f2;
  --paper: #fff;
  --ink: #161914;
  --text: #252921;
  --text-soft: #62685c;
  --text-softer: #818779;
  --bamboo: #8fc358;
  --bamboo-dark: #4e7d2e;
  --bamboo-pale: #e9f4dd;
  --rule: #dfe4d8;
  --danger: #a94137;
  --display: 'Figtree', system-ui, sans-serif;
  --mono: 'Figtree', system-ui, sans-serif;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(34, 49, 22, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 84% 10%, rgba(143, 195, 88, .15), transparent 24rem),
    var(--cream);
  color: var(--text);
  font-family: var(--display);
  min-height: 100%;
  overflow-x: clip;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid #47742b; outline-offset: 3px; }
.skip-link { position: fixed; left: 16px; top: -80px; background: var(--ink); color: white; padding: 12px 16px; border-radius: 8px; z-index: 100; }
.skip-link:focus { top: 16px; }
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.view { display: none; }
.view.active { display: block; }

.site-header, .app-header {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-header > nav {
  margin-left: auto;
}

.site-header > nav ~ .header-language-selector {
  margin-left: 0;
}
.brand { display: inline-flex; width: 184px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.nav-links { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--text-soft); font-size: 14px; font-weight: 600; }
.nav-links a:hover { color: var(--bamboo-dark); }
.legal-home-btn { display: none; border: 1px solid var(--rule); border-radius: 999px; background: white; color: var(--ink); padding: 9px 14px; font-size: 13px; font-weight: 700; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(330px, .9fr);
  gap: clamp(44px, 8vw, 100px);
  align-items: center;
  min-height: 660px;
  padding: 70px 0 105px;
}
.hero-copy { max-width: 650px; min-width: 0; }
.hero-eyebrow, .section-kicker {
  color: var(--bamboo-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.hero-title { color: var(--ink); font-size: clamp(52px, 7vw, 84px); line-height: .98; letter-spacing: -.055em; margin: 0; }
.hero-title span { color: var(--bamboo-dark); }
.hero-sub { color: var(--text-soft); font-size: 18px; line-height: 1.65; max-width: 590px; margin: 0 0 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note { color: var(--text-softer); font-size: 12px; margin: 18px 0 0; }

.btn-primary, .primary-btn {
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-weight: 700;
  padding: 13px 24px;
  min-height: 48px;
  transition: transform .15s ease, background .15s ease;
}
.btn-primary:hover, .primary-btn:hover { background: var(--bamboo-dark); border-color: var(--bamboo-dark); transform: translateY(-2px); }
.btn-primary:disabled { opacity: .55; cursor: wait; transform: none; }
.btn-secondary, .btn-ghost, .ghost-btn {
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: rgba(255,255,255,.75);
  color: var(--ink);
  font-weight: 700;
  padding: 12px 22px;
  min-height: 48px;
}
.btn-secondary:hover, .btn-ghost:hover, .ghost-btn:hover { border-color: var(--bamboo-dark); color: var(--bamboo-dark); }
.btn-wide { width: 100%; }

.handoff-card, .code-display {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 44px;
}
.handoff-card::after, .code-display::after {
  content: ""; position: absolute; width: 180px; height: 180px; right: -50px; top: -70px; border-radius: 50%; background: var(--bamboo-pale);
}
.panda-badge { width: 68px; height: 68px; overflow: hidden; border-radius: 18px; border: 1px solid var(--rule); margin-bottom: 40px; background: white; position: relative; z-index: 1; }
.panda-badge img { width: 100%; height: 100%; object-fit: cover; }
.handoff-card > p:first-of-type, .code-label { color: var(--text-softer); font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 8px; }
.code-text { display: block; color: var(--ink); font-family: var(--display); font-size: clamp(38px, 6vw, 62px); font-weight: 600; letter-spacing: .08em; margin: 0 0 32px; }
.card-meta, .code-footer { border-top: 1px solid var(--rule); padding-top: 22px; display: flex; justify-content: space-between; align-items: center; gap: 18px; color: var(--text-soft); font-size: 12px; }
.card-meta i, .pulse { display: inline-block; width: 8px; height: 8px; background: var(--bamboo); border-radius: 50%; margin-right: 5px; }
.slot-code { display: flex; align-items: center; gap: .08em; min-height: 86px; margin: 14px 0 12px; color: var(--ink); font-size: clamp(40px, 6vw, 62px); font-weight: 600; letter-spacing: .02em; }
.slot-code span { display: inline-block; min-width: .72em; text-align: center; text-transform: none; }
.slot-code span.spinning { color: var(--bamboo-dark); animation: slot-bounce .1s linear infinite alternate; }
.slot-code span.settled { color: var(--ink); }
.slot-caption { color: var(--text-soft); font-size: 15px; line-height: 1.55; margin: 0; padding-top: 22px; border-top: 1px solid var(--rule); }
@keyframes slot-bounce { from { transform: translateY(-3px); } to { transform: translateY(3px); } }
.handoff-route { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; margin: 24px 0 38px; }
.handoff-route > div:not(.route-arrow) { min-height: 108px; display: flex; flex-direction: column; justify-content: center; gap: 8px; border: 1px solid var(--rule); border-radius: 16px; padding: 18px; background: var(--cream); }
.handoff-route span { color: var(--bamboo-dark); font-size: 11px; font-weight: 700; letter-spacing: .1em; }
.handoff-route strong { color: var(--ink); font-size: 16px; }
.route-arrow { color: var(--bamboo-dark); font-size: 25px; }

.trust-strip { display:grid; grid-template-columns:repeat(4,1fr); gap:0; margin:12px 0 0; padding:0; overflow:hidden; border:1px solid #cfe0bf; border-radius:24px; background:linear-gradient(135deg,#fff,#eff7e8); box-shadow:0 18px 52px rgba(42,60,28,.07); }
.trust-strip article { position:relative; display:flex; align-items:center; gap:14px; min-width:0; min-height:112px; padding:22px; }
.trust-strip article + article { border-left:1px solid #d7e4cc; }
.trust-strip article:nth-child(even) { background:rgba(231,244,219,.5); }
.trust-strip article > i { flex:0 0 auto; display:grid; place-items:center; width:42px; height:42px; border-radius:13px; background:white; border:1px solid #cfe0bf; color:var(--bamboo-dark); box-shadow:0 8px 20px rgba(49,92,34,.08); }
.trust-strip article div { min-width: 0; }
.trust-strip strong { display:block; color:var(--ink); font-size:14px; margin-bottom:5px; }
.trust-strip span { display:block; color:var(--text-soft); font-size:12px; line-height:1.45; }

.features, .faq { padding: 125px 0; }
.section-title { color: var(--ink); font-size: clamp(38px, 5vw, 58px); line-height: 1.08; letter-spacing: -.04em; margin: 0 0 18px; }
.section-sub { color: var(--text-soft); font-size: 17px; line-height: 1.6; max-width: 650px; margin: 0 0 54px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature-card { min-height: 205px; display: flex; flex-direction: column; background: rgba(255,255,255,.74); border: 1px solid var(--rule); border-radius: var(--radius); padding: 24px; }
.feature-num { color: var(--bamboo-dark); font-family: var(--mono); font-size: 12px; }
.feature-card h3 { color: var(--ink); font-size: 22px; margin: 32px 0 12px; }
.feature-card p { color: var(--text-soft); line-height: 1.65; margin: 0; font-size: 14px; }

.how-it-works { background: linear-gradient(135deg, #eff7e6, #f8fbf3); color: var(--text); border: 1px solid #d6e4c9; border-radius: 30px; padding: clamp(42px, 7vw, 80px); }
.how-it-works .section-kicker { color: var(--bamboo-dark); }
.how-it-works .section-title { color: var(--ink); max-width: 660px; margin-bottom: 16px; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 60px; }
.how-heading-copy > p:last-child { max-width: 560px; color: var(--text-soft); line-height: 1.6; margin: 0; }
.how-qr { display: flex; align-items: center; gap: 16px; border: 1px solid #cfe0bf; border-radius: 18px; background: rgba(255,255,255,.8); padding: 14px 18px 14px 14px; }
.how-qr img { width: 104px; height: 104px; border-radius: 10px; }
.how-qr div { display: flex; flex-direction: column; gap: 4px; max-width: 150px; }
.how-qr strong { color: var(--ink); font-size: 14px; }
.how-qr span { color: var(--text-soft); font-size: 12px; line-height: 1.4; }
.steps-grid { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; padding: 50px 0 0; margin: 50px 0 0; border-top: 1px solid #cfe0bf; }
.step > span { display: grid; place-items: center; width: 34px; height: 34px; border: 1px solid #aac792; border-radius: 50%; color: var(--bamboo-dark); font-family: var(--mono); font-size: 12px; }
.step h3 { margin: 48px 0 10px; font-size: 18px; }
.step p { color: var(--text-soft); font-size: 13px; line-height: 1.6; margin: 0; }

.use-cases { padding: 96px 0 68px; display: grid; grid-template-columns: .8fr 1.2fr; gap: 10vw; align-items: start; }
.use-case-copy { position: sticky; top: 40px; }
.use-case-copy > p:last-child { color: var(--text-soft); line-height: 1.65; }
.use-case-list { border-top: 1px solid var(--rule); }
.use-case-list > div { display: grid; grid-template-columns: 120px 1fr; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--rule); font-size: 17px; line-height: 1.5; }
.use-case-list span { color: var(--bamboo-dark); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.faq { border-top: 1px solid var(--rule); }
.faq-list { max-width: 820px; margin-top: 46px; border-top: 1px solid var(--rule); }
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q { width: 100%; border: 0; background: transparent; padding: 24px 0; display: flex; justify-content: space-between; gap: 24px; text-align: left; color: var(--ink); font-size: 17px; font-weight: 700; }
.faq-toggle { color: var(--bamboo-dark); font-size: 24px; transition: transform .2s ease; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .2s ease; }
.faq-a > p { overflow: hidden; color: var(--text-soft); line-height: 1.65; margin: 0; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-item.open .faq-a > p { padding-bottom: 24px; }
.faq-a a { color: var(--bamboo-dark); text-decoration: underline; }

.final-cta { display: grid; grid-template-columns: 90px 1fr auto; align-items: center; gap: 32px; background: var(--bamboo-pale); border-radius: 28px; padding: 36px 42px; margin-bottom: 100px; }
.final-cta > img { width: 90px; height: 90px; border-radius: 20px; object-fit: cover; }
.final-cta h2 { margin: 0; color: var(--ink); font-size: clamp(28px, 4vw, 42px); letter-spacing: -.03em; }
.final-cta .section-kicker { margin-bottom: 6px; }

.site-footer { background: #f0f6e8; color: var(--text); border-top: 1px solid #d8e4cc; }
.footer-inner { min-height: 150px; display: grid; grid-template-columns: minmax(140px,1fr) auto auto minmax(120px,1fr); align-items: center; gap: 28px; }
.footer-brand { width: 150px; }
.footer-inner nav { display: flex; gap: 28px; color: var(--text-soft); font-size: 13px; }
.footer-inner nav a:hover { color: var(--bamboo-dark); }
.language-selector { position:relative; z-index:1; }
.language-selector[open] { z-index:50; }
.language-selector:not([open]) .language-menu { display:none; }
.language-selector summary { display:flex; align-items:center; justify-content:space-between; gap:12px; min-width:142px; min-height:42px; padding:8px 14px; border:1px solid var(--line); border-radius:12px; background:#fff; color:var(--ink); font-weight:700; cursor:pointer; list-style:none; }
.language-selector summary::-webkit-details-marker { display:none; }
.language-selector summary::after { content:"▾"; color:var(--muted); font-size:.82em; }
.language-selector[open] summary::after { transform:rotate(180deg); }
.language-menu { position:absolute; right:0; bottom:calc(100% + 8px); z-index:20; min-width:180px; padding:6px; border:1px solid var(--line); border-radius:14px; background:#fff; box-shadow:0 16px 36px rgba(31,42,25,.14); }
.language-menu a { display:block; padding:10px 12px; border-radius:9px; color:var(--ink); text-decoration:none; font-weight:700; white-space:nowrap; }
.language-menu a:hover,.language-menu a:focus-visible,.language-menu a[aria-current="page"] { background:var(--bamboo-pale); color:var(--bamboo-dark); }
.header-language-selector { margin-left:auto; flex:0 0 auto; }
.header-language-selector summary { min-width:46px; width:auto; }
.header-language-selector .language-menu { top:calc(100% + 8px); right:0; bottom:auto; left:auto; }
.footer-inner > p { justify-self: end; margin:0; color: var(--text-softer); font-size: 12px; white-space:nowrap; }

@media (min-width: 901px) {
  .market-fr .hero-copy h1 { font-size: clamp(58px, 5.25vw, 84px); }
  .market-fr .hero-copy h1 span { white-space: nowrap; }
}

.app-view { max-width: 680px; min-height: 100vh; margin: 0 auto; padding: 20px 0 80px; }
#view-send .app-view { max-width: 680px; }
#view-send .app-title { font-size: clamp(38px, 6vw, 50px); }
.app-header { margin-bottom: 70px; }
.app-back { border: 0; background: transparent; color: var(--text-soft); padding: 10px 0; }
.app-back:hover { color: var(--ink); }
.app-title { color: var(--ink); font-size: clamp(42px, 7vw, 60px); letter-spacing: -.045em; margin: 0 0 14px; }
.app-sub { color: var(--text-soft); line-height: 1.6; margin: 0 0 42px; }
.form-group { margin-bottom: 28px; }
.transfer-stack { display: grid; grid-template-columns: minmax(0, 1fr) 50px minmax(0, 1fr); align-items: stretch; }
.transfer-panel { min-width: 0; border: 1px solid var(--rule); border-radius: 20px; background: rgba(255,255,255,.82); padding: 22px; margin: 0; box-shadow: 0 14px 40px rgba(42,60,28,.05); }
.panel-heading { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; margin-bottom: 18px; }
.panel-heading .field-label { margin: 0 0 4px; color: var(--ink); }
.panel-heading p, .claim-entry-panel p { margin: 0; color: var(--text-soft); font-size: 13px; }
.panel-icon { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--bamboo-pale); color: var(--bamboo-dark); font-size: 17px; }
.optional-pill { border-radius: 999px; background: var(--cream); color: var(--text-softer); padding: 6px 9px; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.or-divider { display: flex; align-items: center; justify-content: center; }
.or-divider span { position: relative; z-index: 1; background: var(--cream); border: 1px solid var(--rule); border-radius: 999px; padding: 5px 10px; color: var(--text-softer); font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.field-label { display: block; color: var(--text-soft); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px; }
.rich-input, input[type="text"], input[type="password"] { width: 100%; min-height: 54px; border: 1px solid var(--rule); border-radius: 13px; background: white; color: var(--ink); padding: 15px 17px; font-size: 16px; }
.rich-input { min-height: 150px; max-height: 340px; overflow-y: auto; line-height: 1.55; white-space: pre-wrap; tab-size: 4; }
.rich-input:empty::before { content: attr(data-placeholder); color: var(--text-softer); }
.rich-input:focus, input:focus { border-color: var(--bamboo-dark); outline: 0; box-shadow: 0 0 0 3px rgba(143,195,88,.18); }
.dropzone { border: 1.5px dashed #b8c1ad; border-radius: 16px; background: rgba(255,255,255,.7); padding: 35px; text-align: center; color: var(--text-soft); }
.dropzone:hover, .dropzone.drag { border-color: var(--bamboo-dark); background: var(--bamboo-pale); }
.dropzone input { display: none; }
.dropzone strong { color: var(--bamboo-dark); }
.dropzone p { font-size: 13px; margin: 8px 0 0; }
.upload-mark { display: grid; place-items: center; width: 46px; height: 46px; margin: 0 auto 12px; border-radius: 50%; background: var(--bamboo-pale); color: var(--bamboo-dark); }
#view-send .rich-input { min-height: 230px; }
#view-send .dropzone { min-height: 230px; display: grid; place-items: center; }
.composer-card { border: 1px solid var(--rule); border-radius: 20px; background: rgba(255,255,255,.84); padding: 22px; box-shadow: 0 14px 40px rgba(42,60,28,.06); }
.composer-card .panel-heading { grid-template-columns: auto 1fr; }
.composer-card .rich-input { min-height: 180px !important; border-radius: 14px 14px 8px 8px; }
.composer-attachments { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 10px; }
.send-actions { display:grid; gap:10px; }
.send-actions .btn-ghost { background:#fff; }
#view-send .composer-card .dropzone { min-height: 0; display: block; width: auto; margin: 0; padding: 0; border: 0; background: transparent; text-align: left; }
.composer-card .dropzone-content { display: inline-flex; align-items: center; gap: 9px; min-height: 42px; border: 1px solid #c7d5bb; border-radius: 11px; background: var(--bamboo-pale); color: var(--bamboo-dark); padding: 9px 13px; }
.composer-card .dropzone-content strong { color: var(--bamboo-dark); font-size: 13px; }
.composer-card .dropzone-content span { color: var(--text-soft); font-size: 11px; }
.composer-card .dropzone:hover .dropzone-content,
.composer-card .dropzone.drag .dropzone-content { border-color: var(--bamboo-dark); background: #e2f0d5; }
.composer-card .file-size-info { margin: 0; white-space: nowrap; }
.file-list { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 8px; }
.file-row, .download-row { border: 1px solid var(--rule); background: white; border-radius: 10px; padding: 12px 14px; display: flex; justify-content: space-between; align-items: center; gap: 15px; font-size: 13px; }
.file-row .name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-row .size, .download-row .size { color: var(--text-softer); margin: 0 8px; }
.file-row button { border: 0; background: none; color: var(--danger); font-size: 20px; }
.file-size-info { color: var(--text-softer); font-size: 12px; text-align: right; }
.error-msg { color: var(--danger); min-height: 20px; font-size: 13px; display: none; }
.error-msg.show { display: block; }
.consent-check { display: grid; grid-template-columns: auto 1fr; align-items: start; gap: 12px; margin: 24px 0 18px; padding: 16px 18px; border: 1px solid var(--rule); border-radius: 14px; background: rgba(255,255,255,.72); color: var(--text-soft); font-size: 13px; line-height: 1.5; cursor: pointer; }
.consent-check input { position: absolute; opacity: 0; pointer-events: none; }
.check-mark { display: grid; place-items: center; width: 23px; height: 23px; border: 1.5px solid #aeb8a4; border-radius: 7px; background: white; color: transparent; margin-top: -1px; }
.consent-check input:checked + .check-mark { background: var(--bamboo-dark); border-color: var(--bamboo-dark); color: white; }
.consent-check input:focus-visible + .check-mark { outline: 3px solid rgba(78,125,46,.3); outline-offset: 2px; }
.consent-check a { color: var(--bamboo-dark); text-decoration: underline; font-weight: 600; }
.code-display { text-align: left; }
.code-display .panda-badge { margin-bottom: 28px; }
.code-instruction { color: var(--text-soft); line-height: 1.6; margin: 0 0 14px; }
.code-action { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.code-action .code-text { margin: 0; min-width: 0; }
.icon-btn { flex: 0 0 auto; display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--rule); border-radius: 50%; background: white; color: var(--bamboo-dark); }
.icon-btn:hover { border-color: var(--bamboo-dark); background: var(--bamboo-pale); }
.send-expiry { margin: 0 0 30px; color: var(--bamboo-dark); }
.claim-link-row { display: flex; align-items: center; gap: 10px; border: 1px solid var(--rule); border-radius: 12px; background: var(--cream); padding: 8px 8px 8px 13px; }
.claim-link-row > span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--text-soft); font-size: 12px; }
.claim-grid { display: grid; grid-template-columns: minmax(0, 1fr) 190px; gap: 42px; align-items: center; }
.claim-code-block { min-width: 0; }
.qr-block { border-left: 1px solid var(--rule); padding-left: 28px; text-align: center; }
.qr-block img { width: 160px; height: 160px; margin: 0 auto 12px; border-radius: 8px; background: white; }
.qr-block p { color: var(--text-soft); font-size: 12px; line-height: 1.45; margin: 0; }
.countdown { color: var(--text-soft); font-family: var(--mono); font-size: 12px; }
.countdown.warn { color: var(--danger); }
.sent-label { margin-top: 26px; }
.send-again { margin-top: 24px; }
.result-header { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-bottom: 28px; }
.result-header { border: 1px solid #cfe0bf; border-radius: 18px; background: var(--bamboo-pale); padding: 18px 20px; }
.result-kicker { display: block; color: var(--bamboo-dark); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 7px; }
.result-section { border: 1px solid var(--rule); background: white; border-radius: 16px; padding: 22px; margin-top: 16px; }
.result-section-heading { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 14px; }
.result-section-heading .field-label { margin: 0; }
.message-card { border: 1px solid var(--rule); border-radius: 14px; background: #fcfcfa; overflow: hidden; }
.message-card + .message-card { margin-top: 12px; }
.message-header { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 10px 13px; border-bottom: 1px solid var(--rule); background: var(--cream); color: var(--text-softer); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.message-copy { border: 0; background: transparent; color: var(--bamboo-dark); font-size: 11px; font-weight: 700; }
.message-content { white-space: pre-wrap; overflow-wrap: anywhere; line-height: 1.6; padding: 16px; max-height: 320px; overflow:auto; tab-size:4; }
.message-content.code-content { font-family:var(--mono); font-size:14px; line-height:1.55; overflow-wrap:normal; }
.copy-text { margin-top: 14px; }
.result-section-heading .copy-text { margin: 0; min-height: 40px; padding: 8px 14px; }
.download-row a { color: var(--bamboo-dark); font-weight: 700; }
.hero-rating-wrap { position:relative; width:max-content; max-width:100%; min-width:0; margin:12px 0 20px; z-index:4; }
.hero-rating { display:inline-flex; flex-wrap:nowrap; align-items:baseline; width:auto; max-width:100%; min-width:0; color:var(--text-soft); font-size:14px; line-height:1; white-space:nowrap; }
.hero-rating .rating-label { margin-right:9px; color:var(--text); font-weight:700; }
.hero-rating .rating-stars { margin-right:10px; color:#e2a929; font-size:25px; letter-spacing:.025em; line-height:.8; }
.hero-rating strong { color:var(--text); font-weight:800; }
.hero-rating .rating-score { display:inline-flex; align-items:baseline; color:var(--text); white-space:nowrap; }
.hero-rating .rating-score strong { font-size:25px; line-height:1; }
.hero-rating .rating-score span { font-size:14px; font-weight:400; }
.hero-rating .rating-review-count { display:inline-flex; align-items:baseline; gap:4px; margin-left:8px; }
.hero-rating .rating-review-count strong { margin-left:3px; }
.rating-popover { position:absolute; left:0; top:calc(100% + 8px); width:310px; padding:18px; border:1px solid var(--rule); border-radius:16px; background:#fff; box-shadow:0 18px 50px rgba(30,40,23,.17); opacity:0; visibility:hidden; transform:translateY(-4px); transition:.18s ease; }
.hero-rating-wrap:hover .rating-popover,.hero-rating-wrap:focus-within .rating-popover { opacity:1; visibility:visible; transform:none; }
.rating-popover>strong { display:block; margin-bottom:12px; }
#hero-rating-breakdown { display:grid; gap:7px; }
#hero-rating-breakdown>div { display:grid; grid-template-columns:28px 1fr 24px; gap:8px; align-items:center; font-size:12px; color:var(--text-soft); }
#hero-rating-breakdown i,.rating-bar { display:block; height:7px; border-radius:99px; background:#ecece7; overflow:hidden; }
#hero-rating-breakdown b,.rating-bar i { display:block; height:100%; background:#e2a929; border-radius:inherit; }
.rating-popover>a,.text-link { display:inline-block; margin-top:14px; color:var(--bamboo-dark); font-weight:700; text-decoration:underline; }
.shortcut-section { display:grid; grid-template-columns:minmax(0,1.2fr) minmax(280px,.8fr); gap:42px; align-items:center; margin:0 0 88px; padding:clamp(26px,5vw,54px); border:1px solid var(--rule); border-radius:28px; background:linear-gradient(135deg,#fff,#edf6e5); }
.shortcut-section .section-title { margin-bottom:12px; }
.shortcut-section p { color:var(--text-soft); line-height:1.65; }
.shortcut-page-link { display:grid; grid-template-columns:1fr auto; gap:6px 18px; align-items:center; padding:22px 24px; border:1px solid #c7dbb5; border-radius:18px; background:white; color:var(--ink); box-shadow:0 12px 30px rgba(42,60,28,.07); }
.shortcut-page-link span { grid-column:1; color:var(--bamboo-dark); font-size:11px; font-weight:800; letter-spacing:.11em; text-transform:uppercase; }
.shortcut-page-link strong { grid-column:1; font-size:17px; }
.shortcut-page-link i { grid-column:2; grid-row:1 / 3; color:var(--bamboo-dark); font-size:18px; transition:transform .2s ease; }
.shortcut-page-link:hover { border-color:var(--bamboo-dark); transform:translateY(-2px); }
.shortcut-page-link:hover i { transform:translateX(4px); }
.shortcut-main { padding:72px 0 110px; }
.shortcut-main > h1 { max-width:820px; margin:0 0 18px; color:var(--ink); font-size:clamp(48px,8vw,82px); line-height:1; letter-spacing:-.05em; }
.shortcut-lead { max-width:720px; margin:0; color:var(--text-soft); font-size:18px; line-height:1.7; }
.shortcut-device-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; margin:54px 0 18px; }
.shortcut-device-grid article { position:relative; overflow:hidden; min-width:0; padding:32px; border:1px solid var(--rule); border-radius:22px; background:rgba(255,255,255,.84); box-shadow:0 14px 40px rgba(42,60,28,.06); }
.shortcut-device-grid article:nth-child(2),.shortcut-device-grid article:nth-child(3) { background:linear-gradient(145deg,#fff,#eef7e6); }
.shortcut-number { display:grid; place-items:center; width:42px; height:42px; margin-bottom:28px; border:1px solid #bcd5a7; border-radius:50%; color:var(--bamboo-dark); font-size:12px; font-weight:800; }
.shortcut-device-grid h2 { margin:0 0 8px; color:var(--ink); font-size:24px; }
.shortcut-device-grid p { margin:0 0 22px; color:var(--text-soft); line-height:1.6; }
.shortcut-device-grid ol { margin:0; padding-left:22px; color:var(--text-soft); }
.shortcut-device-grid li { padding:6px 0 6px 5px; line-height:1.55; }
.shortcut-device-grid strong { color:var(--text); }
.shortcut-note { display:grid; grid-template-columns:1fr auto; gap:8px 28px; align-items:center; margin-top:16px; padding:26px 30px; border:1px solid #cfe0bf; border-radius:22px; background:linear-gradient(135deg,#eaf5df,#f8fbf5); }
.shortcut-note > strong { color:var(--ink); font-size:19px; }
.shortcut-note p { grid-column:1; margin:0; color:var(--text-soft); line-height:1.6; }
.shortcut-note p span { color:var(--ink); font-weight:700; }
.shortcut-note .btn-primary { grid-column:2; grid-row:1 / 3; }
.testimonials { margin:90px 0; }
.testimonial-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; margin-top:28px; }
.testimonial-card { border:1px solid var(--rule); border-radius:20px; background:white; padding:24px; box-shadow:0 12px 35px rgba(42,60,28,.06); }
.testimonial-person { margin:0 0 4px; font-weight:700; }
.testimonial-person span { display:block; margin-top:7px; color:#e2a929; letter-spacing:.08em; }
.testimonial-date { margin:0; color:var(--text-softer); font-size:12px; }
.testimonial-card blockquote { margin:20px 0 0; color:var(--text); font-weight:700; line-height:1.65; white-space:pre-wrap; }
.review-translation-note { margin:10px 0 0; color:var(--text-softer); font-size:11px; font-style:italic; }
.review-tool { margin-top:28px; padding:26px; border:1px solid #cfe0bf; border-radius:22px; background:white; }
.review-tool h2 { margin:0 0 6px; font-size:22px; }
.review-tool > p:not(.section-kicker):not(.error-msg) { color:var(--text-soft); margin:0 0 16px; }
.star-input { display:flex; gap:5px; margin:16px 0 20px; }
.star-input button { border:0; background:transparent; padding:2px; color:#c8ccbf; font-size:32px; line-height:1; cursor:pointer; }
.star-input button.selected { color:#e2a929; }
.star-input button:focus-visible { outline:3px solid rgba(78,125,46,.28); outline-offset:3px; border-radius:4px; }
.review-comment-label { display:block; color:var(--text); font-size:12px; font-weight:700; margin:14px 0 7px; }
.review-name, #review-comment { width:100%; border:1px solid var(--rule); border-radius:12px; padding:13px; font:inherit; color:var(--text); background:#fcfcfa; }
.review-name { min-height:48px; }
#review-comment { min-height:100px; resize:vertical; margin-bottom:10px; }
.review-name:focus, #review-comment:focus { outline:3px solid rgba(78,125,46,.18); border-color:var(--bamboo-dark); }
.review-details[hidden] { display:none; }
.review-details-toggle { display:inline-flex; margin:10px 0 0; padding:0; border:0; background:transparent; color:var(--bamboo-dark); font:inherit; font-size:13px; font-weight:800; text-decoration:underline; cursor:pointer; }
.review-moderation-note { margin:14px 0 8px; color:var(--text-softer); font-size:12px; }
.share-tool { margin-top: 28px; padding: 26px; border: 1px solid #cfe0bf; border-radius: 22px; background: linear-gradient(135deg, #eef7e5, #fafcf7); }
.share-copy { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.share-copy .field-label { margin-bottom: 4px; color: var(--bamboo-dark); }
.share-copy h2 { margin: 0 0 5px; color: var(--ink); font-size: 22px; }
.share-copy p { margin: 0; color: var(--text-soft); font-size: 13px; }
.share-panda { flex: 0 0 auto; width: 64px; height: 64px; overflow: hidden; border: 1px solid #cfe0bf; border-radius: 16px; background: white; }
.share-panda img { width: 100%; height: 100%; object-fit: cover; }
.share-buttons { display: flex; flex-wrap: wrap; gap: 8px; }
.share-buttons a { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 46px; padding: 10px 16px; border: 1px solid #c9dbb8; border-radius: 13px; background: white; color: var(--text); font-size: 12px; font-weight: 700; box-shadow: 0 7px 18px rgba(42,60,28,.06); }
.share-buttons a i { color: var(--bamboo-dark); font-size: 15px; }
.share-buttons a:hover { border-color: var(--bamboo-dark); color: var(--bamboo-dark); transform: translateY(-2px); }
.claim-entry-panel { display: grid; grid-template-columns: auto 1fr; gap: 16px; border: 1px solid var(--rule); border-radius: 20px; background: white; padding: 22px; }
.claim-entry-panel .field-label { color: var(--ink); margin-bottom: 4px; }
.claim-entry-panel input { margin-top: 16px; }
.toast { position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 30px); background: var(--ink); color: white; border-radius: 999px; padding: 12px 18px; opacity: 0; pointer-events: none; transition: .2s ease; z-index: 99; font-size: 13px; }
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.legal-main { max-width: 780px; margin: 0 auto; padding: 70px 0 120px; }
.legal-main h1 { color: var(--ink); font-size: clamp(44px, 7vw, 68px); letter-spacing: -.045em; margin: 0 0 16px; }
.legal-updated { color: var(--text-softer); margin-bottom: 56px; }
.legal-main h2 { color: var(--ink); font-size: 24px; margin: 42px 0 12px; }
.legal-main h3 { color: var(--ink); font-size: 17px; margin: 28px 0 8px; }
.legal-main p, .legal-main li { color: var(--text-soft); line-height: 1.75; }
.legal-main a { color: var(--bamboo-dark); text-decoration: underline; }
.legal-main ul { padding-left: 22px; }
.contact-card { background: white; border: 1px solid var(--rule); border-radius: 20px; padding: 30px; margin-top: 38px; }
.contact-card a { font-size: 22px; font-weight: 700; }
.contact-form,.public-review-form { background:white; border:1px solid var(--rule); border-radius:22px; padding:clamp(22px,4vw,34px); margin:34px 0; }
.public-review-form[hidden] { display:none; }
.leave-review-toggle { justify-self:end; align-self:end; min-height:36px; padding:8px 15px; border:1px solid #78aa48; border-radius:999px; background:#8fc358; color:#16200f; font:inherit; font-size:12px; font-weight:800; cursor:pointer; }
.leave-review-toggle:hover { background:#80b44a; }
.moderation-note { color:var(--bamboo-dark); font-weight:700; font-size:13px; }
.contact-form label,.public-review-form label { display:block; margin:15px 0 7px; color:var(--text); font-weight:700; font-size:13px; }
.contact-form input,.contact-form textarea,.public-review-form input,.public-review-form textarea { width:100%; border:1px solid var(--rule); border-radius:12px; padding:13px; font:inherit; background:#fcfcfa; }
.contact-form textarea,.public-review-form textarea { min-height:150px; resize:vertical; }
.contact-form button,.public-review-form button.btn-primary { margin-top:16px; }
.reviews-page { max-width:980px; margin:0 auto; padding:70px 0 110px; }
.reviews-page h1 { font-size:clamp(48px,8vw,78px); margin:0 0 14px; }
.reviews-lead { color:var(--text-soft); font-size:18px; }
.reviews-overview { display:grid; grid-template-columns:240px minmax(0,1fr) auto; gap:26px; align-items:center; margin:40px 0 28px; padding:30px; border:1px solid var(--rule); border-radius:24px; background:white; }
.reviews-score { display:grid; text-align:center; align-content:center; gap:6px; }
.reviews-score>strong { font-size:60px; line-height:1; }
.large-stars,.review-card-stars { color:#e2a929; letter-spacing:.06em; }
.large-stars { font-size:25px; }
.rating-breakdown { display:grid; gap:10px; }
.rating-breakdown>div { display:grid; grid-template-columns:max-content minmax(100px,1fr) 30px; gap:12px; align-items:center; color:var(--text-soft); font-size:13px; }
.rating-breakdown>div>span:first-child { min-width:72px; white-space:nowrap; }
.all-reviews { margin-top:60px; }
.reviews-list-heading { display:flex; justify-content:space-between; gap:20px; align-items:end; }
.reviews-list-heading h2 { margin-bottom:5px; }
.reviews-list-heading p { margin:0; color:var(--text-softer); font-size:13px; }
.review-filters { display:flex; flex-wrap:wrap; gap:12px; align-items:end; margin-top:22px; padding-bottom:20px; border-bottom:1px solid var(--rule); }
.review-filters>label,.star-filter-field { flex:1 1 190px; color:var(--text); font-size:12px; font-weight:700; }
.review-filters>label { position:relative; }
.review-filters select { appearance:none; -webkit-appearance:none; display:block; width:100%; height:42px; margin-top:7px; padding:0 34px 0 10px; border:1px solid var(--rule); border-radius:10px; background:#fcfcfa; color:var(--text); font-family:inherit; font-size:13px; font-weight:400; line-height:40px; }
.review-filters>label::after { content:"⌄"; position:absolute; right:12px; bottom:11px; color:var(--text-softer); font-size:13px; line-height:1; pointer-events:none; }
.review-filters select:focus { outline:none; border-color:var(--bamboo-dark); box-shadow:0 0 0 3px rgba(78,125,46,.13); }
.filter-label { display:block; color:var(--text); font-size:12px; font-weight:700; }
.star-filter-menu { position:relative; min-width:0; margin-top:7px; }
.star-filter-menu summary { display:flex; align-items:center; min-height:42px; padding:8px 34px 8px 10px; border:1px solid var(--rule); border-radius:10px; background:#fcfcfa; cursor:pointer; list-style:none; }
.star-filter-menu summary::-webkit-details-marker { display:none; }
.star-filter-menu summary::after { content:"⌄"; position:absolute; right:12px; top:10px; color:var(--text-softer); }
.star-filter-menu[open] summary { border-color:var(--bamboo-dark); box-shadow:0 0 0 3px rgba(78,125,46,.13); }
.star-filter-menu summary strong { color:var(--text); font-size:13px; font-weight:400; }
.star-filter-options { position:absolute; z-index:20; top:calc(100% + 7px); left:0; width:100%; min-width:230px; padding:8px; border:1px solid var(--rule); border-radius:12px; background:#fff; box-shadow:0 16px 40px rgba(30,40,23,.16); }
.star-filter-options label { display:grid; grid-template-columns:20px 1fr auto; gap:8px; align-items:center; padding:9px; border-radius:8px; cursor:pointer; }
.star-filter-options label:hover { background:var(--cream); }
.star-filter-options label[hidden] { display:none; }
.star-filter-options input { accent-color:var(--bamboo-dark); }
.star-filter-options span { color:#e2a929; letter-spacing:.04em; }
.star-filter-options strong { color:var(--text-softer); font-size:12px; }
.review-filters .ghost-btn { min-height:42px; padding:8px 14px; }

.maintenance-banner { display:flex; justify-content:center; align-items:center; gap:10px; padding:11px 18px; background:#fff4cf; border-bottom:1px solid #ead78c; color:#4d4323; font-size:14px; text-align:center; }
.maintenance-banner[hidden] { display:none; }
.maintenance-composer-shell { position:relative; }
.maintenance-overlay { position:absolute; inset:0; z-index:5; display:grid; place-items:center; padding:24px; border-radius:24px; background:rgba(250,249,242,.74); backdrop-filter:blur(3px); text-align:center; }
.maintenance-overlay[hidden] { display:none; }
.maintenance-overlay>div { max-width:480px; padding:28px; border:1px solid var(--rule); border-radius:20px; background:rgba(255,255,255,.96); box-shadow:0 18px 50px rgba(30,40,23,.12); }
.maintenance-overlay i { display:block; margin-bottom:12px; color:var(--bamboo-dark); font-size:24px; }
.maintenance-overlay strong { display:block; font-size:22px; }
.maintenance-overlay p { margin:8px 0 18px; color:var(--text-soft); line-height:1.5; }
.maintenance-active #maintenance-blur-target { filter:blur(3px); opacity:.6; pointer-events:none; user-select:none; }
.maintenance-active .consent-check,.maintenance-active .send-actions { opacity:.48; pointer-events:none; }
#all-reviews-list { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; margin-top:24px; }
.reviews-load-more { display:block; margin:24px auto 0; }
.reviews-load-more[hidden] { display:none; }
.public-review-card { display:flex; flex-direction:column; min-width:0; min-height:230px; border:1px solid var(--rule); border-radius:18px; background:white; padding:20px; }
.public-review-card>div { display:grid; gap:8px; }
.public-review-card time { display:block; color:var(--text-softer); font-size:12px; margin-top:5px; }
.public-review-card p { white-space:pre-wrap; color:var(--text-soft); line-height:1.6; }
.public-review-card .review-quote { color:var(--text); font-weight:700; }
.public-review-card .review-no-comment { color:var(--text-softer); font-style:italic; }
.flag-review { align-self:flex-start; margin-top:auto; border:0; background:none; padding:12px 0 0; color:var(--text-softer); text-decoration:underline; font-size:12px; }
.flag-dialog { position:fixed; inset:0; z-index:100; display:grid; place-items:center; padding:20px; background:rgba(16,18,14,.48); }
.flag-dialog[hidden] { display:none; }
.flag-dialog>div { position:relative; width:min(500px,100%); padding:28px; border-radius:20px; background:white; }
.flag-dialog h2 { margin:0 36px 10px 0; }
.flag-dialog p { color:var(--text-soft); line-height:1.55; }
.flag-dialog textarea { width:100%; min-height:130px; border:1px solid var(--rule); border-radius:12px; padding:12px; }
.flag-dialog textarea:focus { outline:3px solid rgba(78,125,46,.18); border-color:var(--bamboo-dark); }
.flag-dialog .btn-primary { width:auto; min-width:160px; margin-top:12px; padding:12px 20px; }
.flag-close { position:absolute; right:14px; top:10px; border:0; background:none; font-size:28px; }

.error-page { min-height: 100vh; display:flex; flex-direction:column; padding:0; }
.error-card { width: min(620px, calc(100% - 40px)); margin:auto; text-align: center; border: 1px solid var(--rule); border-radius: 28px; background: white; box-shadow: var(--shadow); padding: clamp(36px, 8vw, 70px); }
.error-page .site-footer { width:100%; margin-top:70px; }
.error-card > img { width: 72px; height: 72px; object-fit: cover; border: 1px solid var(--rule); border-radius: 18px; margin: 0 auto 26px; }
.error-code { display: flex; justify-content: center; gap: .04em; min-height: 1.2em; color: var(--ink); font-size: clamp(84px, 18vw, 150px); line-height: 1; letter-spacing: -.06em; margin: 0; }
.error-code span { min-width: .66em; }
.error-code span.settled { color: var(--bamboo-dark); }
.error-card h2 { color: var(--ink); margin: 6px 0 32px; font-size: clamp(25px, 5vw, 36px); }

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 70px; }
  .handoff-card { max-width: 560px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 180px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .section-heading { grid-template-columns: 1fr; gap: 32px; }
  .shortcut-section { grid-template-columns:1fr; }
  .trust-strip { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .trust-strip article:nth-child(3) { border-left:0; border-top:1px solid #d7e4cc; }
  .trust-strip article:nth-child(4) { border-top:1px solid #d7e4cc; }
  .testimonial-grid { grid-template-columns:1fr; }
  .reviews-overview { grid-template-columns:1fr; }
  .how-qr { justify-self: start; }
  .use-cases { grid-template-columns: 1fr; gap: 45px; }
  .use-case-copy { position: static; }
  .final-cta { grid-template-columns: 70px 1fr; }
  .final-cta .hero-cta { grid-column: 1 / -1; }
  .transfer-stack { grid-template-columns: 1fr; }
  .or-divider { height: 38px; }
  #view-send .rich-input, #view-send .dropzone { min-height: 170px; }
  #all-reviews-list { grid-template-columns:repeat(2,minmax(0,1fr)); }
  .reviews-overview { grid-template-columns:210px minmax(0,1fr); }
  .reviews-overview .leave-review-toggle { grid-column:1/-1; }
}
@media (max-width: 680px) {
  .wrap { width: min(100% - 28px, 1180px); }
  .nav-links { display: none; }
  .legal-home-btn { display: inline-flex; }
  .site-header { min-height: 78px; }
  .brand { width: 155px; }
  .hero { padding: 52px 0 80px; gap: 46px; }
  .hero-title { font-size: 50px; }
  .hero-rating-wrap { width:100%; }
  .hero-rating { width:max-content; max-width:100%; font-size:11px; }
  .hero-rating .rating-label { margin-right:6px; }
  .hero-rating .rating-stars { margin-right:7px; font-size:17px; letter-spacing:0; }
  .hero-rating .rating-score strong { font-size:18px; }
  .hero-rating .rating-score span { font-size:11px; }
  .hero-rating .rating-review-count { gap:3px; margin-left:6px; }
  .hero-rating .rating-review-count strong { margin-left:1px; }
  .rating-popover { width:min(310px, calc(100vw - 40px)); }
  .hero-sub { font-size: 16px; }
  .hero-cta > * { flex: 1 1 100%; }
  .trust-strip { grid-template-columns:1fr; gap:0; }
  .trust-strip article { min-height:96px; }
  .trust-strip article + article { border-left:0; border-top:1px solid #d7e4cc; }
  .shortcut-main { padding:48px 0 80px; }
  .shortcut-device-grid { grid-template-columns:1fr; margin-top:38px; }
  .shortcut-device-grid article:nth-child(3) { background:rgba(255,255,255,.84); }
  .shortcut-device-grid article:nth-child(even) { background:linear-gradient(145deg,#fff,#eef7e6); }
  .shortcut-note { grid-template-columns:1fr; }
  .shortcut-note .btn-primary { grid-column:1; grid-row:auto; justify-self:start; margin-top:10px; }
  .features, .faq { padding: 88px 0; }
  .how-it-works { border-radius: 20px; padding: 38px 24px; }
  .section-heading { display: block; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .step h3 { margin-top: 18px; }
  .use-cases { padding: 64px 0 50px; gap:34px; }
  .use-case-list > div { grid-template-columns: 1fr; gap: 7px; }
  .final-cta { grid-template-columns: 1fr; padding: 28px; }
  .final-cta .hero-cta { grid-column: auto; }
  .footer-inner { grid-template-columns: 1fr; padding: 40px 0; align-items: start; }
  .footer-inner nav { flex-direction: column; gap: 14px; }
  .footer-inner > p { justify-self: start; }
  .language-selector,.language-selector summary { width:100%; }
  .language-menu { left:0; right:auto; min-width:100%; }
  .header-language-selector { width:auto; margin-left:auto; }
  .header-language-selector summary { width:46px; min-width:46px; justify-content:center; padding:8px; }
  .header-language-selector summary::after,.header-language-selector .language-current { display:none; }
  .header-language-selector .language-menu { left:auto; right:0; min-width:180px; }
  .review-filters { display:grid; grid-template-columns:1fr; }
  .review-filters>label,.star-filter-field { width:100%; min-width:0; }
  .reviews-overview { grid-template-columns:1fr; }
  .reviews-overview .leave-review-toggle { grid-column:auto; justify-self:center; }
  #all-reviews-list { grid-template-columns:1fr; }
  .app-header { margin-bottom: 44px; }
  .app-view { padding-bottom: 50px; }
  .handoff-card, .code-display { padding: 28px; border-radius: 20px; }
  .code-text { font-size: 36px; letter-spacing: .06em; }
  .code-footer { align-items: flex-start; flex-direction: column; }
  .handoff-route { grid-template-columns: 1fr; }
  .route-arrow { transform: rotate(90deg); justify-self: center; }
  .claim-grid { grid-template-columns: 1fr; gap: 28px; }
  .qr-block { border-left: 0; border-top: 1px solid var(--rule); padding: 24px 0 0; }
  .qr-block img { width: min(220px, 100%); height: auto; aspect-ratio: 1; }
  .slot-code { gap: .04em; min-height: 68px; font-size: 38px; }
  .how-qr { width: 100%; }
  .panel-heading { grid-template-columns: auto 1fr; }
  .optional-pill { grid-column: 2; justify-self: start; }
  .share-copy { align-items: flex-start; }
  .share-buttons a { flex: 1 1 calc(50% - 8px); }
  .composer-attachments { align-items: flex-start; flex-direction: column; }
  .composer-card .dropzone-content { flex-wrap: wrap; }
}
@media (max-width: 380px) {
  .hero-rating { font-size:9.5px; }
  .hero-rating .rating-label { margin-right:4px; }
  .hero-rating .rating-stars { margin-right:4px; font-size:14px; }
  .hero-rating .rating-score strong { font-size:15px; }
  .hero-rating .rating-score span { font-size:9.5px; }
  .hero-rating .rating-review-count { gap:2px; margin-left:4px; }
  .hero-rating .rating-review-count strong { margin-left:0; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}
