/* =========================================================
   SCRAPGAADI — Design Tokens
   Theme: Premium black & orange
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root{
  /* --- Color --- */
  --black:      #0A0A0B;   /* base black */
  --black-soft: #16161A;   /* card / panel black */
  --black-line: rgba(255,255,255,.10);

  --orange:      #FF6A1A;  /* primary accent */
  --orange-dark: #E0530F;
  --orange-soft: #FFB27A;

  --white:  #FFFFFF;
  --ivory:  #FAFAF9;
  --gray-1: #C9C9CE;   /* muted text on dark */
  --gray-2: #8C8C93;
  --line-dark: rgba(255,255,255,.14);

  /* --- Type --- */
  --font-display: 'Sora', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* --- Radius / Shadow --- */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --shadow-card: 0 30px 60px -20px rgba(0,0,0,.55);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--white);
  background: var(--black);
  -webkit-font-smoothing: antialiased;
}
img{ max-width:100%; display:block; }
a{ text-decoration:none; color:inherit; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  margin:0;
  line-height:1.08;
  letter-spacing:-0.01em;
}
p{ margin:0; }
button{ font-family:inherit; }
.container{
  width:100%;
  max-width:1280px;
  margin:0 auto;
  padding:0 32px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  font-family:var(--font-display);
  font-weight:700;
  font-size:15px;
  letter-spacing:.01em;
  padding:14px 26px;
  border-radius: var(--r-sm);
  border:2px solid transparent;
  cursor:pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn:focus-visible{ outline:3px solid var(--orange-soft); outline-offset:2px; }
.btn-orange{
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 12px 26px -10px rgba(255,106,26,.55);
}
.btn-orange:hover{ background: var(--orange-dark); transform: translateY(-1px); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:.001ms !important; transition-duration:.001ms !important; }
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  position: sticky;
  top:0;
  z-index: 100;
  background: rgba(10,10,11,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--black-line);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:18px 32px;
  max-width:1280px;
  margin:0 auto;
  gap:24px;
}
.logo{
  display:flex;
  align-items:baseline;
  gap:2px;
  font-family: var(--font-display);
  font-weight:800;
  font-size:23px;
  color: var(--white);
}
.logo .accent{ color: var(--orange); }

.nav-toggle{
  display:none;
  background:none;
  border:none;
  color: var(--white);
  font-size:24px;
  cursor:pointer;
  line-height:1;
  padding:6px;
}
.main-nav ul{
  display:flex;
  align-items:center;
  gap:36px;
}
.main-nav a{
  font-size:14.5px;
  font-weight:500;
  color: var(--gray-1);
  position:relative;
  padding:6px 0;
  transition: color .15s ease;
}
.main-nav a:hover, .main-nav a:focus-visible, .main-nav a.active{ color: var(--white); }
.main-nav a::after{
  content:"";
  position:absolute;
  left:0; bottom:-2px;
  width:0; height:2px;
  background: var(--orange);
  transition: width .2s ease;
}
.main-nav a:hover::after, .main-nav a.active::after{ width:100%; }

.header-cta .btn{ padding:11px 22px; font-size:13.5px; }

@media (max-width: 860px){
  .main-nav{
    position:fixed;
    top:66px; left:0; right:0;
    background: var(--black-soft);
    border-bottom:1px solid var(--black-line);
    max-height:0;
    overflow:hidden;
    transition: max-height .28s ease;
    z-index:99;
  }
  .main-nav.open{ max-height:400px; }
  .main-nav ul{ flex-direction:column; align-items:flex-start; gap:0; padding:8px 32px 18px; }
  .main-nav li{ width:100%; border-bottom:1px solid var(--black-line); }
  .main-nav a{ display:block; padding:14px 0; }
  .nav-toggle{ display:block; }


    .header-inner{
    padding:12px 18px;
    gap:12px;
  }

  .logo{
    font-size:18px;
  }

  .header-cta .btn{
    padding:8px 14px;
    font-size:13px;
    min-height:40px;
    border-radius:10px;
    white-space:nowrap;
  }


}

/* =========================================================
   HERO  (only section on the page)
   ========================================================= */
.hero{
    position:relative;
    min-height:calc(100vh - 68px);
    display:flex;
    align-items:center;
    overflow:hidden;
    padding:56px 0 64px;

    background:
        /* Orange glow */
        radial-gradient(circle at 15% 100%, rgba(255,106,26,.12), transparent 35%),

        /* Dot Pattern */
        radial-gradient(circle, rgba(255,106,26,.18) 1.3px, transparent 1.3px),

        /* Main Background */
        linear-gradient(150deg,#0A0A0B 0%,#17130F 55%,#1C140C 100%);

    background-size:
        100% 100%,
        58px 58px,
        100% 100%;

    background-position:
        center,
        center,
        center;
}
.hero-bg-art{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:bottom;
  z-index:0;
  opacity:.9;
  animation: heroArtDrift 22s ease-in-out infinite;
}

.hero::before{
    animation:dotMove 25s linear infinite;
}

@keyframes dotMove{
    from{
        background-position:0 0,0 0;
    }
    to{
        background-position:0 0,56px 56px;
    }
}
.hero::after{
  /* soft orange glow, top-right, premium ambient light */
  content:"";
  position:absolute;
  top:-10%; right:-10%;
  width:640px; height:640px;
  background: radial-gradient(circle, rgba(255,106,26,.22), transparent 70%);
  pointer-events:none;
  z-index:0;
  animation: glowPulse 6s ease-in-out infinite;
}
@keyframes glowPulse{
  0%, 100%{ opacity:1; transform:scale(1); }
  50%{ opacity:.65; transform:scale(1.12); }
}
.hero-inner{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap:56px;
  align-items:center;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-family: var(--font-body);
  font-size:12.5px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color: var(--orange-soft);
  font-weight:600;
  background: rgba(255,106,26,.12);
  border:1px solid rgba(255,106,26,.3);
  padding:7px 14px;
  border-radius:999px;
  opacity:0;
  animation: fadeUp .7s ease forwards;
  animation-delay:.05s;
}
.hero-copy h1{
  color: var(--white);
  font-weight:800;
  font-size: clamp(32px, 4vw, 50px);
  margin-top:18px;
  opacity:0;
  animation: fadeUp .7s ease forwards;
  animation-delay:.18s;
}
.hero-copy h1 .hl{ color: var(--orange); }
.hero-copy .lede{
  color: var(--gray-1);
  font-size:16.5px;
  line-height:1.65;
  max-width:50ch;
  margin-top:16px;
  opacity:0;
  animation: fadeUp .7s ease forwards;
  animation-delay:.3s;
}
.check-list{
  margin-top:30px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px 24px;
  opacity:0;
  animation: fadeUp .7s ease forwards;
  animation-delay:.42s;
}
@keyframes fadeUp{
  from{ opacity:0; transform: translateY(16px); }
  to{ opacity:1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce){
  .eyebrow, .hero-copy h1, .hero-copy .lede, .check-list, .quote-card{
    animation:none !important; opacity:1 !important;
  }
  .hero-bg-art, .hero::after{ animation:none !important; }
}
.check-list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color: var(--gray-1);
  font-size:14.5px;
  font-weight:500;
}
.check-list .tick{
  flex:0 0 auto;
  width:20px; height:20px;
  border-radius:50%;
  background: rgba(255,106,26,.16);
  color: var(--orange);
  display:flex; align-items:center; justify-content:center;
  font-size:12px;
  margin-top:1px;
}

/* --- Quote card --- */
.quote-card{
  position:relative;
  background: var(--black-soft);
  border:1px solid var(--line-dark);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  padding: 34px 32px;
  opacity:0;
  animation: cardIn .8s ease forwards;
  animation-delay:.25s;
  transition: transform .3s ease, box-shadow .3s ease;
}
.quote-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 34px 70px -20px rgba(0,0,0,.6), 0 0 0 1px rgba(255,106,26,.25);
}
@keyframes cardIn{
  from{ opacity:0; transform: translateY(24px) scale(.98); }
  to{ opacity:1; transform: translateY(0) scale(1); }
}
.quote-card h3{
  color: var(--white);
  font-size:22px;
  font-weight:800;
  text-align:center;
}
.quote-card .sub{
  text-align:center;
  color: var(--gray-2);
  font-size:13.5px;
  margin-top:6px;
  margin-bottom:26px;
}
.field{ margin-bottom:16px; }
.field label{
  display:block;
  font-family: var(--font-body);
  font-size:12.5px;
  font-weight:600;
  color: var(--gray-1);
  margin-bottom:7px;
}
.field input, .field select{
  width:100%;
  font-family: var(--font-body);
  font-size:14.5px;
  color: var(--white);
  background: rgba(255,255,255,.05);
  border:1.5px solid var(--line-dark);
  border-radius: var(--r-sm);
  padding:13px 14px;
  appearance:none;
}
.field input::placeholder{ color: var(--gray-2); }
.field select{
  color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23C9C9CE' stroke-width='1.6' fill='none'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 14px center;
  padding-right:36px;
}
.field select option{ background: var(--black-soft); color: var(--white); }
.field input:focus, .field select:focus{
  outline:none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,106,26,.18);
}
.quote-card .btn{ width:100%; margin-top:8px; padding:15px; font-size:15.5px; }
.quote-card .fine-print{
  margin-top:16px;
  font-size:12px;
  color: var(--gray-2);
  text-align:center;
  line-height:1.5;
}

@media (max-width: 900px){
  .hero{ min-height:auto; padding:44px 0 56px; }
  .hero-inner{ grid-template-columns:1fr; gap:40px; }
  .check-list{ grid-template-columns:1fr; }
}
@media (max-width: 480px){
  .quote-card{ padding:26px 20px; }
  .header-inner{ padding:16px 20px; }
  .container{ padding:0 20px; }
}