:root {
  --black: #07090d;
  --ink: #171b22;
  --muted: #5f6875;
  --line: #e7ecf2;
  --blue: #2b7fff;
  --blue-soft: #e9f3ff;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100svh;
  padding: 24px;
  color: var(--ink);
  background:
    radial-gradient(circle at 80% 18%, rgba(43, 127, 255, 0.18), transparent 34%),
    linear-gradient(145deg, #f7fbff 0%, #ffffff 48%, #eef5ff 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: grid;
  width: min(1040px, 100%);
  gap: 22px;
  margin: 0 auto;
}

.card {
  display: grid;
  grid-template-columns: 320px 1fr;
  min-height: 540px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 28px 90px rgba(25, 42, 65, 0.16);
  backdrop-filter: blur(24px);
}

.profile {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 42px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,0.28)),
    var(--blue-soft);
}

.profile::after {
  position: absolute;
  inset: auto 34px 34px;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(43,127,255,0.7), transparent);
}

.portrait {
  width: min(220px, 100%);
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  border: 8px solid rgba(255,255,255,0.76);
  border-radius: 50%;
  box-shadow: 0 18px 44px rgba(25, 42, 65, 0.16);
}

.content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 6vw, 72px);
}

.signature {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  margin-bottom: 34px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--black);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--black);
  font-weight: 750;
}

.identity {
  display: grid;
  gap: 3px;
  width: min(100%, 294px);
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.68);
  text-align: center;
}

.identity strong {
  color: var(--black);
  font-size: 18px;
  line-height: 1.15;
}

.identity span {
  color: var(--muted);
  font-size: 14px;
}

.camera-profile {
  width: 132px;
  height: 132px;
  object-fit: contain;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 14px 34px rgba(25, 42, 65, 0.12);
}

h1 {
  max-width: 660px;
  margin: 0 0 22px;
  color: var(--black);
  font-size: clamp(40px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
}

.street-view {
  display: grid;
  width: 140px;
  height: 140px;
  place-items: center;
}

.street-view img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.actions {
  display: grid;
  grid-template-columns: max-content minmax(0, max-content);
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.action {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 760;
  overflow: hidden;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.action-label {
  display: inline-block;
  transform: scale(var(--label-scale, 1));
  transform-origin: center;
}

.action:hover {
  transform: translateY(-2px);
}

.primary {
  color: var(--white);
  background: var(--black);
  box-shadow: 0 16px 32px rgba(7, 9, 13, 0.18);
}

.secondary {
  border: 1px solid var(--line);
  background: var(--white);
}

.faq-panel {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 58px rgba(25, 42, 65, 0.1);
  backdrop-filter: blur(24px);
}

.faq-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.qa-label {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-heading h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  letter-spacing: 0;
}

.faq-heading p {
  max-width: 760px;
  font-size: 16px;
  line-height: 1.45;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.qa {
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.66);
}

.qa h3 {
  margin: 0 0 8px;
  color: var(--black);
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
}

.qa p {
  max-width: none;
  font-size: 15px;
  line-height: 1.45;
}

@media (max-width: 760px) {
  body {
    padding: 14px;
  }

  .card {
    grid-template-columns: 1fr;
    min-height: calc(100svh - 28px);
    border-radius: 22px;
  }

  .profile {
    min-height: auto;
    padding: 32px 22px 6px;
  }

  .profile::after {
    display: none;
  }

  .portrait {
    width: 150px;
  }

  .camera-profile {
    width: 104px;
    height: 104px;
  }

  .street-view {
    width: 118px;
    height: 118px;
  }

  .content {
    justify-content: start;
    padding: 30px 22px 26px;
  }

  .signature {
    margin-bottom: 28px;
  }

  h1 {
    font-size: 40px;
  }

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

  .action {
    width: 100%;
  }

  .faq-panel {
    border-radius: 22px;
  }

  .qa {
    padding: 16px;
  }

  .qa h3 {
    font-size: 18px;
  }
}
