@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&family=Inter:wght@400;500&display=swap](https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&family=Inter:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap](https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

@font-face {
  font-family: Garet;
  src: url(./garet.otf);
}

:root {
  --primary: #9674F6;
  --secondary: #A5CBFF;
  --dark: #252128;
  --white: #F8FAF0;
  --glass: rgba(255, 255, 255, 0.03);
  --border: rgba(255, 255, 255, 0.08);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--dark);
  color: var(--white);
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
}

.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
}

.grid-texture {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(circle at center, black, transparent 90%);
  opacity: 0.3;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.2;
  transition: transform 1.2s ease;
}

.orb-1 {
  width: 40vw;
  height: 40vw;
  background: var(--primary);
  top: -10%;
  right: -5%;
}

.orb-2 {
  width: 30vw;
  height: 30vw;
  background: var(--secondary);
  bottom: 10%;
  left: -5%;
}

.copy-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--primary);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  z-index: 1000;
  transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.copy-toast.show {
  transform: translateX(-50%) translateY(0);
}

.container {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
}

.section {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  scroll-snap-align: start;
  padding: 0 5%;
}

.content {
  width: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s ease-out;
}

.section.active .content {
  opacity: 1;
  transform: translateY(0);
}

.full-width {
  max-width: 1100px;
  margin: 0 auto;
}

.hero-minimal {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  font-size: clamp(0.7rem, 2vw, 0.9rem);
  letter-spacing: 4px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-main-title {
  font-family: "League Spartan";
  font-size: clamp(1.8rem, 8vw, 4.5rem);
  font-weight: 200;
  letter-spacing: 15px;
  opacity: 0.8;
}

.hero-brand-name {
  font-family: "League Spartan";
  font-size: clamp(3.5rem, 15vw, 10rem);
  font-weight: 900;
  letter-spacing: -5px;
  line-height: 0.8;
  margin-top: -10px;
}

.hero-year-line {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
  max-width: 400px;
  margin-top: 30px;
}

.hero-year-line .line {
  height: 1px;
  flex: 1;
  background: var(--border);
}

.hero-year-line span {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 5px;
  opacity: 0.5;
}

.section-title {
  font-family: "League Spartan";
  font-size: clamp(1.5rem, 5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: #fff;
}

.logo-row {
  display: flex;
  gap: 20px;
}

.logo-card {
  flex: 1;
  padding: 30px;
  border-radius: 24px;
  transition: 0.4s;
  cursor: pointer;
}

.logo-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--primary);
}

.img-container {
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.img-container img {
  max-width: 85%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 30px;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 40px;
  transition: 0.3s;
  border: none;
  cursor: pointer;
}

.btn-download:hover {
  background: var(--primary);
  transform: scale(1.05);
}

.color-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.color-card {
  transition: 0.4s;
  cursor: pointer;
}

.swatch {
  height: 180px;
  background: var(--c);
  border-radius: 16px;
  margin-bottom: 12px;
  border: 1px solid var(--border);
}

.light-swatch {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.color-card:hover {
  transform: translateY(-10px);
}

.meta b {
  font-size: 1rem;
  display: block;
}

.meta p {
  font-size: 0.8rem;
  opacity: 0.5;
}

.typo-group {
  margin-bottom: 40px;
  text-align: left;
}

.group-subtitle {
  font-family: "League Spartan";
  font-size: 1.2rem;
  letter-spacing: 4px;
  color: var(--secondary);
  margin-bottom: 15px;
  opacity: 0.8;
}

.typo-container {
  display: flex;
  gap: 20px;
}

.typo-box {
  flex: 1;
  padding: 30px;
  border-radius: 24px;
  transition: 0.4s;
  cursor: pointer;
}

.typo-box:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--primary);
}

.label {
  color: var(--primary);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.preview {
  font-size: 2.2rem;
}

.preview.spartan {
  font-family: "League Spartan";
  font-weight: bold;
}

.preview.roboto {
  font-family: 'Roboto';
}

.preview.garet {
  font-family: 'Garet';
}

.rapi-img {
  width: 60%;
  border-radius: 10px;
}

.examples-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 20px;
  align-items: start;
}

.example-card {
  border-radius: 20px;
  overflow: hidden;
  transition: 0.4s;
}

.example-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

.example-card:hover {
  transform: scale(1.05) translateY(-10px);
}

.social-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social-box {
  width: 85px;
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  transition: 0.4s;
  color: #fff;
}

.social-box i {
  width: 32px;
  height: 32px;
}

.social-box:hover {
  background: var(--primary);
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(176, 171, 245, 0.3);
}

.side-nav {
  position: fixed;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
}

.nav-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.nav-item {
  display: flex;
  align-items: center;
  margin: 15px 0;
  text-decoration: none;
}

.nav-label {
  opacity: 0;
  margin-right: 15px;
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--white);
  transition: 0.3s;
  text-transform: uppercase;
}

.nav-dot {
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  opacity: 0.2;
  transition: 0.4s;
}

.nav-item:hover .nav-label {
  opacity: 1;
}

.active .nav-dot {
  opacity: 1;
  background: var(--primary);
  transform: scale(2);
  box-shadow: 0 0 15px var(--primary);
}

.glass {
  background: var(--glass);
  border: 1px solid var(--border);
  backdrop-filter: blur(15px);
}

@media (max-width: 1024px) {
  .color-grid,
  .examples-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .logo-row {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .nav-label {
    display: none;
  }
  .side-nav {
    right: 20px;
  }
  .typo-container,
  .logo-row {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    height: auto;
    overflow: visible;
    scroll-snap-type: none;
  }
  .section {
    height: auto;
    min-height: auto;
    padding: 60px 5%;
    scroll-snap-align: none;
  }
  .content {
    opacity: 1;
    transform: none;
  }
  .hero-minimal {
    padding: 100px 0 40px 0;
  }
  .hero-main-title {
    font-size: 1.5rem;
    letter-spacing: 8px;
    margin-bottom: 5px;
  }
  .hero-brand-name {
    font-size: 5rem;
    letter-spacing: -2px;
  }
  .hero-year-line {
    margin-top: 15px;
    max-width: 250px;
  }
  .color-grid,
  .examples-grid {
    grid-template-columns: 1fr;
  }
  .side-nav {
    top: auto;
    bottom: 0;
    transform: none;
    right: 0;
    left: 0;
    width: 100%;
    background: rgba(37, 33, 40, 0.98);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    border-top: 1px solid var(--border);
    position: fixed;
  }
  .nav-wrapper {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    align-items: center;
  }
  .nav-item {
    margin: 0;
  }
  .rapi-img {
    width: 100%;
  }
  .social-grid {
    padding-bottom: 60px;
  }
}

body.pdf-export {
  overflow: visible !important;
  background-color: #252128 !important;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

body.pdf-export .container {
  height: auto !important;
  overflow: visible !important;
  display: block !important;
  scroll-snap-type: none !important;
  background-color: #252128 !important;
}

body.pdf-export .section {
  height: auto !important;
  min-height: auto !important;
  display: block !important;
  page-break-after: always !important;
  padding: 60px !important;
  scroll-snap-align: none !important;
  background-color: #252128 !important;
}

body.pdf-export .content {
  opacity: 1 !important;
  transform: none !important;
  color: #F8FAF0 !important;
}

body.pdf-export .side-nav,
body.pdf-export .btn-download,
body.pdf-export .bg-layer {
  display: none !important;
}

body.pdf-export .glass {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  backdrop-filter: none !important;
}

body.pdf-export .section-title {
  color: #FFFFFF !important;
}