
:root {
  --color-1: #3F51B1; /* Dark Slate Blue */
  --color-2: #FFFFFF; /* White */
  --color-3: #000000; /* Black */
  --color-4: #A62121; /* Firebrick */
  --color-5: #153476; /* Midnight Blue */
  --color-6: #FF4E00; /* Orange Red */
}


*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}



  /* Header Styling */
  .ora-header {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    z-index: 2;
    background: none;
    color: #ededed; /* Dark text for the sky background */
  }

  .ora-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    
      color: #ededed;
      
  }

  /* Custom hamburger icon */
  .ora-hamburger {
    width: 20px;
    height: 5px;
    border-top: 1.5px solid #fff;
    border-bottom: 1.5px solid #fff;
    cursor: pointer;
  }

  .ora-logo {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
      color: #ededed;
  }

  .ora-nav {
    display: flex;
    gap: 30px;
    z-index: 2;
  }

  .ora-nav a {
    text-decoration: none;
      color: #ededed;
    font-size: 15px;
    font-weight: 500;
    transition: opacity 0.3s ease;
  }

  .ora-nav a:hover {
    opacity: 0.6;
  }

  
.menu-btn{
  color: #000;
}



  



@media (max-width: 600px) {
#ctaBtn{
  display: none;
}

.ora-nav{
  display: none;
}

.ora-header{
  display: flex;
}

body{
  padding: 0;
}



}














.btn {
  display: inline-block;
  margin-top: 8px;
  padding: 16px 36px;
  border-radius: 100px;
  background: transparent;
  color: #ededed;
  border: 1px solid rgba(237, 237, 237, 0.2);
  text-decoration: none;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.5px;
  width: fit-content;
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn:hover {
  background: #ededed;
  color: #0a0a0a;
  border-color: #ededed;
  transform: translateY(-2px);
}




.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.btn-primary {
  background-color: #2c2b28;
  color: #ffffff;
  padding: 6px 6px 6px 18px;
  gap: 12px;
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #c5e8d2;
  color: #111111;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #1a1917;
  color: #ff6a00;
}










.ora-menu .nav-pill-nav {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.25s ease;
}

.ora-menu .nav-pill:hover,
.ora-menu .nav-pill.active {
  background-color: #ffffff;
  color: #0d0d0d;
  border-color: #ffffff;
}




    /* Floating Navigation Pill Container */
    .nav-pill-nav {
      display: inline-flex;
      align-items: center;
      padding: 6px 6px 6px 12px;
      gap: 16px;
      border-radius: 10px;
      background: rgba(28, 25, 23, 0.75);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255, 255, 255, 0.15);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
      transition: all 0.3s ease;
    }

    /* Menu Link / Button */
    .menu-btn {
      display: flex;
      align-items: center;
      gap: 10px;
      color: #f5f5f4;
      text-decoration: none;
      font-size: 15px;
      font-weight: 500;
      cursor: pointer;
      background: none;
      border: none;
    }

    /* Hamburger Icon */
    .hamburger {
      display: flex;
      flex-direction: column;
      gap: 4px;
      width: 16px;
    }

    .hamburger span {
      display: block;
      width: 32px;
      height: 2px;
      background-color: #f5f5f4;
      border-radius: 2px;
    }

    /* CTA Button */
    .cta-btn {
      background-color: #fef6ee;
      color: #1c1917;
      text-decoration: none;
      padding: 8px 24px;
      border-radius: 14px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      border: 1px solid rgba(255, 255, 255, 0.4);
      display: inline-block;
      white-space: nowrap;
    }

    /* Responsive Adjustments */
    @media (max-width: 600px) {
      

      .nav-pill {
        padding: 5px 5px 5px 16px;
        gap: 12px;
        border-radius: 16px;
      }

      .menu-btn {
        font-size: 14px;
      }

      .cta-btn {
        padding: 10px 18px;
        font-size: 14px;
        border-radius: 12px;
      }



    }



 

    
@media (max-width: 1024px) {

    .hero{
      padding: 3.4rem 16px;
    }

  .hero-title{
    font-size: 3.1rem;
  }

  .tag{
    font-size: 1.2rem;
  }
}


@media (max-width: 600px) {
  

  h1 {
    letter-spacing: -0.02em;
  }
}



  @media (max-width: 768px) {



    .hero-header{
      height: 85svh;
    }
    
  
    .ora-nav {
      display: none; /* Hide standard nav on smaller screens */
    }

    .ora-header{
      display: flex;
      justify-content: space-between;
      
    }

    .ora-logo{
      font-size: 1rem;
    }

    .hero{
      padding: 4rem 16px;
    }

    .tag::before {
  display: none;
}
   
  }






  .hamburger {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}


.hamburger span{
    width: 20px;
    height: 2px;
    background-color: #fff;
    transition: all 0.4s ease;
}



.hamburger.open span:first-child {
    transform: translateY(3.5px) rotate(45deg) scaleX(0.75);
}

.hamburger.open span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg) scaleX(0.75);
}

.nav-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
 
    z-index: 1;
}

.nav-bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transform: scaleY(0);
    transform-origin: top;
    will-change: transform;
    pointer-events: none;
}


.nav-bg:nth-child(1){
    background-color: var(--color-4);
}

.nav-bg:nth-child(2){
    background-color: var(--color-5);
}

.nav-bg:nth-child(3){
    background-color: var(--color-1);
}

.nav-bg:nth-child(4){
    background-color: var(--color-6);
}


.nav-items{
    display: flex;
    gap: 2rem;
    padding: 8rem;
    clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%);
    will-change: clip-path;
}

.nav-items-col:nth-child(1){
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

.nav-items-col:nth-child(2){
    flex: 4;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}

.nav-items a{
    text-decoration: none;
    color:#fff;
    text-transform: capitalize;
    display: block;
    letter-spacing: -2%;
    line-height: 1.1;
    margin-bottom: 0.5rem;
     
    color: var(--color-2);
    
    cursor: pointer;
}



.nav-socials a{
    font-size: 1.25rem;
}

.nav-legal a{
    font-size: 0.9rem;
    color: #318b6f;
}

.nav-primary-links a{
    font-size: 2.5rem;

}

.nav-secondary-links a{
    font-size: 1.5rem;
}


.nav-content a .line{
    position: relative;
    will-change: transform;
    transform: translateY(100%);
    
}



@media (max-width: 1000px){
    .nav-content,
    .nav-items{
        height: 100svh;
    }

    .nav-items {
        flex-direction: column;
        justify-content: center;
        padding: 0rem 2rem;
        padding-top: 6rem;

    }

    .nav-legal,
    .nav-secondary-links{
        display: none;
    }

    .nav-item-col:nth-child(1),
    .nav-item-col:nth-child(2){
        flex: none;
    }
}



















    
/* Base Reset for Sections */
.about-section, 
.design-section {
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  width: 100%;
}

.about-section *, 
.design-section * {
  box-sizing: border-box;
}

/* ==========================================
   SECTION 1: ABOUT US (DARK THEME)
   ========================================== */
.about-section {
  background-color: #0b0b0b;
  color: #ffffff;
  padding: 80px 60px;
}

.about-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
}

/* Left Column */
.about-left {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.about-badge {
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-badge .dot {
  width: 7px;
  height: 7px;
  background-color: #ffffff;
  border-radius: 50%;
}

.about-badge .badge-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.about-year {
  font-size: 56px;
  font-weight: 400;
  margin: 60px 0;
  letter-spacing: -1px;
  
}

.about-left-footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.about-description {
  font-size: 14px;
  line-height: 1.6;
  color: #a1a1a1;
  margin: 0;
  max-width: 320px;
}

.btn-connect {
  display: inline-block;
  background-color: #2e41ff;
  color: #ffffff;
  padding: 12px 28px;
 
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-connect:hover {
  background-color: #1a2de6;
  transform: translateY(-2px);
}

/* Right Column */
.about-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px;
}

.about-headline {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.35;
  margin: 0;
  letter-spacing: -0.5px;
}

.text-bright {
  color: #ffffff;
}

.text-muted {
  color: #4a4a4a;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 60px;
}

.stat-item {
  border-bottom: 1px solid #222222;
  padding-bottom: 24px;
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.accent-symbol {
  color: #ffffff;
  font-weight: 300;

  
  margin-left: 8px;
}

.stat-label {
  font-size: 14px;
  color: #a1a1a1;
}




/* ==========================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================== */
@media (max-width: 1024px) {
  .about-container {
    flex-direction: column;
    gap: 50px;
  }

  .about-year {
    margin: 30px 0;
  }

  .design-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .card-offset {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .about-section, 
  .design-section {
    padding: 60px 24px;
  }

  .about-headline {
    font-size: 26px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .stat-number {
    font-size: 48px;
  }

  .main-title {
    font-size: 36px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }
}




@media (max-width: 600px) {
#ctaBtn{
  display: none;
}

.ora-nav{
  display: none;
}

.ora-logo {
    left: -48px;
    transform: translateX(0%);

}

body{
  padding: 0;
}


.hero-content tag{
  font-size: 1.4rem;
}

.hero-title{
  font-size: 2.4rem;
}


}















/* Base Section Styles */
.policy-container {
  background-color: var(--color-2);
  color: #000;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 24px;
  line-height: 1.6;
  box-sizing: border-box;

  position: relative;
}


.policy-container h1 {
  color: var(--color-3);
  font-size: 2.25rem;
  font-weight: 500;
  margin-top: 0;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.policy-container h2 {
  color: var(--color-3);
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 36px;
  margin-bottom: 12px;
}

.policy-container p {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.policy-container strong {
  color: var(--color-3);
  font-weight: 600;
}

/* List Styles */
.policy-container ol.terms-list,
.policy-container ul.legal-items {
  padding-left: 20px;
  margin-bottom: 24px;

}

.policy-container ol.terms-list > li {
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.policy-container ol.terms-list > li > p {
  margin-top: 4px;
  margin-bottom: 8px;
}

.policy-container ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-top: 8px;
  margin-bottom: 12px;

}

.policy-container ul li {
  margin-bottom: 6px;
  font-size: 0.95rem;
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
  .policy-container {
    padding: 24px 16px;
  }

  .policy-container h1 {
    font-size: 1.75rem;
  }

  .policy-container h2 {
    font-size: 1.25rem;
    margin-top: 28px;
  }

  .policy-container p,
  .policy-container ol.terms-list > li,
  .policy-container ul li {
    font-size: 0.875rem;
  }

  .policy-container ol.terms-list,
  .policy-container ul.legal-items,
  .policy-container ul {
    padding-left: 16px;
  }
}










@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* --- Reset & Layout --- */
.footer-section {
  background-color: var(--color-3);
  color: #ffffff;
  padding: 40px 40px 24px 40px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

.footer-section * {
  box-sizing: border-box;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* --- Top Row Navigation --- */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.meta-icon {
  stroke: #ffffff;
}

.meta-time {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.footer-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-pill {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  padding: 8px 18px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.25s ease;
}

.nav-pill:hover,
.nav-pill.active {
  background-color: #ffffff;
  color: #0d0d0d;
  border-color: #ffffff;
}

/* --- Middle Info Section --- */
.footer-middle {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-left-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.footer-headline {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -1px;
}

.text-bright {
  color: #ffffff;
}

.text-muted {
  color: #4a4a4a;
}

.copyright-text {
  font-size: 13px;
  color: #666666;
  margin: 40px 0 0 0;
}

.footer-right-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 80px;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-label {
  font-size: 11px;
  font-weight: 600;
  color: #555555;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.info-value {
  font-size: 14px;
  line-height: 1.5;
  color: #cccccc;
  font-style: normal;
  margin: 0;
}

.info-link {
  text-decoration: none;
  transition: color 0.2s ease;
}

.info-link:hover {
  color: #ffffff;
}

/* --- Giant Brand Title --- */
.footer-branding {
  width: 100%;
  text-align: center;
  margin: 20px 0;
}

.brand-giant-text {
  font-size: 7rem;
  font-weight: 700;
  line-height: 0.8;
  margin: 0;
  letter-spacing: -0.04em;
  color: #ffffff;
  text-transform: uppercase;
  user-select: none;
}

/* --- Bottom Bar --- */
.footer-bottom-bar {
  background-color: #141414;
  border-radius: 12px;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.back-to-top-text {
  display: flex;
  flex-direction: column;
  font-size: 12px;
  color: #888888;
  line-height: 1.3;
}

.back-to-top-btn {
  background-color: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.back-to-top-btn:hover {
  background-color: #ffffff;
  color: #0d0d0d;
  border-color: #ffffff;
  transform: translateY(-3px);
}

/* --- Media Queries --- */
@media (max-width: 1024px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-middle {
    flex-direction: column;
    gap: 40px;
  }

  .footer-headline {
    font-size: 38px;
  }

  .footer-right-grid {
    gap: 30px 40px;
  }

  .brand-giant-text{
    font-size: 5rem;
  }
}

@media (max-width: 768px) {
  .footer-section {
    padding: 30px 20px 20px 20px;
  }

  .footer-headline {
    font-size: 30px;
  }

  .footer-right-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .brand-giant-text {
    font-size: 18vw;
    margin: 10px 0;
  }
}












.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 8px;
  background-color: #059669; /* Success Green */
  color: #ffffff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  
  /* Initial hidden state */
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              visibility 0.35s;
  z-index: 9999;
}

/* Active Entrance State */
.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Error Variation */
.toast.error {
  background-color: #DC2626; /* Error Red */
}

/* Icon style */
.toast-icon {
  font-weight: bold;
  font-size: 16px;
  line-height: 1;
}