/* Cuverse Mystery Box — responsive layout (colors aligned with my_crypto_website/css/style.css) */
:root {
  --blue-deep: #0e46c0;
  --blue-bright: #3069e5;
  --blue-light: #d8eeff;
  --blue-faint: #eef3fa;
  --page-bg: #f4f4f7;
  --white: #ffffff;
  --bg-deep: var(--page-bg);
  --bg-panel: #ffffff;
  --accent-blue: var(--blue-deep);
  --accent-blue-hover: var(--blue-bright);
  --accent-purple: #7c3aed;
  --accent-magenta: #c026d3;
  --accent-gold: #c9a227;
  --text: #272727;
  --text-muted: #646464;
  --border-subtle: rgb(0 0 0 / 8%);
  --border-card: #eceff4;
  --glow-blue: 0 4px 24px rgb(48 105 229 / 20%);
  --radius: 12px;
  --radius-lg: 16px;
  --header-h: 72px;
  --max-w: 1200px;
  --space: clamp(1rem, 4vw, 2rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--page-bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.logo {
  font-weight: 800;
  font-style: italic;
  font-size: clamp(1.05rem, 2.8vw, 1.35rem);
  letter-spacing: -0.02em;
  color: var(--blue-bright);
  width: 176px;
}

.logo span {
  color: var(--blue-deep);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

.img_features{
  max-width: 60px;
}

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

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  z-index: 9999;
}

.skip-link:focus {
  left: var(--space);
  top: var(--space);
  padding: 0.5rem 1rem;
  background: var(--accent-blue);
  color: #fff;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--page-bg);
  box-shadow: 0 1px 0 rgb(0 0 0 / 4%);
  border-bottom: 1px solid var(--border-subtle);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0.75rem var(--space);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.logo {
  font-weight: 800;
  font-style: italic;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: var(--blue-bright);
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: var(--white);
  border: 1px solid var(--border-card);
  color: var(--text);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.875rem;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 2vw, 1.5rem);
  flex: 1;
  justify-content: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.header-cta {
  flex-shrink: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
  text-align: center;
}

.btn:focus-visible {
  outline: 2px solid var(--accent-blue-hover);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(180deg, #6a96f6 0%, #1e5bdb 100%);
  color: #fff;
  box-shadow: var(--glow-blue);
}

.btn-primary:hover {
  background: var(--blue-deep);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
}

.section {
  padding: clamp(3rem, 8vw, 5rem) var(--space);
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}

.section-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  text-align: center;
  margin: 0 0 3rem;
  line-height: 1.2;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Hero */
.hero {
  padding-top: clamp(2rem, 6vw, 4rem);
  padding-bottom: clamp(3rem, 8vw, 5rem);
  /* background-image: url(../img/big_one.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right top; */
  max-width: var(--max-w);
  margin: auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1.5fr;
    align-items: center;
  }
}
@media(max-width: 900px){
  .hero-grid{
    display: flex;
    flex-direction: column-reverse;
  }
}
  
.tag-gold {
  display: inline-block;
  color: var(--accent-gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  padding: 0.35rem 0.75rem;
  border: 1px solid rgba(212, 168, 83, 0.4);
  border-radius: 999px;
  background: rgba(212, 168, 83, 0.08);
}

.hero h1 {
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 1rem;
}

.hero-lead {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  margin: 0 0 1.75rem;
  max-width: 36ch;
}

@media (min-width: 900px) {
  .hero-lead {
    max-width: none;
  }
}

.hero-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 420px;
}

.hero-visual {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual img {
  border-radius: var(--radius-lg);
  /* box-shadow: 0 12px 40px rgb(0 0 0 / 10%), var(--glow-blue); */
  width: 100%;
  margin-inline: auto;
  /* border: 1px solid var(--border-card); */
}

.floating-cards {
  display: none;
}

@media (min-width: 600px) {
  .floating-cards {
    display: block;
    position: absolute;
    inset: 0;
    pointer-events: none;
  }

  .float-card {
    position: absolute;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.65rem;
    font-weight: 700;
    line-height: 1.3;
    max-width: 120px;
    text-align: center;
    box-shadow: 0 8px 24px rgb(0 0 0 / 18%);
  }

  .float-card--blue {
    top: 8%;
    right: 0;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: #fff;
  }

  .float-card--gold {
    top: 35%;
    left: 0;
    background: linear-gradient(135deg, #92400e, var(--accent-gold));
    color: #0f172a;
  }

  .float-card--purple {
    bottom: 12%;
    right: 5%;
    background: linear-gradient(135deg, #5b21b6, var(--accent-purple));
    color: #fff;
  }
}

@media (min-width: 900px) {
  .float-card {
    font-size: 0.7rem;
    max-width: 140px;
  }
}

/* Odds cards */
.odds-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 480px) {
  .odds-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .odds-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.odds-card {
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  font-weight: 800;
  font-size: clamp(0.85rem, 2vw, 0.95rem);
  min-height: 200px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-evenly;
  color: #0f172a;
  border: 1px solid rgb(255 255 255 / 12%);
  box-shadow: 0 8px 28px rgb(0 0 0 / 12%);
  background: #fff;
}

.odds-card img {
  width: 80px;
}

.odds-card p {
  margin: 0;
}

.odds-card--500 {
  /* background: linear-gradient(145deg, #1e3a8a, #2563eb); */
  border-top: 2px solid #6a96f6;
}
.odds-card--500 p{
  color: #6a96f6;
}

.odds-card--1000 {
  /* background: linear-gradient(145deg, #4c1d95, var(--accent-purple)); */
  border-top: 2px solid #8b50fc;
}
.odds-card--1000 p {
  color: #8b50fc;
}

.odds-card--2500 {
  /* background: linear-gradient(145deg, #86198f, var(--accent-magenta)); */
  border-top: 2px solid #c026d3;
}
.odds-card--2500 p {
  color: #c026d3;
}

.odds-card--grand {
  /* background: linear-gradient(145deg, #713f12, #ca8a04, var(--accent-gold)); */
  /* color: #c9a227; */
  border-top: 2px solid #c9a227;
}
.odds-card--grand p {
  color: #c9a227;
}

.odds-cta {
  text-align: center;
  margin-top: 2rem;
}

/* How to open — steps */
.steps-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 640px) {
  .steps-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .steps-row {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.step-card {
  background: var(--white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  position: relative;
}

@media (min-width: 1024px) {
  .step-card::after {
    content: "→";
    position: absolute;
    right: -0.6rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
    z-index: 1;
  }

  .step-card:last-child::after {
    display: none;
  }
}

.step-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  /* background: rgb(48 105 229 / 10%); */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}
.step-icon img{
  filter: drop-shadow(0px 3px 5px #6a96f6);
}


.step-card h3 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
}

.step-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* What can you win */
.win-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .win-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.win-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-card);
  transition: all 0.3s;
  cursor: pointer;
}
.win-card:hover{
  position: relative;
  transform: scale(1.05);
  z-index: 1;
  box-shadow: 0px 0px 5px 0px #6a96f6;
}

.win-card img {
  width: 100%;
  /* aspect-ratio: 16 / 10; */
  object-fit: contain;
  background: var(--blue-faint);
}

.win-card-body {
  padding: 1.5rem;
}

.win-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.win-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2rem;
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Journey timeline */
.journey-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .journey-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .journey-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.journey-item {
  background: var(--white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  position: relative;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}
.journey-item:hover {
  border-color: #6a96f6;
}

.journey-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.journey-step {
  width: 32px;
  height: 32px;
  background: #6a96f6;
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
  position: absolute;
  top: -1px;
  left: -1px;
}

.journey-thumb {
  width: clamp(44px, 12vw, 56px);
  height: clamp(44px, 12vw, 56px);
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgb(0 0 0 / 8%);
  background: var(--blue-faint);
}

.journey-item h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.journey-item p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Products */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  overflow: hidden;
  display: flex;
  justify-content: space-around;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
}
.product-card:hover{
  border-color: #3b82f6;
}

.product-card img {
  width: 35%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
}

.product-body {
  padding: 1.25rem;
}

.badge-green {
  display: inline-block;
  background: rgb(34 197 94 / 15%);
  color: #15803d;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

.product-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.1rem;
}

.specs {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.price-row {
  font-size: 0.95rem;
}

.price-after {
  color: #15803d;
  font-weight: 600;
  display: block;
  margin-top: 0.25rem;
}

.products-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 520px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
}
.feature-card:hover{
  border-color: #3b82f6;

}

.feature-card .fi {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.feature-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Stats */
.stats-section {
  background: linear-gradient(180deg, var(--blue-faint) 0%, var(--page-bg) 100%);
  border-block: 1px solid var(--border-card);
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item .stat-value {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 800;
  color: #6a96f6;;
  display: block;
}

.stat-item .stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.stat-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, #6a96f6, #0e46c0);
  border-radius: var(--radius-lg);
  border: 1px solid rgb(255 255 255 / 15%);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  box-shadow: var(--glow-blue);
  color: #fff;
}

@media (min-width: 768px) {
  .final-cta {
    grid-template-columns: minmax(200px, 320px) 1fr;
  }
}

.final-cta img {
  border-radius: var(--radius);
  width: 100%;
  max-width: 320px;
  margin-inline: auto;
  filter: drop-shadow(0px 5px 7px #fff);
}

.final-cta h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  color: #fff;
}

.final-cta p {
  color: rgb(255 255 255 / 88%);
  margin: 0 0 1.25rem;
  font-size: 0.95rem;
}

.final-cta .hero-note {
  color: rgb(255 255 255 / 78%);
}

/* Footer — same structure as my_crypto_website (images in img/footer/) */
.site-footer.site-footer--cuverse {
  margin-top: 28px;
  background: #fff;
  border-top: 1px solid #eceff4;
  padding: 0;
}

.site-footer.site-footer--cuverse .footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 30px 16px 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
}

.site-footer.site-footer--cuverse .footer-logo {
  display: inline-flex;
  font-weight: 800;
  font-style: italic;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--blue-bright);
  width: 128px;
}

.site-footer.site-footer--cuverse .footer-logo span {
  color: var(--blue-deep);
}

.site-footer.site-footer--cuverse .footer-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.site-footer.site-footer--cuverse .footer-social {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.site-footer.site-footer--cuverse .footer-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: var(--blue-bright);
  padding: 7px;
}

.site-footer.site-footer--cuverse .footer-social-btn img {
  width: 18px;
  height: auto;
  display: block;
}

.site-footer.site-footer--cuverse .footer-store-badge {
  padding: 10px 14px;
  border-radius: 30px;
  font-size: 6px;
  font-weight: 600;
  color: transparent;
  background: transparent;
  display: inline-block;
  min-width: 118px;
  min-height: 36px;
  vertical-align: middle;
}

.site-footer.site-footer--cuverse .footer-store-badge.appStore {
  background: url(../img/footer/appStore.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.site-footer.site-footer--cuverse .footer-store-badge.playStore {
  background: url(../img/footer/playStore.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.site-footer.site-footer--cuverse .footer-payments {
  margin-top: 16px;
}

.site-footer.site-footer--cuverse .footer-kicker {
  margin: 0 0 6px;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 600;
  color: #7f8793;
}

.site-footer.site-footer--cuverse .footer-pay-row {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
  color: #b8bec9;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  max-width: 130px;
  filter: grayscale(1);
  opacity: 0.5;
}

.site-footer.site-footer--cuverse .footer-pay-row img {
  flex-shrink: 0;
}

.site-footer.site-footer--cuverse .footer-copy,
.site-footer.site-footer--cuverse .footer-address {
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  color: #4b5360;
}

.site-footer.site-footer--cuverse .footer-address {
  margin-top: 6px;
  max-width: 70ch;
}

.site-footer.site-footer--cuverse .footer-links-col {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer.site-footer--cuverse .footer-heading {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #7f8793;
  letter-spacing: 0.03em;
}

.site-footer.site-footer--cuverse .footer-link {
  font-size: 14px;
  line-height: 1.15;
  font-weight: 600;
  color: #20232a;
  width: fit-content;
}

.site-footer.site-footer--cuverse .footer-link-highlight {
  color: var(--blue-bright);
  background-color: rgb(216, 238, 255);
  padding: 5px 10px;
  border-radius: 10px;
}

@media (min-width: 1020px) {
  .site-footer.site-footer--cuverse .footer-inner {
    padding: 34px 32px;
    grid-template-columns: 1.3fr minmax(180px, 0.36fr) minmax(210px, 0.42fr);
    gap: 24px;
    align-items: start;
    position: relative;
    padding-bottom: 100px;
  }
}

@media (max-width: 1020px) {
  .site-footer.site-footer--cuverse .footer-inner {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    position: relative;
    padding-bottom: 100px;
  }

  .site-footer.site-footer--cuverse .footer-brand-col {
    grid-area: 1 / 1 / 2 / 3;
  }

  .site-footer.site-footer--cuverse .footer-inner > .footer-links-col:nth-child(2) {
    grid-area: 2 / 1 / 3 / 2;
  }

  .site-footer.site-footer--cuverse .footer-inner > .footer-links-col:nth-child(3) {
    grid-area: 2 / 2 / 3 / 3;
  }

  .site-footer.site-footer--cuverse .footer_copy_block {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 15px;
  }
}

/* ——— Responsive nav (mobile) ——— */
@media (max-width: 899px) {
  .nav-toggle {
    display: inline-flex;
    order: 2;
  }

  .header-cta {
    order: 3;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .header-cta .btn {
    width: 100%;
    max-width: 320px;
  }

  .main-nav {
    display: none;
    width: 100%;
    order: 4;
    flex-direction: column;
    padding: 1rem 0;
    border-top: 1px solid var(--border-subtle);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 0.6rem 0;
    width: 100%;
    text-align: center;
  }

  .logo {
    order: 0;
  }
}

@media (min-width: 900px) {
  .header-inner {
    flex-wrap: nowrap;
  }

  .main-nav {
    order: unset;
  }

  .header-cta {
    order: unset;
    width: auto;
  }

  .header-cta .btn {
    width: auto;
    max-width: none;
  }
}

/* Touch targets */
@media (pointer: coarse) {
  .btn {
    min-height: 44px;
  }

  .main-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
