:root {
  color-scheme: dark;
  --bg: var(--neo-background, #020604);
  --surface: #07120b;
  --text: var(--neo-text, #eaffdf);
  --muted: #9aaa9d;
  --green: var(--neo-accent, #3cff69);
  --line: #203727;
  --error: #ff8097;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}
body {
  margin: 0;
  line-height: 1.55;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
input,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.55;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 5px;
}
button {
  color: inherit;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  line-height: 1.07;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(48px, 5.7vw, 82px);
  font-weight: 700;
  margin-bottom: 28px;
}
h2 {
  font-size: clamp(34px, 3.4vw, 50px);
  font-weight: 500;
}
h3 {
  font-size: 25px;
  letter-spacing: -0.025em;
}
em {
  font-style: normal;
  color: var(--green);
}
.muted,
.dim {
  color: var(--muted);
}
.green {
  color: var(--green);
}
.wrap {
  width: min(1200px, calc(100% - 80px));
  margin-inline: auto;
}
.header {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  font-weight: 900;
  font-size: 37px;
  line-height: 1;
  letter-spacing: -3px;
}
.brand span {
  letter-spacing: 0.12em;
  font-size: 10px;
  border-left: 1px solid #416149;
  padding: 6px 0 6px 10px;
  margin-left: 12px;
}
.brand i {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  margin: 0 0 22px 6px;
}
.header nav {
  display: flex;
  gap: 34px;
  font-size: 14px;
  color: #b1beb3;
}
.header nav a:hover,
.text-link:hover {
  color: var(--green);
}
.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 17px 25px;
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 9px;
  color: #031708;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  min-height: 52px;
  transition:
    background 0.18s,
    transform 0.18s;
}
.button:hover {
  background: #83ff9f;
  transform: translateY(-2px);
}
.button.secondary {
  background: transparent;
  color: var(--text);
  border-color: #395541;
}
.button.secondary:hover {
  background: #14331e;
}
.button.small {
  padding: 11px 20px;
  min-height: 44px;
}
.text-link {
  display: inline-flex;
  gap: 22px;
  font-size: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #46604c;
}
.eyebrow {
  font-family: ui-monospace, monospace;
  letter-spacing: 0.15em;
  font-size: 11px;
  color: #b7c8ba;
  font-weight: 400;
  margin-bottom: 26px;
}
.status-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 8px;
  box-shadow: 0 0 13px #3cff6966;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 690px;
  position: relative;
  gap: 24px;
}
.hero-copy {
  padding: 65px 0;
  z-index: 1;
}
.lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 435px;
}
.actions {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.micro {
  font-size: 12px;
  color: var(--muted);
  margin-top: 17px;
  line-height: 1.6;
}
.hero-art {
  position: relative;
  align-self: stretch;
  overflow: hidden;
  margin-right: -25px;
}
.hero-art:after {
  position: absolute;
  content: "";
  inset: 0;
  background:
    linear-gradient(90deg, var(--bg), transparent 28%),
    linear-gradient(
      0deg,
      var(--bg),
      transparent 25%,
      transparent 80%,
      var(--bg)
    );
  pointer-events: none;
}
.hero-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  opacity: 0.88;
}
.floating-label {
  position: absolute;
  top: 55px;
  right: 15px;
  z-index: 1;
  font:
    10px ui-monospace,
    monospace;
  letter-spacing: 0.12em;
  border: 1px solid #42614a;
  background: #06120abd;
  padding: 12px 15px;
  border-radius: 6px;
}
.floating-label .dim {
  margin-left: 28px;
}
.art-caption {
  position: absolute;
  bottom: 55px;
  left: 50px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  letter-spacing: 0.16em;
  font:
    11px ui-monospace,
    monospace;
  color: #bdffc9;
  line-height: 2;
}
.platforms {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding-block: 33px;
  border-block: 1px solid var(--line);
}
.platforms > span {
  font:
    10px/1.8 ui-monospace,
    monospace;
  color: var(--muted);
  letter-spacing: 0.1em;
}
.platforms b {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #c8d3ca;
}
.section {
  padding-block: 105px 0;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: flex-end;
  margin-bottom: 35px;
}
.section-heading h2 {
  margin-bottom: 0;
}
.section-heading > p {
  color: var(--muted);
  font-size: 14px;
  max-width: 330px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 15px;
  overflow: hidden;
}
.steps article {
  padding: 32px;
  position: relative;
  min-height: 240px;
  background: linear-gradient(130deg, #0a180e, #030805);
}
.steps article + article {
  border-left: 1px solid var(--line);
}
.step-number {
  font:
    12px ui-monospace,
    monospace;
  color: var(--green);
  display: block;
  margin-bottom: 44px;
}
.steps h3 {
  font-size: 23px;
}
.steps p {
  font-size: 14px;
  color: var(--muted);
  max-width: 280px;
  margin-bottom: 0;
}
.step-symbol {
  position: absolute;
  right: 30px;
  top: 18px;
  font-size: 43px;
  color: #3b6144;
}
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.plan {
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #07110a;
}
.plan.featured {
  border-color: #387c49;
  background: radial-gradient(ellipse at top right, #1a3d22, #07110a 70%);
}
.plan-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 23px;
  min-height: 24px;
}
.plan-top .eyebrow {
  margin: 0;
  font-size: 10px;
}
.chip {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.08em;
  border: 1px solid #355b3e;
  color: #b8fac8;
  border-radius: 5px;
  padding: 5px 8px;
  overflow-wrap: anywhere;
}
.plan h3 {
  font-size: 26px;
}
.price {
  font-size: 40px;
  line-height: 1.2;
  letter-spacing: -0.04em;
  margin: 25px 0 8px;
}
.price span {
  font-size: 24px;
  color: var(--muted);
}
.plan p {
  font-size: 14px;
}
.plan .price {
  font-size: 40px;
}
.plan-line {
  border-top: 1px solid var(--line);
  margin: 23px 0;
}
.plan .button {
  width: 100%;
  margin-top: 12px;
}
.trinity {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  padding: 70px 55px;
  margin-top: 105px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: radial-gradient(ellipse at 20% 90%, #14361b, #050c07 60%);
}
.trinity h2 {
  font-size: clamp(35px, 3.5vw, 50px);
}
.trinity-orbit {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  max-width: 280px;
  margin: auto;
  width: 100%;
  border: 1px solid #24492d;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle,
    transparent 0 38px,
    #274831 39px 40px,
    transparent 41px 78px
  );
}
.trinity-orbit span {
  font-size: 110px;
  font-weight: bold;
  color: var(--green);
  font-style: italic;
  filter: drop-shadow(0 0 35px #3cff6955);
}
.trinity-orbit i {
  position: absolute;
  top: 20px;
  right: 50px;
  width: 13px;
  height: 13px;
  background: var(--green);
  border-radius: 50%;
}
.faq {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 55px;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq summary {
  cursor: pointer;
  font-size: 17px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.faq summary:after {
  content: "+";
  font-size: 23px;
  color: var(--green);
}
.faq details[open] summary:after {
  content: "−";
}
.faq details p {
  font-size: 15px;
  color: var(--muted);
  padding-top: 18px;
  margin-bottom: 0;
}
.closing {
  text-align: center;
  padding-block: 110px;
}
.closing h2 {
  font-size: clamp(48px, 5.4vw, 76px);
}
.closing .button {
  min-width: 240px;
}
.footer {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-block: 32px;
  font-size: 11px;
  color: var(--muted);
}
.footer .brand {
  color: var(--text);
  font-size: 30px;
}
.footer p {
  margin: 0;
}
.footer nav {
  display: flex;
  gap: 20px;
  margin-left: auto;
  flex-wrap: wrap;
}
.footer > span {
  width: 100%;
}
.skip {
  position: fixed;
  top: 8px;
  left: 8px;
  transform: translateY(-200%);
  background: var(--green);
  color: #000;
  padding: 12px;
  z-index: 100;
}
.skip:focus {
  transform: none;
}
.auth-layout {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  width: min(1040px, calc(100% - 80px));
  margin: 75px auto 90px;
  align-items: center;
}
.auth-intro h1 {
  font-size: 62px;
}
.auth-matrix {
  font:
    65px/1.1 ui-monospace,
    monospace;
  letter-spacing: 0.25em;
  color: #285e35;
  margin: 45px 0 0 35px;
  transform: skewY(-8deg);
  text-shadow: 0 0 70px #2dcc5044;
}
.auth-card {
  border: 1px solid var(--line);
  background: #09130c;
  border-radius: 17px;
  padding: 35px;
  box-shadow: 0 20px 100px #0005;
}
.auth-card h2 {
  font-size: 32px;
}
.auth-card .eyebrow {
  margin-top: 25px;
  margin-bottom: 15px;
}
.back {
  font-size: 25px;
  display: inline-block;
  min-width: 44px;
  min-height: 44px;
}
.auth-card label:not(.checkbox) {
  display: block;
  font-size: 13px;
  margin-bottom: 10px;
}
.auth-card input:not([type="checkbox"]),
textarea {
  width: 100%;
  padding: 15px;
  background: #020704;
  border: 1px solid #395140;
  border-radius: 8px;
  color: var(--text);
  min-height: 50px;
  resize: vertical;
}
.auth-card input::placeholder {
  color: #64786a;
}
.auth-card input#code {
  font-size: 29px;
  text-align: center;
  letter-spacing: 0.28em;
  margin-bottom: 22px;
}
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 22px 0;
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
}
.checkbox input {
  width: 18px;
  height: 18px;
  accent-color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}
.checkbox a {
  text-decoration: underline;
}
.auth-card .button {
  width: 100%;
}
.auth-card .existing {
  font-size: 12px;
  margin-top: 25px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  color: var(--muted);
  line-height: 1.8;
}
.existing a {
  color: var(--text);
}
.text-button {
  background: transparent;
  border: 0;
  padding: 12px 0;
  font-size: 14px;
  text-align: left;
  color: var(--green);
  min-height: 44px;
}
.auth-card .text-button {
  display: block;
  width: 100%;
}
.status-message {
  font-size: 14px;
  overflow-wrap: anywhere;
  color: var(--muted);
}
.status-message.error {
  color: var(--error);
}
.status-message:empty {
  display: none;
}
.notice {
  padding: 18px 20px;
  border: 1px solid #425b36;
  border-radius: 9px;
  background: #152211;
  color: #c6d9ba;
  font-size: 14px;
  line-height: 1.65;
}
.document {
  max-width: 800px;
  padding-top: 65px;
  padding-bottom: 100px;
}
.document h1 {
  font-size: 46px;
}
.document h2 {
  font-size: 27px;
  margin-top: 35px;
}
.document p {
  color: var(--muted);
}
.document a {
  text-decoration: underline;
  color: var(--green);
}
[hidden] {
  display: none !important;
}
.cabinet {
  display: grid;
  grid-template-columns: 235px 1fr;
  min-height: 100dvh;
}
.sidebar {
  padding: 45px 26px;
  border-right: 1px solid var(--line);
  position: sticky;
  top: 0;
  height: 100dvh;
  display: flex;
  flex-direction: column;
}
.sidebar .eyebrow {
  margin-top: 48px;
  font-size: 9px;
}
.sidebar nav {
  display: grid;
  gap: 10px;
}
.sidebar nav button {
  display: flex;
  gap: 15px;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 9px;
  background: transparent;
  text-align: left;
  padding: 15px;
  color: var(--muted);
  font-size: 14px;
}
.sidebar nav button span {
  font-size: 20px;
  line-height: 1;
}
.sidebar nav button[aria-current="page"] {
  color: var(--green);
  background: #11251a;
  border-color: #254d30;
}
.sidebar-bottom {
  margin-top: auto;
  font-size: 13px;
  color: var(--muted);
}
.account-main {
  width: min(1100px, 100%);
  padding: 30px 50px 70px;
}
.account-header {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 50px;
}
.account-header .eyebrow {
  margin: 0;
}
.account-main h1 {
  font-size: 48px;
}
.account-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 20px;
}
.subscription-card,
.panel-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #08140c;
  padding: 28px;
  margin-bottom: 20px;
}
.subscription-card {
  background: radial-gradient(ellipse at 50% 40%, #14371b, #07110a 70%);
  text-align: center;
}
.subscription-card .eyebrow {
  text-align: left;
}
.subscription-card h2 {
  font-size: 29px;
}
.power-symbol {
  font-size: 80px;
  color: var(--green);
  margin: 30px 0;
}
.panel-card h2 {
  font-size: 25px;
}
.panel-card h3 {
  font-size: 23px;
}
.account-main .plans {
  grid-template-columns: repeat(2, 1fr);
}
.account-main .button {
  font-size: 14px;
}
.order-row {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.order-row:last-child {
  border: 0;
}
.order-row p {
  margin: 0;
}
.order-row small {
  color: var(--muted);
}
.messages {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 180px;
  max-height: 52dvh;
  overflow: auto;
  padding: 10px 4px 20px;
  overscroll-behavior: contain;
}
.message {
  padding: 18px;
  background: #0b1d10;
  border: 1px solid var(--line);
  border-radius: 12px;
  max-width: 88%;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  font-size: 15px;
}
.message.user {
  align-self: flex-end;
  background: #173522;
}
.composer {
  display: flex;
  gap: 10px;
  position: sticky;
  bottom: 12px;
  background: var(--bg);
  padding-block: 12px;
}
.composer textarea {
  resize: none;
  min-width: 0;
}
.composer .button {
  align-self: stretch;
  font-size: 24px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.identity-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
  overflow-wrap: anywhere;
}
.identity-row span:last-child {
  min-width: 0;
  text-align: right;
}
@media (min-width: 1440px) {
  .hero {
    min-height: 730px;
  }
}
@media (max-width: 1000px) {
  .wrap {
    width: calc(100% - 48px);
  }
  .hero {
    min-height: 630px;
  }
  .hero h1 {
    font-size: 64px;
  }
  .hero-art {
    margin-right: 0;
  }
  .plans {
    grid-template-columns: repeat(2, 1fr);
  }
  .auth-layout {
    gap: 35px;
    grid-template-columns: 1fr 400px;
  }
  .auth-intro h1 {
    font-size: 46px;
  }
  .sidebar {
    padding: 32px 17px;
  }
  .cabinet {
    grid-template-columns: 195px 1fr;
  }
  .account-main {
    padding-inline: 28px;
  }
  .account-grid {
    grid-template-columns: 1fr;
  }
  .steps article {
    padding: 25px;
  }
  .steps h3 {
    font-size: 20px;
  }
}
@media (max-width: 700px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .header {
    height: 80px;
  }
  .brand {
    font-size: 32px;
  }
  .header nav {
    display: none;
  }
  .hero {
    display: flex;
    flex-direction: column;
    gap: 0;
    min-height: 0;
  }
  .hero-copy {
    width: 100%;
    padding: 44px 0 0;
  }
  .hero h1 {
    font-size: clamp(43px, 11.9vw, 66px);
    margin-bottom: 22px;
  }
  .eyebrow {
    font-size: 9px;
    margin-bottom: 23px;
  }
  .lead {
    font-size: 15px;
    max-width: 360px;
  }
  .hero .actions {
    gap: 22px;
    margin-top: 23px;
  }
  .hero .button {
    padding: 16px 20px;
    font-size: 14px;
    gap: 20px;
  }
  .hero .text-link {
    font-size: 13px;
    gap: 10px;
  }
  .hero .micro {
    font-size: 10px;
  }
  .hero-art {
    width: 100%;
    height: 345px;
    margin-top: -15px;
  }
  .hero-art img {
    object-position: 50% 37%;
  }
  .floating-label {
    top: 38px;
    right: 0;
    font-size: 8px;
    padding: 9px;
  }
  .art-caption {
    bottom: 30px;
    left: 18px;
    font-size: 9px;
  }
  .platforms {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px 15px;
    padding-block: 25px;
  }
  .platforms > span {
    width: 100%;
    font-size: 9px;
  }
  .platforms > span br {
    display: none;
  }
  .platforms b {
    font-size: 17px;
  }
  .section {
    padding-top: 66px;
  }
  .section-heading {
    display: block;
    margin-bottom: 25px;
  }
  .section-heading > p {
    margin-top: 25px;
    margin-bottom: 0;
    font-size: 13px;
  }
  h2 {
    font-size: 35px;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .steps article {
    min-height: 210px;
    padding: 27px;
  }
  .steps article + article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .step-number {
    margin-bottom: 28px;
  }
  .steps h3 {
    font-size: 23px;
  }
  .plans {
    grid-template-columns: 1fr;
  }
  .plan {
    padding: 26px;
  }
  .trinity {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 35px 27px;
    margin-top: 66px;
  }
  .trinity-orbit {
    max-width: 185px;
  }
  .trinity-orbit span {
    font-size: 75px;
  }
  .trinity-orbit i {
    right: 20px;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .faq summary {
    font-size: 15px;
  }
  .closing {
    padding-block: 75px;
  }
  .closing h2 {
    font-size: 50px;
  }
  .footer {
    gap: 20px;
  }
  .footer nav {
    margin: 0;
    width: 100%;
    gap: 15px;
  }
  .auth-layout {
    display: block;
    width: calc(100% - 40px);
    margin-top: 28px;
  }
  .auth-intro {
    display: none;
  }
  .auth-card {
    padding: 27px 24px;
  }
  .auth-card h2 {
    font-size: 30px;
  }
  .auth-card .eyebrow {
    margin-top: 12px;
  }
  .document h1 {
    font-size: 36px;
    overflow-wrap: anywhere;
  }
  .cabinet {
    display: block;
  }
  .sidebar {
    position: fixed;
    bottom: 0;
    top: auto;
    height: auto;
    width: 100%;
    z-index: 20;
    background: #08110ef2;
    backdrop-filter: blur(15px);
    padding: 8px 6px calc(8px + env(safe-area-inset-bottom));
    border: 0;
    border-top: 1px solid var(--line);
  }
  .sidebar > .brand,
  .sidebar > .eyebrow,
  .sidebar-bottom {
    display: none;
  }
  .sidebar nav {
    display: flex;
    justify-content: space-around;
    gap: 0;
  }
  .sidebar nav button {
    display: flex;
    flex-direction: column;
    padding: 9px 5px;
    gap: 6px;
    font-size: 10px;
    min-width: 55px;
    min-height: 55px;
  }
  .sidebar nav button span {
    font-size: 21px;
  }
  .account-main {
    padding: 25px 20px calc(100px + env(safe-area-inset-bottom));
  }
  .account-header {
    margin-bottom: 35px;
    align-items: center;
  }
  .account-header .eyebrow {
    font-size: 8px;
  }
  .account-header .chip {
    max-width: 160px;
    font-size: 8px;
  }
  .account-main h1 {
    font-size: 39px;
  }
  .account-main .plans {
    grid-template-columns: 1fr;
  }
  .account-grid {
    display: block;
  }
  .panel-card,
  .subscription-card {
    padding: 23px;
  }
  .composer {
    bottom: calc(75px + env(safe-area-inset-bottom));
    padding-bottom: 10px;
  }
  .messages {
    max-height: 45dvh;
  }
  .identity-row {
    font-size: 13px;
  }
  .account-main .actions {
    gap: 12px;
  }
  .message {
    font-size: 14px;
    max-width: 95%;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    transition: none !important;
    animation: none !important;
  }
}

.preview-banner {
  padding: 8px 20px;
  text-align: center;
  font:
    10px/1.5 ui-monospace,
    monospace;
  letter-spacing: 0.02em;
  background: #20351a;
  color: #d9fac6;
}

.power-symbol svg {
  display: block;
  width: 80px;
  height: 80px;
  margin: auto;
}
