/* =========================
   Base + tokens (Code Noor)
   ========================= */
:root {
  --bg: #F5F1EC;
  --text: #2B2A28;
  --muted: #6E6660;
  --border: #DDD6CF;

  --accent: #C9A29B;
  --accent-2: #8C817A;

  --card: rgba(255, 255, 255, 0.55);
  --card-strong: rgba(255, 255, 255, 0.75);

  /* Within palette (used only inside Within card) */
  --within-bg: #F6F3EE;
  --within-surface: #FFFCF9;
  --within-action: #B8746A;
  --within-neutral: #BFC7BC;
  --within-text: #4B3A34;

  --radius-lg: 18px;
  --radius-md: 14px;
  --shadow: 0 14px 40px rgba(0, 0, 0, 0.06);

  --max: 1120px;
  --pad: 28px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
}

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

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* =========================
   Header
   ========================= */
.header {
  padding: 22px 0;
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  height: 40px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  font-size: 14px;
  letter-spacing: .02em;
  color: var(--accent-2);
  padding: 10px 10px;
  border-radius: 12px;
}

.nav a.active {
  color: var(--within-action);
  font-weight: 600;
  background: rgba(201, 162, 155, 0.15);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(140, 129, 122, 0.9);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.btn:active {
  transform: translateY(0px);
  box-shadow: none;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.55);
  color: var(--text);
  border-color: rgba(0, 0, 0, 0.06);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.75);
}

.btn-small {
  padding: 9px 12px;
  border-radius: 12px;
  font-size: 13px;
}

/* Burger */
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.06);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.burger span {
  width: 18px;
  height: 2px;
  background: var(--accent-2);
  display: block;
  position: relative;
  border-radius: 999px;
}

.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--accent-2);
  border-radius: 999px;
}

.burger span::before {
  top: -6px;
}

.burger span::after {
  top: 6px;
}

/* Mobile menu panel */
.mobile-menu {
  display: none;
  margin-top: 14px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 10px;
}

.mobile-menu a {
  display: block;
  padding: 12px 12px;
  border-radius: 12px;
  color: var(--accent-2);
}

.mobile-menu a.active {
  color: var(--within-action);
  font-weight: 600;
  background: rgba(201, 162, 155, 0.15);
}

.mobile-menu .mobile-cta {
  margin-top: 8px;
  width: 100%;
}

/* =========================
   Layout sections
   ========================= */
.section {
  padding: 28px 0;
}

.spacer-lg {
  padding: 44px 0;
}

/* Hero row */
.hero {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 28px;
  align-items: start;
  padding: 18px 0 8px;
}

.hero h1 {
  margin: 0 0 10px;
  font-family: "Lora", Georgia, serif;
  /* optional; fallback ok */
  font-weight: 600;
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero p {
  margin: 0 0 14px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.55;
}

.quote {
  margin: 26px 0 0;
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  opacity: .7;
}

/* Featured app card (Within) */
.feature-card {
  border-radius: var(--radius-lg);
  background: var(--card-strong);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
  padding: 18px;
}

.feature-card .label {
  font-size: 13px;
  color: var(--accent-2);
  margin-bottom: 10px;
}

.app-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.app-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.app-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: var(--within-action);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  box-shadow: 0 10px 25px rgba(58, 38, 32, 0.12);
}

.app-icon .dots {
  display: flex;
  gap: 10px;
}

.app-icon .dots i {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--within-surface);
  opacity: .95;
}

.app-meta {
  min-width: 0;
}

.app-meta .name {
  font-weight: 700;
  font-size: 16px;
  margin: 0;
}

.app-meta .tagline {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}


/* =========================
   App icon (real PNG)
   ========================= */
.app-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  /* ne coupe jamais l'image */
  border-radius: 12px;
  /* style iOS */
  background: #fff;
  /* si png transparent */
  box-shadow: 0 8px 20px rgba(58, 38, 32, 0.12);
}

/* version plus grande pour cards */
.app-logo-lg {
  width: 80px;
  height: 80px;
  border-radius: 22px;
}

/* About studio block */
.about-block {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  align-items: start;
}

.h2 {
  margin: 0 0 10px;
  font-family: "Lora", Georgia, serif;
  font-weight: 600;
  font-size: 26px;
}

.about-text p {
  margin: 0 0 10px;
  color: var(--muted);
  line-height: 1.55;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.pill {
  background: rgba(201, 162, 155, 0.18);
  color: var(--accent-2);
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 12px;
}

.about-actions {
  display: flex;
  justify-content: flex-end;
  padding-top: 8px;
}

/* Secondary CTA (ex: Learn more) */
.btn-outline {
  background: transparent;
  color: var(--within-action);
  border-color: rgba(184, 116, 106, 0.35);
}

.btn-outline:hover {
  background: rgba(201, 162, 155, 0.18);
  border-color: rgba(184, 116, 106, 0.55);
  box-shadow: var(--shadow);
}

/* Our Applications */
.section-title {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-top: 6px;
}

.section-title .h2 {
  margin: 0;
}

.section-title .sub {
  color: var(--muted);
  font-size: 14px;
}

/* Carousel */
.carousel {
  margin-top: 14px;
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.carousel::-webkit-scrollbar {
  height: 10px;
}

.carousel::-webkit-scrollbar-thumb {
  background: rgba(140, 129, 122, 0.25);
  border-radius: 999px;
}

.carousel-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 16px;

  display: flex;
  flex-direction: column;
}

.carousel-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.app-card-icon {
  width: 74px;
  height: 74px;
  border-radius: 20px;
  background: var(--within-bg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.app-card-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;

}

.carousel-card .app-logo-lg {
  margin: 0 auto 12px auto;
}

.carousel-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
  text-align: center;
  max-width: 26ch;
  /* force des lignes courtes = 1 phrase / ligne */
  margin-left: auto;
  margin-right: auto;
}

.split-lines span {
  display: block;
  /* 1 phrase = 1 ligne */
}

.split-lines span+span {
  margin-top: 4px;
}

.store-row {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap: 10px;
  margin: 14px 0;
  flex-wrap: wrap;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 13px;
  color: var(--text);
}

.store-btn:hover {
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.store-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.discover-row {
  margin-top: auto;
  /* pousse en bas */
  display: flex;
  justify-content: flex-end;
}

/* Tertiary CTA (Discover) */
.btn-link {
  background: transparent;
  border: none;
  color: var(--accent-2);
  padding: 6px 4px;
  font-weight: 600;
  box-shadow: none;
}

.btn-link:hover {
  color: var(--within-action);
  transform: translateX(3px);
  /* petit slide élégant */
  box-shadow: none;
}

/* More soon card */
.more-soon {
  background: rgba(255, 255, 255, 0.55);
}

.carousel-card p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
  text-align: center;
  max-width: 26ch;
  /* force des lignes courtes = 1 phrase / ligne */
  margin-left: auto;
  margin-right: auto;
}

.social-row {
  display: flex;
  justify-content: center;
  /* centre le groupe */
  align-items: center;
  gap: 12px;
  margin: 14px 0;
  width: 100%;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.icon {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

/* =========================
   Footer
   ========================= */
.footer {
  border-top: 1px solid var(--border);
  margin-top: 40px;
  background: rgba(0, 0, 0, 0.02);
}

.footer-inner {
  padding: 26px 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  object-fit: cover;
}

.footer small {
  color: var(--muted);
  line-height: 1.5;
}

.footer-links a {
  display: block;
  padding: 6px 0;
  color: var(--accent-2);
}

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

.footer-bottom {
  display: flex;
  justify-content: flex-end;
  padding: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 940px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .about-block {
    grid-template-columns: 1fr;
  }

  .about-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  :root {
    --pad: 18px;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .mobile-menu.open {
    display: block;
  }

  .hero h1 {
    font-size: 34px;
  }

  .carousel-card {
    flex-basis: 82vw;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    justify-content: flex-start;
  }
}


/* =========================
   Legal pages
   ========================= */
.legal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 0 0;
}

.legal-sub {
  color: var(--muted);
  font-size: 14px;
  margin-top: 6px;
}

.legal-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  max-width: 860px;
  /* rend la lecture confortable */
}

.legal-card {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 18px;
}

.legal-card-head {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  margin-bottom: 12px;
}

.legal-title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.legal-meta {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.legal-body {
  color: var(--muted);
  font-size: 14px;
  /* texte plus petit */
  line-height: 1.7;
}

.legal-body h3 {
  margin: 16px 0 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.legal-body p {
  margin: 0 0 10px;
}

.legal-body ul {
  margin: 8px 0 10px 18px;
  padding: 0;
}

.legal-body li {
  margin: 6px 0;
}

.legal-footer {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
}

/* Responsive */
@media (max-width: 760px) {
  .legal-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* =========================
   Within page tweaks
   ========================= */

/* Hero icon column alignment */
.hero {
  align-items: center;
  /* centre verticalement les 2 colonnes */
}

.hero-aside {
  display: flex;
  align-items: center;
  /* centre en hauteur */
  justify-content: center;
  /* centre en largeur */
  min-height: 160px;
}

/* Core card */
.within-core {
  max-width: 760px;
  margin: 0 auto;
}

.core-text {
  color: var(--muted);
  margin: 10px 0 0;
  line-height: 1.7;
}

.core-quote {
  margin: 14px 0 0;
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  color: var(--accent-2);
  line-height: 1.7;
}

/* Features grid (smaller cards, not carousel) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-tile {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 14px;
}

.feature-tile h3 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.feature-tile p {
  margin: 0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
  text-align: center;
}

/* Screenshots horizontal carousel */
.shots {
  margin-top: 14px;
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 10px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.shot-card {
  flex: 0 0 220px;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  padding: 14px;
  text-align: center;
}

.shot-card h3 {
  margin: 0 0 10px;
  font-size: 15px;
  font-weight: 700;
}

.shot-img {
  width: 140px;
  /* petit “téléphone” */
  height: auto;
  margin: 0 auto 10px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

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

/* Premium */
.within-premium {
  max-width: 920px;
  margin: 0 auto;
}

.premium-text {
  color: var(--muted);
  margin: 10px 0 0;
  line-height: 1.7;
}

/* mini cards (used in Premium) */
.mini-cards {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.mini-card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 12px;
}

.mini-card h4 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
}

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

/* Final quote */
.final-quote {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.final-quote p {
  margin: 10px auto 0;
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  color: var(--accent-2);
  line-height: 1.7;
}

/* Disclaimer */
.disclaimer {
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 940px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .mini-cards {
    grid-template-columns: 1fr;
  }
}


/* =========================
   About page
   ========================= */
.about-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 14px;
}

.wordmark {
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
  display: inline-flex;
  gap: 10px;
  align-items: baseline;
}

.wordmark-code {
  font-family: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-weight: 600;
  font-size: 44px;
}

.wordmark-noor {
  font-family: "Lora", Georgia, serif;
  font-weight: 600;
  font-size: 44px;
}

.about-lead {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.about-intro {
  max-width: 920px;
  margin: 0 auto;
}

.about-muted {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

/* Force 2x2 grid for the "A few words" cards on About */
.about-grid {
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 940px) {

  .wordmark-code,
  .wordmark-noor {
    font-size: 36px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Contact page
   ========================= */

/* Active state for header CTA (Contact page) */
.btn-active {
  background: rgba(201, 162, 155, 0.25);
  color: var(--within-action);
  border-color: rgba(184, 116, 106, 0.35);
  pointer-events: none;
  /* visuellement + réellement désactivé */
  cursor: default;
  box-shadow: none;
}

.contact-form .field {
  margin-bottom: 14px;
}

.label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.hint {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.input {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.75);
  padding: 11px 12px;
  font-size: 14px;
  color: var(--text);
  outline: none;
}

.input:focus {
  border-color: rgba(184, 116, 106, 0.45);
  box-shadow: 0 0 0 4px rgba(201, 162, 155, 0.18);
}

.textarea {
  resize: vertical;
  min-height: 140px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.reason-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.reason-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.6);
  color: var(--accent-2);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.reason-btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.reason-btn.is-active {
  background: rgba(201, 162, 155, 0.18);
  color: var(--within-action);
  border-color: rgba(184, 116, 106, 0.35);
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.sent-note {
  margin-top: 14px;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(0, 0, 0, 0.06);
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 760px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

/* Stack language switch above contact */
.header-cta-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.header-cta-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* ← clé du centrage */
  gap: 6px;
}

/* petit switch discret */
.lang-switch {
  display: inline-flex;
  gap: 6px;
  justify-content: center;
}

.lang-btn {
  background: transparent;
  border: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
  padding: 2px 6px;
  cursor: pointer;
}

.lang-btn:hover {
  color: var(--accent-2);
}

.lang-btn.is-active {
  color: var(--within-action);
  pointer-events: none;
}

/* Desktop: show header stack, hide mobile-lang */
.mobile-lang {
  display: none;
}

@media (max-width: 760px) {

  /* Mobile: header-cta is hidden already, so show the switch inside the menu */
  .mobile-lang {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 6px 0 10px;
  }

  .mobile-lang .lang-btn {
    font-size: 12px;
    padding: 6px 10px;
  }

  .header-cta-stack {
    display: none;
  }
}

/* Keep 2 columns on Within hero even on mobile */
@media (max-width: 940px) {
  .hero.hero-keep-2col {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 14px;
    align-items: center;
  }

  .hero.hero-keep-2col h1 {
    font-size: 28px;
    /* évite que ça déborde */
  }

  .hero.hero-keep-2col p {
    font-size: 14px;
  }

  .hero.hero-keep-2col .hero-aside {
    min-height: auto;
  }

  .hero.hero-keep-2col .app-logo-lg {
    width: 64px;
    height: 64px;
  }
}