:root {
  --paper: #f8f1df;
  --paper-light: #fffaf0;
  --ink: #070707;
  --yellow: #ffbf00;
  --orange: #ff4b1f;
  --line: rgba(7, 7, 7, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Huninn", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.45;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: none;
}

/* Final page grid and raster backgrounds */
.page-container,
.container { width: min(100% - 64px, 1280px); margin-inline: auto; }
.site-header > .container,
.site-footer > .container { width: min(100% - 64px, 1280px); max-width: none; }
.site-header { padding: 24px 0 0; }
.brand { width: 300px; }
.brand-mark { display:block; aspect-ratio:2172/724; background:url("../images/logo.png") center/contain no-repeat; }
.hero { padding: 0; }
.hero-grid { min-height:0; grid-template-columns:minmax(0,.46fr) minmax(0,.54fr); gap:56px; align-items:center; }
.hero-copy { padding-left:0; }
.hero-logo-title { width:100%; max-width:580px; aspect-ratio:753/400; margin:0 0 32px; background:url("../images/startups.png") left center/contain no-repeat; }
.hero-description { max-width:560px; margin:0; }
.hero-visual { align-self:auto; width:100%; aspect-ratio:1188/790; }
.hero-visual-image { width:100%; height:100%; background:url("../images/hero-startup-lab.png") center/contain no-repeat; }
.principles { padding:48px 0 0; }
.principles-grid { padding:0; grid-template-columns:repeat(4,1fr); }
.principle { min-height:82px; padding:3px 16px; gap:12px; }
.principle-icon { width:48px; height:48px; flex:0 0 48px; background-position:center; background-repeat:no-repeat; background-size:contain; }
.principle-icon img { display:none; }
.principle-icon--1 { background-image:url("../images/ico1.png"); }
.principle-icon--2 { background-image:url("../images/ico2.png"); }
.principle-icon--3 { background-image:url("../images/ico3.png"); }
.principle-icon--4 { background-image:url("../images/ico4.png"); }
.site-footer { margin-top:64px; padding:16px 0 24px; }
.footer-inner { display:flex; justify-content:space-between; align-items:center; gap:24px; }
.footer-left { display:flex; align-items:center; gap:16px; font-size:15px; }
.footer-left a { text-underline-offset:4px; }
.footer-inner > .social-links { margin-left:auto; }
.social-links a { width:48px; height:48px; }

@media (max-width: 920px) {
  .hero-grid { grid-template-columns:1fr; gap:40px; }
  .hero-logo-title { max-width:620px; }
  .hero-visual { max-width:700px; margin-inline:auto; }
  .principles-grid { grid-template-columns:repeat(2,1fr); row-gap:24px; }
}
@media (max-width: 560px) {
  .container,.site-header > .container,.site-footer > .container { width:calc(100% - 32px); }
  .site-header { padding-top:16px; }
  .brand { width:190px; }
  .login-link { min-height:54px; padding:0 16px; font-size:16px; }
  .hero { padding-top:32px; }
  .hero-logo-title { margin-bottom:24px; }
  .hero-description { max-width:100%; font-size:18px; }
  .principles { padding-top:40px; }
  .principles-grid { grid-template-columns:1fr; row-gap:12px; }
  .principle { justify-content:flex-start; }
  .site-footer { margin-top:48px; }
  .footer-inner { align-items:flex-start; flex-direction:column; }
  .footer-left { flex-wrap:wrap; }
  .footer-inner > .social-links { margin-left:0; }
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

.container {
  width: min(100% - 56px, 1560px);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  padding: 22px 0 6px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.site-header > .container,
.site-footer > .container {
  width: calc(100% - 48px);
  max-width: none;
}

.brand {
  display: block;
  width: 320px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.login-link {
  display: inline-flex;
  min-height: 68px;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 0 26px;
  color: white;
  border: 3px solid var(--ink);
  border-radius: 15px;
  background: var(--ink);
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 150ms ease, background-color 150ms ease, color 150ms ease;
}

.login-link:hover {
  color: var(--ink);
  background: var(--yellow);
  transform: translateY(-2px) rotate(-0.5deg);
}

.login-link:focus-visible,
.footer-links a:focus-visible,
.social-links a:focus-visible {
  outline: 4px solid var(--orange);
  outline-offset: 4px;
}

.login-link svg {
  width: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  overflow: hidden;
  padding: 18px 0 30px;
}

.hero-grid {
  display: grid;
  min-height: 620px;
  align-items: center;
  grid-template-columns: minmax(460px, 0.92fr) minmax(600px, 1.25fr);
  gap: 48px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-left: 0;
}

h1 {
  max-width: 720px;
  margin: 0 0 31px;
  font-family: "Neucha", "Huninn", Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.025em;
  line-height: 0.94;
  text-transform: uppercase;
}

.title-top {
  position: relative;
  display: inline-block;
  margin-left: 21px;
  font-size: 64px;
  transform: rotate(-1deg);
}

.title-top::after {
  position: absolute;
  right: -54px;
  bottom: 2px;
  width: 43px;
  height: 33px;
  content: "";
  border-top: 5px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  transform: rotate(-16deg) skewX(-18deg);
}

.title-highlight {
  position: relative;
  display: block;
  width: fit-content;
  min-width: min(100%, 700px);
  margin-top: 21px;
  padding: 10px 24px 15px;
  border: 5px solid var(--ink);
  background: var(--yellow);
  box-shadow: 8px 9px 0 var(--ink);
  font-size: 96px;
  transform: rotate(-1.2deg);
}

.hero-kicker {
  margin: 0 0 24px 30px;
  font-family: "Huninn", Arial, sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-description {
  max-width: 610px;
  margin: 0 0 0 30px;
  font-size: 20px;
  line-height: 1.42;
}

.hero-description strong {
  font-weight: 900;
}

.hero-description em {
  color: var(--orange);
  font-style: normal;
  font-weight: 900;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual img {
  width: min(58vw, 940px);
  max-width: none;
  height: auto;
  mix-blend-mode: multiply;
  filter: contrast(1.02) saturate(1.02);
}

.principles {
  padding: 0 0 62px;
}

.principles-grid {
  display: grid;
  padding: 30px 0;
  grid-template-columns: repeat(4, 1fr);
}

.principle {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 3px 28px;
}

.principle + .principle {
  border-left: 0;
}

.principle-icon {
  display: grid;
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  place-items: center;
  border: 0;
  background: transparent;
  transform: none;
}

.principle-icon svg {
  width: 39px;
  height: 39px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.principle-icon img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.hero-logo-title img {
  display: block;
  width: min(100%, 620px);
  height: auto;
}

.principle-icon--bolt svg {
  fill: var(--yellow);
}

.principle p {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
}

.principle strong {
  font-weight: 400;
}

.site-footer {
  padding: 33px 0;
  color: var(--ink);
  background: transparent;
}

.footer-inner {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
  grid-template-areas: "links social" "copy social";
  gap: 32px;
}

.footer-inner p {
  grid-area: copy;
  margin: 0;
  font-size: 16px;
}

.footer-links {
  grid-area: links;
  display: flex;
  gap: 25px;
}

.footer-links a {
  color: var(--ink);
  font-size: 15px;
  text-underline-offset: 4px;
}

.footer-links a:hover {
  color: var(--yellow);
}

.social-links {
  grid-area: social;
  display: flex;
  gap: 11px;
}

.social-links a {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 0;
  transition: color 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.social-links a:hover {
  color: var(--orange);
  border-color: var(--orange);
  transform: rotate(-5deg) scale(1.06);
}

.social-links svg {
  width: 38px;
  height: 38px;
  fill: currentColor;
}

.social-links .max-logo {
  width: 42px;
  height: 42px;
  fill: currentColor;
}

.social-links a:last-child svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (max-width: 1180px) {
  .hero-grid {
    min-height: 560px;
    grid-template-columns: minmax(420px, 0.9fr) minmax(470px, 1.1fr);
  }

  .title-highlight {
    min-width: 0;
  }

  .hero-visual img {
    width: 65vw;
  }

  .principle {
    padding-inline: 16px;
  }

  .principle-icon {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
  }
}

@media (max-width: 920px) {
  .container {
    width: min(100% - 36px, 760px);
  }

  .site-header {
    padding-top: 14px;
  }

  .brand {
    width: 260px;
  }

  .login-link {
    min-height: 55px;
    padding: 0 19px;
    border-radius: 12px;
    font-size: 17px;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-copy {
    padding: 0;
  }

  h1 {
    max-width: 700px;
    margin-bottom: 31px;
  }

  .title-top {
    margin-left: 8px;
  }

  .title-highlight {
    min-width: min(92%, 610px);
  }

  .hero-kicker,
  .hero-description {
    margin-left: 8px;
  }

  .hero-description {
    max-width: 690px;
  }

  .hero-visual {
    min-height: 0;
    margin: -8px -9vw -18px;
  }

  .hero-visual img {
    width: 100%;
  }

  .principles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .principle {
    justify-content: flex-start;
    padding: 22px;
  }

  .principle + .principle {
    border-left: 0;
  }

  .principle:nth-child(even) {
    border-left: 2px solid var(--line);
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    grid-template-areas: "links social" "copy social";
  }

  .footer-links {
    order: 3;
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .container {
    width: min(100% - 28px, 520px);
  }

  .header-inner {
    gap: 12px;
  }

  .brand {
    width: min(56vw, 230px);
  }

  .login-link {
    min-width: 52px;
    min-height: 52px;
    padding: 0 12px;
  }

  .login-link span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .hero {
    padding-top: 17px;
  }

  h1 {
    margin-bottom: 28px;
  }

  .title-top {
    margin-left: 4px;
    font-size: 44px;
    line-height: 1.02;
  }

  .title-top::after {
    display: none;
  }

  .title-highlight {
    min-width: 0;
    margin-top: 12px;
    padding: 7px 12px 10px;
    border-width: 4px;
    box-shadow: 5px 6px 0 var(--ink);
    font-size: 64px;
  }

  .hero-kicker {
    margin-left: 4px;
    font-size: 28px;
  }

  .hero-description {
    margin-left: 4px;
    font-size: 17px;
    line-height: 1.44;
  }

  .hero-visual {
    margin: 2px -12px -5px;
  }

  .hero-visual img {
    width: 110%;
  }

  .principles {
    padding-bottom: 40px;
  }

  .principles-grid {
    padding: 0;
    grid-template-columns: 1fr;
  }

  .principle {
    min-height: 98px;
    padding: 17px 8px;
  }

  .principle:nth-child(even) {
    border-left: 0;
  }

  .principle p {
    font-size: 18px;
  }

  .site-footer {
    padding: 29px 0;
  }

  .footer-inner {
    grid-template-columns: 1fr auto;
    gap: 25px 18px;
  }

  .footer-links {
    flex-direction: column;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* Page grid overrides */
.page{min-height:100svh}
body{min-height:100svh;display:grid;grid-template-rows:auto 1fr auto;overflow-x:hidden}
main{min-height:0}
.container,.site-header > .container,.site-footer > .container{width:min(100% - 64px,1200px);max-width:none}
.site-header{padding:24px 0 0}.brand{width:320px}.brand-mark{display:block;aspect-ratio:2172/724;background:url("../images/logo.png") center/contain no-repeat}
.hero{padding:48px 0 0}.hero-grid{min-height:0;grid-template-columns:minmax(0,560px) minmax(0,1fr);gap:48px}.hero-copy{padding-left:0}.hero-logo-title{display:none}.hero-description{max-width:560px;margin:0}.hero-visual{align-self:auto;width:590px;max-width:100%;aspect-ratio:1188/790}.hero-visual-image{width:100%;height:100%;background:url("../images/hero-startup-lab.png") center/contain no-repeat}
.principles{padding:40px 0 0}.principles-grid{padding:0;grid-template-columns:repeat(4,1fr)}.principle{min-height:64px;padding:3px 12px;gap:12px;border:0}.principle + .principle,.principle:nth-child(n+3){border:0}.principle-icon{width:40px;height:40px;flex:0 0 40px;background-position:center;background-repeat:no-repeat;background-size:contain;border:0;background-color:transparent;transform:none}.principle-icon--1{background-image:url("../images/ico1.png")}.principle-icon--2{background-image:url("../images/ico2.png")}.principle-icon--3{background-image:url("../images/ico3.png")}.principle-icon--4{background-image:url("../images/ico4.png")}
.site-footer{margin-top:80px;padding:16px 0 24px}.footer-inner{display:flex;justify-content:space-between;align-items:center;gap:24px}.footer-left{display:flex;align-items:center;gap:16px;font-size:15px}.footer-inner>.social-links{margin-left:auto}.social-links{gap:18px}.social-links a{width:32px;height:32px}.social-links svg{width:26px;height:26px}.social-links .max-logo{width:26px;height:26px}
@media (max-width:920px){.hero-grid{grid-template-columns:1fr;gap:40px}.hero-visual{max-width:700px;margin-inline:auto}.principles-grid{grid-template-columns:repeat(2,1fr);row-gap:24px}}
@media (max-width:560px){.container,.site-header>.container,.site-footer>.container{width:calc(100% - 32px)}.hero{padding-top:32px}.hero-logo-title{width:100%}.hero-description{max-width:100%;font-size:18px}.principles{padding-top:40px}.principles-grid{grid-template-columns:1fr;row-gap:12px}.principle{justify-content:flex-start}.site-footer{margin-top:48px}.footer-inner{align-items:flex-start;flex-direction:column}.footer-left{flex-wrap:wrap}.footer-inner>.social-links{margin-left:0}}

/* Final hero typography and footer pass */
.hero-logo-title{display:none!important;background:none!important}
.hero-grid{grid-template-columns:minmax(0,700px) minmax(0,1fr);gap:48px}
.hero-copy h1{width:720px;max-width:100%;margin:0;font-size:70px;font-weight:700;line-height:1;letter-spacing:0;text-transform:none}
.hero-subtitle{margin:12px 0 0;font-size:32px;font-weight:600;line-height:1.1}
.hero-description{max-width:540px;margin:28px 0 0}
.hero-visual{width:640px;transform:translateX(40px)}
 .hero{overflow:visible}
main{padding-top:40px}
.principles{padding-top:56px}
.footer-left{display:flex;flex-direction:column;align-items:flex-start;gap:8px;font-size:14px}
.footer-links{display:flex;gap:16px}
.social-links{gap:18px}.social-links a{width:38px;height:38px}.social-links svg{width:32px;height:32px}.social-links .max-logo{width:28px;height:28px}
@media (max-width:920px){.hero-grid{grid-template-columns:1fr}.hero-visual{transform:translateX(16px)}main{padding-top:32px}.principles{padding-top:56px}}
@media (max-width:560px){.hero-copy h1{width:100%;max-width:100%;font-size:42px}.hero-subtitle{font-size:24px}.hero-description{max-width:100%;margin-top:24px}.hero-visual{width:100%;max-width:100%;transform:none}.principles{padding-top:48px}.footer-left{gap:8px;font-size:15px}}

/* Explicit final responsive sizes */
body{grid-template-rows:auto auto auto}
.site-footer{margin-top:80px;margin-bottom:120px}
.principle-icon{width:32px;height:32px;flex-basis:32px}.principle p{font-size:18px}
@media (max-width:1200px){.hero-grid{grid-template-columns:minmax(0,520px) minmax(0,1fr);column-gap:56px}.hero-copy h1{font-size:56px}.hero-subtitle{font-size:28px}.hero-visual{width:560px;transform:translateX(-24px)}.principles{padding-top:48px}.site-footer{margin-top:64px;margin-bottom:80px}}
@media (max-width:768px){.hero-grid{grid-template-columns:1fr;row-gap:40px}.hero-copy h1{width:100%;max-width:100%;font-size:44px}.hero-subtitle{font-size:24px;margin-top:12px}.hero-description{max-width:100%;margin-top:24px}.hero-visual{width:100%;transform:none}.principles{padding-top:48px}.principles-grid{grid-template-columns:repeat(2,1fr);row-gap:24px}.site-footer{margin-top:56px;margin-bottom:32px}}

/* Stable page composition */
html{overflow-x:hidden}.page{width:100%;min-height:100svh;display:grid;grid-template-rows:auto 1fr auto;overflow-x:hidden}
.cookie-notice{position:fixed;right:24px;bottom:24px;z-index:10;display:flex;width:245px;max-width:calc(100vw - 48px);box-sizing:border-box;align-items:center;gap:12px;padding:14px 15px;border:2px solid var(--ink);border-radius:14px;background:var(--paper-light);box-shadow:5px 5px 0 var(--ink)}
.cookie-notice[hidden]{display:none}.cookie-notice p{margin:0;font-size:15px;line-height:1.35}.cookie-notice a{display:block;text-underline-offset:3px}.cookie-notice__accept{flex:0 0 auto;padding:10px 16px;border:0;border-radius:9px;background:var(--ink);color:#fff;font:inherit;font-size:16px;font-weight:700;cursor:pointer}.cookie-notice__accept:hover{background:var(--orange)}
.main{display:flex;min-height:620px;padding:0;align-items:center;justify-content:center;flex-direction:column}
.site-footer{margin:0;padding:16px 0 24px}
.hero{width:100%;padding:0}
.hero-grid{grid-template-columns:minmax(0,560px) minmax(0,1fr);column-gap:56px;align-items:center}
.hero-copy h1{width:auto;max-width:560px;font-size:70px;line-height:1}
.hero-subtitle{margin-top:12px;font-size:32px}
.hero-description{max-width:540px;margin-top:32px}
.hero-visual{width:550px;max-width:100%;justify-self:end;transform:translateX(32px)}
.principles{width:100%;padding-top:56px;padding-bottom:56px}
.principles-grid{grid-template-columns:repeat(4,1fr)}
.principle{position:relative;gap:14px}.principle-icon{width:32px;height:32px;flex-basis:32px}.principle p{font-size:17px}
.principle:not(:first-child)::before{position:absolute;top:50%;left:0;width:1px;height:36px;content:"";background:repeating-linear-gradient(to bottom,rgba(7,7,7,.28) 0 2px,transparent 2px 5px);transform:translateY(-50%)}
.footer-left{gap:8px;font-size:14px}.social-links{gap:18px}.social-links svg{width:31px;height:31px}.social-links .max-logo{width:28px;height:28px}
@media (max-width:1200px){.brand{width:260px}.main{min-height:620px}.hero-grid{grid-template-columns:minmax(0,520px) minmax(0,1fr);column-gap:40px}.hero-copy h1{font-size:56px}.hero-subtitle{font-size:28px}.hero-visual{width:440px;justify-self:center;transform:none}.principles{padding-top:56px}.principle:not(:first-child)::before{display:none}}
@media (max-width:768px){body{min-width:0}.brand{width:190px}.main{min-height:0;align-items:stretch;justify-content:flex-start;padding:48px 0 0}.hero{padding:0}.hero-grid{grid-template-columns:1fr;row-gap:40px}.hero-copy h1{max-width:100%;font-size:44px}.hero-subtitle{font-size:24px;margin-top:12px}.hero-description{max-width:100%;margin-top:32px}.hero-visual{width:100%;justify-self:stretch;transform:none}.principles{padding-top:56px}.principles-grid{grid-template-columns:repeat(2,1fr);row-gap:24px}.principle:not(:first-child)::before{display:none}.site-footer{padding:16px 0 24px}}
@media (max-width:768px){.cookie-notice{right:16px;bottom:16px;max-width:calc(100vw - 32px);gap:12px;padding:14px}.cookie-notice p{font-size:14px}.cookie-notice__accept{padding:9px 13px}}
@media (max-width:360px){.container,.site-header>.container,.site-footer>.container{width:calc(100% - 24px)}.header-inner{gap:12px}.brand{width:160px}.principles-grid{grid-template-columns:1fr}.cookie-notice{right:12px;bottom:12px;max-width:calc(100vw - 24px);padding:12px;gap:10px}.cookie-notice p{font-size:13px}.cookie-notice__accept{padding:8px 11px;font-size:14px}}
.login-modal[hidden]{display:none}.login-modal{position:fixed;inset:0;z-index:20;display:grid;place-items:center;padding:20px}.login-modal__backdrop{position:absolute;inset:0;background:rgba(7,7,7,.48)}.login-modal__dialog{position:relative;width:100%;max-width:380px;padding:32px;border:2px solid var(--ink);border-radius:18px;background:var(--paper-light);box-shadow:8px 8px 0 var(--ink)}.login-modal__dialog h2{margin:0 0 24px;font-size:32px}.login-modal__close{position:absolute;top:10px;right:14px;border:0;background:none;font-size:30px;line-height:1;cursor:pointer}.login-modal label{display:grid;gap:7px;margin-top:16px;font-size:16px}.login-modal input{width:100%;box-sizing:border-box;padding:12px;border:2px solid var(--ink);border-radius:8px;background:#fff;font:inherit}.login-form__submit{width:100%;margin-top:22px;padding:13px;border:0;border-radius:9px;background:var(--ink);color:#fff;font:inherit;font-weight:700;cursor:pointer}.login-form__submit:disabled{opacity:.65;cursor:wait}.login-form__error{margin:14px 0 0;color:#c43d24;font-size:14px}
@media (max-width:420px){.login-modal__dialog{padding:26px 20px}.login-modal__dialog h2{font-size:27px}}
.login-form__forgot{display:block;margin-top:14px;text-align:center;color:var(--ink);font-size:14px;text-underline-offset:3px}.login-recovery p{margin:0 0 22px;line-height:1.45}.login-recovery__back{padding:10px 14px;border:2px solid var(--ink);border-radius:8px;background:transparent;font:inherit;cursor:pointer}
