:root {
  --background: #0c0911;
  --surface: #120e18;
  --surface-soft: #17111f;
  --purple: #9a70df;
  --purple-soft: #c2a8ee;
  --gold: #d5b56d;
  --gold-hover: #e1c685;
  --text: #f4f1f6;
  --muted: #aaa3b0;
  --border: rgba(255, 255, 255, 0.1);
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--border);
  background: rgba(12, 9, 17, 0.96);
}

.header-inner {
  width: min(1380px, calc(100% - 48px));
  min-height: 112px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(24px, 4vw, 65px);
}

.logo {
  display: flex;
  align-items: center;
  justify-self: center;
  font-weight: 700;
  white-space: nowrap;
}

.logo-name {
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 78px;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1;
}

.logo-name > span {
  color: var(--gold);
  text-shadow: 0 0 24px rgba(213, 181, 109, 0.12);
}

.nav-group {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.nav-left {
  justify-content: flex-end;
}

.nav-right {
  justify-content: flex-start;
}

.nav-group a {
  padding: 10px 0;
  position: relative;
  color: var(--muted);
  font-size: 13px;
  transition: color 0.2s ease;
}

.nav-group a::after {
  content: "";
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 4px;
  background: var(--gold);
  transition: width 0.2s ease;
}

.nav-group a:hover {
  color: var(--text);
}

.nav-group a:hover::after {
  width: 100%;
}

.hero {
  padding: 120px 0 140px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(390px, 0.75fr);
  align-items: center;
  gap: 100px;
}

.overline {
  margin: 0 0 24px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  font-size: clamp(50px, 6vw, 82px);
}

h1 span {
  color: var(--purple-soft);
}

h2 {
  font-size: clamp(38px, 4.5vw, 58px);
}

.hero-text {
  max-width: 650px;
  margin: 30px 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.hero-text strong {
  color: var(--gold);
  font-weight: 700;
}

.status-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 42px;
}

.status {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(154, 112, 223, 0.35);
  border-radius: 100px;
  background: rgba(154, 112, 223, 0.08);
  color: var(--purple-soft);
  font-size: 14px;
  font-weight: 700;
}

.status-primary {
  border-color: rgba(213, 181, 109, 0.5);
  background: rgba(213, 181, 109, 0.09);
  color: var(--gold);
}

.status i {
  width: 6px;
  height: 6px;
  margin-right: 7px;
  display: inline-block;
  border-radius: 50%;
  background: var(--gold);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 49px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 700;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

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

.button-gold {
  background: var(--gold);
  color: #171109;
}

.button-gold:hover {
  background: var(--gold-hover);
}

.button-outline {
  border-color: var(--border);
  background: transparent;
  color: var(--text);
}

.button-outline:hover {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.04);
}

.hero-card {
  min-height: 520px;
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(213, 181, 109, 0.28);
  background: linear-gradient(145deg, rgba(35, 22, 47, 0.96), var(--surface));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

.hero-card-label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-card-mark {
  width: 150px;
  height: 165px;
  margin: 45px auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  position: relative;
  background: rgba(213, 181, 109, 0.035);
}

.hero-card-mark::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(154, 112, 223, 0.32);
}

.hero-card-mark span {
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 105px;
  line-height: 1;
  text-shadow: 0 0 30px rgba(213, 181, 109, 0.2);
}

.hero-card h2 {
  font-size: 29px;
  line-height: 1.3;
  letter-spacing: -0.035em;
}

.hero-card p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.section {
  padding: 140px 0;
  border-top: 1px solid var(--border);
}

.section-alt {
  background: var(--surface);
}

.section-heading {
  max-width: 720px;
}

.heading-centered {
  margin: 0 auto 70px;
  text-align: center;
}

.heading-centered > p:last-child {
  max-width: 580px;
  margin: 22px auto 0;
  color: var(--muted);
  line-height: 1.7;
}

.concept-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 110px;
}

.concept-content p {
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.concept-content .lead {
  color: var(--text);
  font-size: 20px;
  line-height: 1.65;
}

.concept-points,
.values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 38px;
}

.concept-points span,
.values span {
  padding: 9px 13px;
  border: 1px solid var(--border);
  color: var(--purple-soft);
  font-size: 11px;
  font-weight: 600;
}

.launch {
  background: var(--surface);
}

.launch-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1.15fr);
  align-items: center;
  gap: 100px;
}

.launch-badges {
  margin-bottom: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.launch-badges span {
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(154, 112, 223, 0.35);
  border-radius: 100px;
  background: rgba(154, 112, 223, 0.08);
  color: var(--purple-soft);
  font-size: 11px;
  font-weight: 700;
}

.launch-badges span:first-child {
  border-color: rgba(213, 181, 109, 0.42);
  background: rgba(213, 181, 109, 0.07);
  color: var(--gold);
}

.launch-badges i {
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.launch-lead {
  margin: 30px 0 18px;
  color: var(--text) !important;
  font-size: 18px !important;
  line-height: 1.7 !important;
}

.launch-content > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.signup-card {
  padding: 45px;
  position: relative;
  border: 1px solid rgba(213, 181, 109, 0.34);
  background: linear-gradient(145deg, rgba(36, 23, 48, 0.95), #130e19);
}

.signup-number {
  position: absolute;
  top: 24px;
  right: 25px;
  color: rgba(213, 181, 109, 0.55);
  font-size: 9px;
  letter-spacing: 0.16em;
}

.signup-card h3 {
  max-width: 390px;
  margin: 0 0 13px;
  font-size: 27px;
  letter-spacing: -0.03em;
}

.signup-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.signup-form {
  margin: 38px 0 24px;
}

.signup-form label {
  margin-bottom: 10px;
  display: block;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.email-field {
  display: flex;
}

.email-field input {
  width: 100%;
  min-width: 0;
  height: 58px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-right: 0;
  outline: 0;
  background: rgba(5, 3, 8, 0.45);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  transition: border-color 0.2s ease;
}

.email-field input::placeholder {
  color: #716a77;
}

.email-field input:focus {
  border-color: var(--gold);
}

.email-field button {
  min-width: 215px;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid var(--gold);
  background: var(--gold);
  color: #171109;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.email-field button span {
  margin-left: 13px;
}

.email-field button:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
}

.signup-card .privacy-note {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  color: #8f8795;
  font-size: 11px;
  line-height: 1.65;
}

.privacy-note a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}

.feature-card {
  min-height: 355px;
  padding: 30px;
  position: relative;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.01);
}

.feature-number {
  position: absolute;
  top: 25px;
  right: 25px;
  color: #685f70;
  font-size: 10px;
}

.feature-visual {
  width: 100%;
  height: 155px;
  margin: 12px 0 34px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(154, 112, 223, 0.18);
  background: linear-gradient(135deg, rgba(154, 112, 223, 0.08), rgba(213, 181, 109, 0.025));
}

.feature-visual::after {
  content: "";
  width: 115px;
  height: 115px;
  position: absolute;
  border: 1px solid rgba(213, 181, 109, 0.1);
  border-radius: 50%;
}

.bubble {
  min-width: 72px;
  padding: 14px 17px;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(213, 181, 109, 0.55);
  border-radius: 15px 15px 15px 3px;
  color: var(--gold);
  font-size: 19px;
  letter-spacing: 4px;
}

.bubble-two {
  margin: 25px 0 0 -8px;
  border-color: rgba(154, 112, 223, 0.75);
  border-radius: 15px 15px 3px 15px;
  color: var(--purple-soft);
}

.visual-collection span {
  width: 62px;
  height: 88px;
  position: relative;
  z-index: 1;
  border: 1px solid rgba(213, 181, 109, 0.58);
  border-radius: 4px;
  background: #17111f;
}

.visual-collection span:first-child { transform: rotate(-12deg) translateX(7px); }
.visual-collection span:nth-child(2) { z-index: 2; border-color: var(--purple); transform: translateY(-6px); }
.visual-collection span:last-child { transform: rotate(12deg) translateX(-7px); }

.rare-object {
  z-index: 1;
  color: var(--purple-soft);
  font-size: 50px;
}

.magnifier {
  width: 66px;
  height: 66px;
  z-index: 2;
  margin-left: -18px;
  border: 3px solid var(--gold);
  border-radius: 50%;
  transform: translate(12px, -5px);
}

.magnifier::after {
  content: "";
  width: 25px;
  height: 3px;
  position: absolute;
  right: -18px;
  bottom: -10px;
  background: var(--gold);
  transform: rotate(45deg);
}

.sale-tag {
  z-index: 2;
  padding: 17px 29px;
  border: 1px solid var(--purple);
  color: var(--purple-soft);
  font: 700 30px Georgia, serif;
  transform: rotate(-5deg);
}

.sale-coin {
  width: 51px;
  height: 51px;
  z-index: 2;
  margin: 30px 0 0 -10px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--surface);
  color: var(--gold);
  font-family: Georgia, serif;
}

.visual-exchange {
  gap: 16px;
}

.exchange-object,
.exchange-arrows {
  z-index: 1;
  color: var(--gold);
  font-size: 35px;
}

.exchange-arrows {
  color: var(--purple-soft);
  font-size: 40px;
}

.portal {
  width: 70px;
  height: 100px;
  z-index: 1;
  border: 2px solid var(--purple);
  border-radius: 50%;
  box-shadow: inset 0 0 24px rgba(154, 112, 223, 0.35), 0 0 18px rgba(154, 112, 223, 0.2);
}

.discovery-star {
  z-index: 2;
  margin-left: -37px;
  color: var(--gold);
  font-size: 36px;
}

.small-star {
  z-index: 2;
  margin: -52px 0 0 8px;
  color: var(--purple-soft);
  font-size: 30px;
}

.feature-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.universe-heading {
  max-width: none;
  margin-bottom: 65px;
  display: grid;
  grid-template-columns: 1.5fr 0.65fr;
  align-items: end;
  gap: 80px;
}

.universe-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.universe-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.universe-card {
  min-height: 320px;
  padding: 24px;
  border: 1px solid rgba(154, 112, 223, 0.22);
  background: rgba(255, 255, 255, 0.012);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.universe-card:hover {
  transform: translateY(-4px);
  border-color: rgba(213, 181, 109, 0.5);
  background: rgba(213, 181, 109, 0.035);
}

.universe-visual {
  height: 155px;
  margin-bottom: 25px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(154, 112, 223, 0.18);
  background: linear-gradient(140deg, rgba(154, 112, 223, 0.08), rgba(213, 181, 109, 0.025));
}

.universe-tcg i {
  width: 72px;
  height: 105px;
  position: absolute;
  left: calc(50% - 36px);
  top: 24px;
  border: 1px solid var(--gold);
  border-radius: 6px;
  background: #191121;
}

.universe-tcg i::after {
  content: "R";
  position: absolute;
  inset: 8px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(154, 112, 223, 0.45);
  color: var(--gold);
  font: 28px Georgia, serif;
}

.universe-tcg i:first-child { transform: translateX(-38px) rotate(-15deg); }
.universe-tcg i:nth-child(2) { z-index: 2; transform: translateY(-8px); }
.universe-tcg i:last-child { transform: translateX(38px) rotate(15deg); }

.universe-figure i { position: absolute; left: 50%; transform: translateX(-50%); }
.universe-figure .figure-head { width: 47px; height: 47px; top: 23px; border: 1px solid var(--gold); border-radius: 50%; }
.universe-figure .figure-body { width: 73px; height: 65px; top: 68px; border: 1px solid var(--purple); border-radius: 25px 25px 5px 5px; }
.universe-figure .figure-base { width: 115px; height: 10px; top: 133px; border: 1px solid var(--gold); border-radius: 50%; }

.universe-game i {
  width: 145px; height: 76px; position: absolute; left: calc(50% - 72px); top: 42px;
  border: 2px solid var(--purple); border-radius: 34px 34px 20px 20px; transform: rotate(-3deg);
}
.universe-game b,.universe-game span { position:absolute; z-index:1; top:65px; color:var(--gold); font-size:25px; }
.universe-game b { left:calc(50% - 50px); }.universe-game span { right:calc(50% - 53px); letter-spacing:8px; }

.universe-manga { display:flex; align-items:center; justify-content:center; }
.universe-manga i { width:75px; height:112px; display:grid; place-items:center; border:1px solid var(--gold); background:#17101f; color:var(--gold); font:32px Georgia,serif; }
.universe-manga i:first-child { transform:rotate(-7deg) translateX(5px); }.universe-manga i:last-child { border-color:var(--purple); color:var(--purple-soft); transform:rotate(7deg) translateX(-5px); }

.universe-vintage { display:grid; place-items:center; }
.universe-vintage i { color:var(--gold); font-style:normal; font-size:70px; text-shadow:0 0 25px rgba(213,181,109,.3); }
.universe-vintage span { position:absolute; bottom:18px; color:var(--purple-soft); font-size:9px; letter-spacing:.35em; }

.universe-collector { display:grid; place-items:center; }
.universe-collector i { width:110px; height:96px; position:absolute; border:1px solid var(--gold); background:#17101f; transform:rotate(45deg); }
.universe-collector i::after { content:""; position:absolute; inset:9px; border:1px solid rgba(154,112,223,.5); }
.universe-collector span { z-index:1; color:var(--gold); font:50px Georgia,serif; }

.universe-goodies { display:grid; place-items:center; }
.universe-goodies i { width:85px; height:85px; position:absolute; border:2px solid var(--purple); border-radius:50%; box-shadow:0 0 0 8px rgba(154,112,223,.08); }
.universe-goodies span { z-index:1; color:var(--gold); font-size:38px; }

.universe-sealed { display:flex; align-items:center; justify-content:center; gap:18px; }
.universe-sealed i { width:75px; height:112px; display:grid; place-items:center; border:1px solid var(--gold); background:#17101f; clip-path:polygon(0 5%,8% 0,16% 5%,24% 0,32% 5%,40% 0,48% 5%,56% 0,64% 5%,72% 0,80% 5%,88% 0,100% 5%,100% 95%,88% 100%,76% 95%,64% 100%,52% 95%,40% 100%,28% 95%,16% 100%,0 95%); }
.universe-sealed i span { color:var(--gold); font:35px Georgia,serif; }.universe-sealed b { color:var(--purple-soft); font-size:9px; letter-spacing:.14em; writing-mode:vertical-rl; }

.universe-retro { display:grid; place-items:center; }
.universe-retro i { width:112px; height:100px; display:grid; place-items:center; border:5px solid #30243c; border-radius:10px; background:#17101f; color:var(--purple-soft); font:35px Georgia,serif; }
.universe-retro span,.universe-retro b { position:absolute; bottom:21px; z-index:1; color:var(--gold); font-size:18px; }.universe-retro span { left:calc(50% - 36px); }.universe-retro b { right:calc(50% - 42px); letter-spacing:4px; }

.universe-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
}

.universe-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.community {
  background: var(--surface-soft);
}

.community-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 120px;
}

.community-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.contact {
  padding-top: 110px;
  padding-bottom: 110px;
}

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

.contact-inner h2 {
  font-size: clamp(38px, 4.5vw, 56px);
}

.contact-inner p:last-child {
  margin: 20px 0 0;
  color: var(--muted);
}

.contact-action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.contact-email {
  padding-bottom: 7px;
  border-bottom: 1px solid var(--gold);
  color: var(--gold);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
}

.contact-button {
  min-width: 275px;
  min-height: 66px;
  padding: 0 32px;
  gap: 48px;
  font-size: 16px;
}

footer {
  border-top: 1px solid var(--border);
}

.footer-inner {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #837b89;
  font-size: 12px;
}

.footer-inner a {
  color: var(--gold);
}

@media (max-width: 950px) {
  .header-inner {
    grid-template-columns: 1fr 1fr;
    gap: 12px 30px;
    padding: 18px 0 16px;
  }

  .logo {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .nav-left,
  .nav-right {
    grid-row: 2;
  }

  .nav-left {
    grid-column: 1;
  }

  .nav-right {
    grid-column: 2;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .hero-card {
    max-width: 500px;
  }

  .concept-grid,
  .community-inner,
  .launch-inner {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .signup-card {
    max-width: 650px;
  }

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

@media (max-width: 700px) {
  html {
    scroll-padding-top: 190px;
  }

  .container,
  .header-inner {
    width: min(100% - 36px, var(--container));
  }

  .header-inner {
    min-height: 0;
    padding: 17px 0 15px;
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .logo,
  .nav-left,
  .nav-right {
    grid-column: 1;
  }

  .nav-left,
  .nav-right {
    width: 100%;
    justify-content: center;
  }

  .nav-left {
    grid-row: 2;
    margin-top: 10px;
    padding-top: 9px;
    border-top: 1px solid var(--border);
  }

  .nav-right {
    grid-row: 3;
  }

  .logo-name {
    font-size: 62px;
  }

  .nav-group {
    gap: 18px;
  }

  .nav-group a {
    font-size: 12px;
  }

  .hero {
    padding: 80px 0 100px;
  }

  h1 {
    font-size: 48px;
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-card {
    padding: 27px;
  }

  .hero-card-mark {
    margin: 35px 0;
  }

  .section {
    padding: 100px 0;
  }

  .features-grid,
  .universe-list {
    grid-template-columns: 1fr;
  }

  .heading-centered {
    margin-bottom: 50px;
    text-align: left;
  }

  .heading-centered > p:last-child {
    margin-left: 0;
  }

  .universe-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 45px;
  }

  .contact-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-action {
    width: 100%;
  }

  .signup-card {
    padding: 32px 24px;
  }

  .email-field {
    flex-direction: column;
    gap: 10px;
  }

  .email-field input {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
  }

  .email-field input,
  .email-field button {
    width: 100%;
  }

  .footer-inner {
    padding: 30px 0;
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .logo-name {
    font-size: 50px;
  }

  .nav-group a {
    font-size: 11px;
  }

  h1 {
    font-size: 41px;
  }

  h2 {
    font-size: 36px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .feature-card {
    min-height: 245px;
  }
}
