@charset "UTF-8";
/* Brand+Net investor landing page - Clean Light Theme */
:root {
  --brand-accent: #f15b2a;
  --brand-text: #0b0f1a;
  --brand-muted: #4c5c77;
  --font-primary: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  
  /* Light orange background colors */
  --bg-light-orange: #ffe9dc;
}

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

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(32px, 6vw, 72px);
  font-family: var(--font-primary);
  background: var(--bg-light-orange);
  color: var(--brand-text);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Fade-in animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-delay-1 {
  animation: fadeInUp 0.8s ease-out 0.1s forwards;
  opacity: 0;
}

.fade-in-delay-2 {
  animation: fadeInUp 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

.fade-in-delay-3 {
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
  opacity: 0;
}

.fade-in-delay-4 {
  animation: fadeInUp 0.8s ease-out 0.4s forwards;
  opacity: 0;
}

.fade-in-delay-5 {
  animation: fadeInUp 0.8s ease-out 0.5s forwards;
  opacity: 0;
}

.fade-in-delay-6 {
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
  opacity: 0;
}

.fade-in-delay-7 {
  animation: fadeInUp 0.8s ease-out 0.7s forwards;
  opacity: 0;
}

.fade-in-delay-8 {
  animation: fadeInUp 0.8s ease-out 0.8s forwards;
  opacity: 0;
}

main,
.brandnet-page {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  padding: clamp(36px, 5vw, 72px) 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
}


.brandnet-logo {
  max-width: clamp(220px, 40vw, 320px);
  width: 100%;
  height: auto;
  margin-bottom: clamp(10px, 1.3vw, 16px);
}

.brandnet-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(24px, 4vw, 32px);
  text-align: center;
}

h1 {
  margin: 0;
  font-size: clamp(2.1rem, 3.6vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--brand-text);
}

.brandnet-intro {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
}

.brandnet-intro p {
  margin: 0;
  font-size: clamp(1rem, 1.1vw, 1.18rem);
  line-height: 1.68;
  color: var(--brand-muted);
}

.brandnet-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.12), transparent);
}

.brandnet-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

.brandnet-contact h2 {
  margin: 0;
  font-size: clamp(1.05rem, 1.68vw, 1.4rem);
  font-weight: 700;
  color: var(--brand-text);
}

.brandnet-contact p {
  margin: 0;
  max-width: 520px;
  font-size: clamp(1rem, 1.05vw, 1.16rem);
  line-height: 1.66;
  color: var(--brand-muted);
}

.brandnet-email {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 26px;
  margin-top: clamp(7px, 0.9vw, 11px);
  border-radius: 14px;
  background: var(--brand-accent);
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 16px 32px -18px rgba(241, 91, 42, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.brandnet-email:hover,
.brandnet-email:focus-visible {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 20px 40px -16px rgba(241, 91, 42, 0.75);
  filter: brightness(1.05);
}

.brandnet-email::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 6px;
  border: 1.5px solid currentColor;
  display: inline-block;
  position: relative;
  box-shadow: inset 0 0 0 999px rgba(255, 255, 255, 0.15);
  background:
    linear-gradient(225deg, transparent 0 46%, currentColor 46% 54%, transparent 54%),
    linear-gradient(315deg, transparent 0 46%, currentColor 46% 54%, transparent 54%);
  background-size: 50% 100%;
  background-repeat: no-repeat;
  background-position: left bottom, right bottom;
}

.brandnet-page footer {
  font-size: 0.85rem;
  color: rgba(76, 92, 119, 0.9);
}

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

/* Tablet devices (768px and below) */
@media (max-width: 768px) {
  body {
    padding: clamp(24px, 5vw, 48px);
  }

  main,
  .brandnet-page {
    gap: clamp(20px, 3.5vw, 36px);
  }

  .brandnet-hero {
    gap: clamp(20px, 3.5vw, 28px);
  }

  h1 {
    font-size: clamp(1.8rem, 3.2vw, 2.5rem);
    line-height: 1.2;
  }

  .brandnet-intro p {
    font-size: clamp(0.95rem, 1.05vw, 1.1rem);
    line-height: 1.7;
  }

  .brandnet-contact h2 {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
  }

  .brandnet-contact p {
    font-size: clamp(0.95rem, 1vw, 1.1rem);
    max-width: 100%;
  }
}

/* Mobile devices (640px and below) */
@media (max-width: 640px) {
  body {
    padding: 20px;
  }

  main,
  .brandnet-page {
    padding: 0;
    gap: 32px;
  }

  .brandnet-logo {
    max-width: clamp(180px, 50vw, 260px);
    margin-bottom: 8px;
  }

  .brandnet-hero {
    gap: 24px;
  }

  h1 {
    font-size: 1.65rem;
    line-height: 1.25;
  }

  .brandnet-intro {
    gap: 16px;
  }

  .brandnet-intro p {
    font-size: 0.95rem;
    line-height: 1.75;
  }

  .brandnet-contact {
    gap: 16px;
  }

  .brandnet-contact h2 {
    font-size: 1.05rem;
  }

  .brandnet-contact p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  /* Touch-friendly button */
  .brandnet-email {
    padding: 16px 28px;
    font-size: 0.95rem;
    min-height: 48px;
    width: 100%;
    max-width: 320px;
    justify-content: center;
    margin-top: 8px;
  }

  .brandnet-email::before {
    width: 20px;
    height: 20px;
  }

  .brandnet-divider {
    margin: 8px 0;
  }
}

/* Small mobile devices (480px and below) */
@media (max-width: 480px) {
  body {
    padding: 16px;
  }

  main,
  .brandnet-page {
    gap: 28px;
  }

  .brandnet-logo {
    max-width: clamp(160px, 55vw, 220px);
  }

  h1 {
    font-size: 1.5rem;
    line-height: 1.3;
  }

  .brandnet-intro p {
    font-size: 0.9rem;
  }

  .brandnet-contact h2 {
    font-size: 1rem;
  }

  .brandnet-contact p {
    font-size: 0.9rem;
  }

  .brandnet-email {
    padding: 14px 24px;
    font-size: 0.9rem;
    max-width: 280px;
  }
}

body > *:not(main):not(.brandnet-page) {
  display: none !important;
}
