:root {
  color-scheme: light;
  --paper: #e8edf3;
  --ink: #202f47;
  --muted: #627087;
  --line: #bcc8d7;
  --blue: #3158cb;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--blue); color: white; }
.scene {
  min-height: 100svh;
  padding: 40px clamp(24px, 7vw, 120px) 25px;
  display: flex;
}
.profile {
  width: min(100%, 1400px);
  margin: auto;
  min-height: calc(100svh - 65px);
  display: flex;
  flex-direction: column;
}
.topline { display: flex; justify-content: flex-end; align-items: center; gap: 24px; }
.micro { margin: 0; font: 10px/1.5 "Courier New", monospace; letter-spacing: 1.3px; color: var(--muted); }
.symbol { width: 43px; height: 43px; color: var(--blue); flex-shrink: 0; }
.identity { position: relative; }
h1 {
  margin: 65px 0 45px -.065em;
  font-size: clamp(100px, 20vw, 310px);
  font-weight: 500;
  letter-spacing: -.08em;
  line-height: .95;
}
h1 span { color: var(--blue); }
.activities { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.activity { display: flex; align-items: center; gap: 24px; padding: 28px 0; }
.activity > div { display: flex; align-items: baseline; gap: clamp(24px, 5vw, 80px); flex: 1; }
.activity h2 { margin: 0; font-size: clamp(20px, 2.5vw, 36px); line-height: 1.3; font-weight: 400; letter-spacing: -.7px; }
.activity .micro { flex-shrink: 0; }
.activity svg { width: 35px; height: 35px; stroke: var(--blue); stroke-width: 1.25; flex-shrink: 0; }
.company-details { display: grid; grid-template-columns: 1.1fr 1fr 1fr; gap: 32px; padding: 43px 0 60px; }
.detail h2, .email h2 { margin-bottom: 14px; }
.detail p, address { margin: 0; font-size: 15px; font-style: normal; line-height: 1.7; }
.email a, .email-reveal { color: var(--ink); font-size: 15px; line-height: 1.7; text-decoration: underline; text-decoration-color: var(--line); text-underline-offset: 5px; overflow-wrap: anywhere; }
.email a:hover, .email-reveal:hover { color: var(--blue); text-decoration-color: currentColor; }
.email a:focus-visible, .email-reveal:focus-visible { outline: 2px solid var(--blue); outline-offset: 5px; }
.profile-footer { display: flex; align-items: center; gap: 22px; color: var(--muted); font: 9px/1.5 "Courier New", monospace; letter-spacing: 1px; padding-top: 20px; margin-top: auto; }
.footer-lines { flex: 1; height: 10px; opacity: .65; background: repeating-linear-gradient(90deg, #9aaac0 0 1px, transparent 1px 6px); mask-image: linear-gradient(90deg, transparent, #000); }
@media (max-width: 750px) {
  .scene { padding: 25px 7vw; }
  .profile { min-height: calc(100svh - 50px); }
  .symbol { width: 36px; height: 36px; }
  h1 { font-size: 21vw; margin-top: 75px; margin-bottom: 44px; }
  .activity { padding-block: 24px; gap: 16px; }
  .activity > div { display: block; }
  .activity h2 { margin-top: 12px; font-size: clamp(19px, 3.8vw, 27px); letter-spacing: -.5px; }
  .activity svg { width: 28px; height: 28px; }
  .company-details { grid-template-columns: 1fr 1fr; gap: 30px 20px; padding: 33px 0 55px; }
  .email { grid-column: 1 / -1; }
  .detail p, address, .email a, .email-reveal { font-size: 13px; }
  .micro { font-size: 9px; letter-spacing: 1px; }
  .detail h2, .email h2 { margin-bottom: 10px; }
  .profile-footer { font-size: 8px; gap: 15px; }
}
@media (max-width: 360px) {
  .company-details { grid-template-columns: 1fr; }
  .activity svg { display: none; }
}

.email-reveal { padding: 0; border: 0; background: none; font-family: inherit; cursor: pointer; text-align: left; }
.email-notice { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
