/* =========================================================
   ReviewSolicitors – Client Assist Plus demo screen
   Design source: Figma "Screen 1" (3840 x 2160)
   All sizes below are in design pixels; js/main.js scales
   the .stage to fit the viewport.
   ========================================================= */

:root {
  --green-200: #08aa4e;
  --green-400: #069644;
  --green-dark: #017634;
  --surface: #ffffff;
  --panel: #f2f2f2;
  --avatar-bg: #c4cdc8;
  --text: rgba(0, 0, 0, 0.75);
  --watermark: rgba(230, 229, 229, 0.53);

  --stage-w: 3840px;
  --stage-h: 2160px;
  --scale: 1;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: "Figtree", "Segoe UI", Helvetica, Arial, sans-serif;
  background: linear-gradient(180deg, var(--green-200) 0%, var(--green-dark) 100%);
  background-attachment: fixed;
  color: var(--text);
  overflow: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

p,
ul {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

img {
  display: block;
}

/* ---------- Stage (scaled to viewport) ---------- */

.stage {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--stage-w);
  height: var(--stage-h);
  transform: translate(-50%, -50%) scale(var(--scale));
  transform-origin: center center;
}

.screen {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 56px;
  padding: 48px;
  overflow: hidden;
}

.top {
  flex: 1 0 0;
  min-height: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 57px;
}

/* ---------- Disclaimer ---------- */

.disclaimer {
  padding: 46px 0 18px;
  font-size: 52px;
  font-weight: 500;
  line-height: normal;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}

/* ---------- Card ---------- */

.card {
  position: relative;
  width: 2860px;
  height: 1606px;
  display: flex;
  background: var(--surface);
  border-radius: 78.532px;
  overflow: hidden;
}

/* Left panel */

.card__profile {
  width: 929.365px;
  height: 100%;
  padding: 163.105px 96.655px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: var(--panel);
  flex-shrink: 0;
}

.avatar {
  width: 736.056px;
  height: 736.056px;
  border-radius: 50%;
  background: var(--avatar-bg);
  overflow: hidden;
  flex-shrink: 0;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12.082px;
  text-align: center;
  line-height: normal;
}

.profile__name {
  font-size: 96.655px;
  font-weight: 700;
  color: var(--green-400);
}

.profile__role {
  font-size: 66.45px;
  font-weight: 500;
  color: var(--text);
}

/* Right panel */

.card__details {
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  padding: 163.105px 96.655px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
}

.logo {
  width: 649.397px;
  height: 239.378px;
  flex-shrink: 0;
}

.logo img {
  width: 100%;
  height: 100%;
}

.qr-row {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60.409px;
}

.qr {
  display: block;
  width: 435.127px;
  height: 434.948px;
  flex-shrink: 0;
  background: #fff;
}

.qr img {
  width: 100%;
  height: 100%;
}

.qr-row__text {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 30.205px;
}

.qr-row__title {
  font-size: 78.532px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--green-400);
}

.qr-row__body {
  font-size: 48.327px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--text);
}

.contact {
  display: flex;
  flex-direction: column;
  gap: 42.286px;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 24.164px;
}

.contact__icon {
  width: 66.45px;
  height: 66.45px;
  flex-shrink: 0;
}

.contact__icon img {
  width: 100%;
  height: 100%;
}

.contact__text {
  font-size: 60.409px;
  font-weight: 400;
  line-height: normal;
  color: var(--text);
  white-space: nowrap;
}

/* Watermark overlay */

.watermark {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.watermark__row {
  position: absolute;
  left: 0;
  width: 100%;
  height: 34.277px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 168.401px;
  transform: translateY(-50%);
  font-weight: 500;
  line-height: normal;
  color: var(--watermark);
  white-space: nowrap;
}

.watermark__row span {
  font-size: 47.063px;
}

.watermark__row span:first-child {
  font-size: 43.634px;
}

.watermark__row span.is-hidden {
  opacity: 0;
}

/* ---------- CTA button ---------- */

.cta {
  flex-shrink: 0;
  padding: 32px;
  border-radius: 170px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22.384px;
  height: 151.095px;
  min-width: 279.805px;
  padding: 0 67.153px 0 55.961px;
  border-radius: 9999px;
  background: #000;
  color: #fff;
  text-decoration: none;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.button:hover,
.button:focus-visible {
  background: #1a1a1a;
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0);
}

.button:focus-visible {
  outline: 6px solid #fff;
  outline-offset: 6px;
}

.button__icon {
  width: 67.153px;
  height: 67.153px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.button__icon img {
  width: 55.961px;
  height: 55.961px;
}

.button__label {
  font-size: 50.36px;
  font-weight: 700;
  line-height: 67.153px;
  white-space: nowrap;
}
