/* ============================================
   VURO — Coming Soon Landing Page
   style.css
   ============================================ */

   *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

   :root {
     --bg:        #080808;
     --bg2:       #0f0f0f;
     --bg3:       #141414;
     --border:    rgba(255,255,255,0.06);
     --border2:   rgba(255,255,255,0.10);
     --accent:    #e8ff00;
     --accent2:   #ff6b00;
     --text:      #f5f5f5;
     --muted:     rgba(245,245,245,0.4);
     --muted2:    rgba(245,245,245,0.6);
     --ff-head:   'Bebas Neue', sans-serif;
     --ff-body:   'Outfit', sans-serif;
     --nav-h:     68px;
     --r:         18px;
   }
   
   html { scroll-behavior: smooth; }
   
   body {
     background: var(--bg);
     color: var(--text);
     font-family: var(--ff-body);
     overflow-x: hidden;
     cursor: none;
   }
   
   a { text-decoration: none; color: inherit; }
   ul { list-style: none; }
   
   .container {
     max-width: 1120px;
     margin: 0 auto;
     padding: 0 28px;
   }
   
   /* ── Scrollbar ── */
   ::-webkit-scrollbar { width: 3px; }
   ::-webkit-scrollbar-track { background: var(--bg); }
   ::-webkit-scrollbar-thumb { background: var(--accent); }
   
   /* ── Noise texture overlay ── */
   .noise {
     position: fixed; inset: 0; z-index: 9998;
     pointer-events: none;
     opacity: 0.028;
     background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
   }
   
   /* ============================================
      CUSTOM CURSOR
      ============================================ */
   .cursor {
     position: fixed; z-index: 9999; pointer-events: none;
     width: 10px; height: 10px;
     background: var(--accent);
     border-radius: 50%;
     transform: translate(-50%, -50%);
     transition: width 0.2s, height 0.2s, background 0.2s;
     mix-blend-mode: difference;
   }
   .cursor-follower {
     position: fixed; z-index: 9997; pointer-events: none;
     width: 36px; height: 36px;
     border: 1px solid rgba(232,255,0,0.35);
     border-radius: 50%;
     transform: translate(-50%, -50%);
     transition: transform 0.12s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s;
   }
   body:has(a:hover) .cursor,
   body:has(button:hover) .cursor { width: 16px; height: 16px; }
   body:has(a:hover) .cursor-follower,
   body:has(button:hover) .cursor-follower { width: 54px; height: 54px; border-color: rgba(232,255,0,0.7); }
   
   /* ============================================
      NAVBAR
      ============================================ */
   .navbar {
     position: fixed; top: 0; left: 0; right: 0;
     z-index: 100;
     transition: background 0.5s ease, box-shadow 0.5s ease;
   }
   .navbar.scrolled {
     background: rgba(8,8,8,0.88);
     backdrop-filter: blur(20px);
     -webkit-backdrop-filter: blur(20px);
     box-shadow: 0 1px 0 var(--border);
   }
   .nav-inner {
     display: flex; align-items: center; justify-content: space-between;
     height: var(--nav-h);
     padding: 0 32px;
     max-width: 1200px; margin: 0 auto;
   }
   .nav-brand {
     font-family: var(--ff-head);
     font-size: 28px;
     letter-spacing: 0.1em;
     color: var(--text);
     transition: color 0.2s;
   }
   .nav-brand:hover { color: var(--accent); }
   
   .nav-ig {
     width: 40px; height: 40px;
     display: flex; align-items: center; justify-content: center;
     border: 1px solid var(--border2);
     border-radius: 12px;
     color: var(--muted2);
     transition: color 0.25s, border-color 0.25s, background 0.25s;
   }
   .nav-ig:hover { color: var(--text); border-color: var(--accent); background: rgba(232,255,0,0.06); }
   
   /* No hamburger or mobile menu in this navbar */
   
   /* ============================================
      BUTTONS
      ============================================ */
   .btn-primary {
     display: inline-flex; align-items: center; gap: 10px;
     background: var(--accent);
     color: #080808;
     font-family: var(--ff-body);
     font-weight: 700; font-size: 15px;
     padding: 14px 28px;
     border-radius: 50px;
     border: none; cursor: none;
     transition: transform 0.25s ease, box-shadow 0.25s ease;
     position: relative; overflow: hidden;
   }
   .btn-primary::after {
     content: '';
     position: absolute; inset: 0;
     background: rgba(255,255,255,0.15);
     opacity: 0;
     transition: opacity 0.2s;
   }
   .btn-primary:hover::after { opacity: 1; }
   .btn-primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 12px 40px rgba(232,255,0,0.3);
   }
   .btn-ghost {
     display: inline-flex; align-items: center;
     font-family: var(--ff-body); font-size: 15px; font-weight: 400;
     color: var(--muted2);
     padding: 14px 20px; border-radius: 50px;
     transition: color 0.2s;
     cursor: none;
   }
   .btn-ghost:hover { color: var(--text); }
   
   /* ============================================
      SCROLL REVEAL
      ============================================ */
   .reveal {
     opacity: 0; transform: translateY(40px);
     transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
   }
   .reveal.visible { opacity: 1; transform: translateY(0); }
   .reveal[data-d="1"] { transition-delay: 0.1s; }
   .reveal[data-d="2"] { transition-delay: 0.2s; }
   .reveal[data-d="3"] { transition-delay: 0.3s; }
   
   /* ============================================
      SECTION LABELS
      ============================================ */
   .section-label {
     display: flex; align-items: center; gap: 14px;
     font-size: 11px; font-weight: 600;
     letter-spacing: 0.2em; text-transform: uppercase;
     color: var(--accent);
     margin-bottom: 20px;
   }
   .label-line {
     display: block; width: 40px; height: 1px;
     background: var(--accent); opacity: 0.6;
   }
   .section-heading {
     font-family: var(--ff-head);
     font-size: clamp(52px, 8vw, 96px);
     line-height: 0.95;
     letter-spacing: 0.02em;
     margin-bottom: 56px;
   }
   
   /* ============================================
      HERO
      ============================================ */
   .hero {
     position: relative;
     min-height: 100vh;
     display: flex; align-items: center; justify-content: center;
     overflow: hidden;
     padding: calc(var(--nav-h) + 40px) 28px 100px;
   }
   
   #bgCanvas {
     position: absolute; inset: 0;
     width: 100%; height: 100%;
     pointer-events: none;
   }
   
   .hero-inner {
     position: relative; z-index: 2;
     text-align: center;
     max-width: 900px;
   }
   
   .hero-eyebrow {
     display: inline-flex; align-items: center; gap: 10px;
     font-size: 12px; font-weight: 500;
     letter-spacing: 0.16em; text-transform: uppercase;
     color: var(--muted2);
     border: 1px solid var(--border2);
     background: rgba(255,255,255,0.04);
     padding: 8px 18px; border-radius: 50px;
     margin-bottom: 40px;
     animation: fadeUp 0.8s 0.2s both;
   }
   .dot-pulse {
     width: 7px; height: 7px; border-radius: 50%;
     background: var(--accent);
     box-shadow: 0 0 10px rgba(232,255,0,0.8);
     animation: dotBlink 1.6s ease-in-out infinite;
   }
   @keyframes dotBlink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.4;transform:scale(0.7)} }
   
   .hero-heading {
     font-family: var(--ff-head);
     font-size: clamp(64px, 12vw, 148px);
     line-height: 0.9;
     letter-spacing: 0.02em;
     display: flex; flex-direction: column; align-items: center;
     gap: 0;
     margin-bottom: 30px;
   }
   .word {
     display: block;
     opacity: 0;
     transform: translateY(60px) skewY(4deg);
     animation: wordReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
   }
   .word:nth-child(1) { animation-delay: 0.3s; }
   .word:nth-child(2) { animation-delay: 0.45s; }
   .word:nth-child(3) { animation-delay: 0.6s; }
   .word:nth-child(4) { animation-delay: 0.75s; }
   .word.accent { color: var(--accent); }
   .word.accent-dim { color: rgba(245,245,245,0.25); }
   
   @keyframes wordReveal {
     to { opacity: 1; transform: translateY(0) skewY(0deg); }
   }
   
   .hero-sub {
     font-size: clamp(16px, 2vw, 20px);
     color: var(--muted2);
     font-weight: 300;
     min-height: 30px;
     margin-bottom: 44px;
     animation: fadeUp 0.8s 1.1s both;
   }
   .typed-cursor {
     animation: blink 0.9s step-end infinite;
     color: var(--accent);
   }
   @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
   
   .hero-cta {
     display: flex; align-items: center; justify-content: center; gap: 8px; flex-wrap: wrap;
     animation: fadeUp 0.8s 1.3s both;
   }
   
   @keyframes fadeUp {
     from { opacity: 0; transform: translateY(30px); }
     to   { opacity: 1; transform: translateY(0); }
   }
   
   /* Floating badges */
   .float-badge {
     position: absolute;
     font-family: var(--ff-body); font-size: 12px; font-weight: 600;
     letter-spacing: 0.1em; text-transform: uppercase;
     color: var(--accent);
     border: 1px solid rgba(232,255,0,0.25);
     background: rgba(232,255,0,0.06);
     padding: 8px 18px; border-radius: 50px;
     animation: floatAnim 6s ease-in-out infinite;
     opacity: 0;
     animation-fill-mode: both;
     pointer-events: none;
   }
   .fb-1 { left: 5%; top: 35%; animation-delay: 1.5s; animation-duration: 7s; }
   .fb-2 { right: 6%; top: 30%; animation-delay: 2s; animation-duration: 8s; }
   .fb-3 { left: 8%; bottom: 22%; animation-delay: 2.5s; animation-duration: 6.5s; }
   @keyframes floatAnim {
     0%   { opacity: 0; transform: translateY(20px); }
     15%  { opacity: 1; }
     50%  { transform: translateY(-14px); opacity: 1; }
     100% { transform: translateY(0); opacity: 1; }
   }
   
   /* Scroll hint */
   .hero-scroll-hint {
     position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
     display: flex; flex-direction: column; align-items: center; gap: 8px;
     font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase;
     color: var(--muted);
     animation: fadeUp 0.8s 1.8s both;
   }
   .scroll-track {
     width: 1.5px; height: 50px;
     background: rgba(255,255,255,0.08);
     border-radius: 2px; overflow: hidden;
   }
   .scroll-thumb {
     width: 100%; height: 50%;
     background: var(--accent); border-radius: 2px;
     animation: scrollDown 2.2s ease-in-out infinite;
   }
   @keyframes scrollDown {
     0%   { transform: translateY(-100%); opacity: 0; }
     30%  { opacity: 1; }
     100% { transform: translateY(200%); opacity: 0; }
   }
   
   /* ============================================
      BRINGING
      ============================================ */
   .bringing {
     padding: 120px 0;
     background: var(--bg);
     position: relative;
   }
   .bringing::before {
     content: '';
     position: absolute; top: 0; left: 0; right: 0;
     height: 1px;
     background: linear-gradient(90deg, transparent, var(--border2), transparent);
   }
   
   .bringing-grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 16px;
   }
   
   .bring-card {
     position: relative; overflow: hidden;
     background: var(--bg2);
     border: 1px solid var(--border);
     border-radius: var(--r);
     padding: 40px 32px;
     transition: border-color 0.4s ease, transform 0.4s ease;
   }
   .bring-card:hover {
     border-color: var(--border2);
     transform: translateY(-6px);
   }
   .bring-card::before {
     content: '';
     position: absolute; top: 0; left: 0; right: 0;
     height: 2px;
     background: linear-gradient(90deg, var(--accent), var(--accent2));
     transform: scaleX(0); transform-origin: left;
     transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
   }
   .bring-card:hover::before { transform: scaleX(1); }
   .bring-card.featured {
     border-color: rgba(232,255,0,0.15);
     background: linear-gradient(160deg, #0f0f0f 60%, #141200 100%);
   }
   
   .bc-featured-tag {
     position: absolute; top: 20px; right: 20px;
     font-size: 10px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
     color: #080808; background: var(--accent);
     padding: 4px 12px; border-radius: 50px;
   }
   
   .bc-icon {
     width: 62px; height: 62px;
     display: flex; align-items: center; justify-content: center;
     border: 1px solid var(--border2); border-radius: 16px;
     color: var(--accent);
     margin-bottom: 32px;
     background: rgba(232,255,0,0.04);
     transition: background 0.3s, transform 0.3s;
   }
   .bring-card:hover .bc-icon { background: rgba(232,255,0,0.1); transform: scale(1.08); }
   
   .bc-num {
     display: block;
     font-family: var(--ff-head);
     font-size: 13px; letter-spacing: 0.16em;
     color: var(--muted); margin-bottom: 10px;
   }
   
   .bc-body h3 {
     font-family: var(--ff-head);
     font-size: 30px; letter-spacing: 0.04em;
     margin-bottom: 14px; color: var(--text);
   }
   .bc-body p {
     font-size: 14px; color: var(--muted2);
     line-height: 1.8; margin-bottom: 28px;
   }
   .bc-list {
     display: flex; flex-direction: column; gap: 8px;
   }
   .bc-list li {
     font-size: 13px; font-weight: 500;
     color: var(--muted);
     padding-left: 16px; position: relative;
     transition: color 0.2s, padding-left 0.2s;
   }
   .bc-list li::before {
     content: '→';
     position: absolute; left: 0;
     color: var(--accent); font-size: 11px;
   }
   .bring-card:hover .bc-list li { color: var(--muted2); padding-left: 20px; }
   
   .bc-glow {
     position: absolute;
     width: 200px; height: 200px;
     background: radial-gradient(circle, rgba(232,255,0,0.06) 0%, transparent 70%);
     bottom: -60px; right: -60px;
     border-radius: 50%;
     pointer-events: none;
     transition: opacity 0.4s;
     opacity: 0;
   }
   .bring-card:hover .bc-glow { opacity: 1; }
   
   /* ============================================
      TEAM
      ============================================ */
   .team {
     padding: 120px 0;
     background: var(--bg2);
     position: relative;
   }
   .team::before {
     content: '';
     position: absolute; top: 0; left: 0; right: 0;
     height: 1px;
     background: linear-gradient(90deg, transparent, var(--border2), transparent);
   }
   
   .team-grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 20px;
     max-width: 680px;
   }
   
   .team-card {
     position: relative; overflow: hidden;
     background: var(--bg3);
     border: 1px solid var(--border);
     border-radius: var(--r);
     padding: 44px 36px;
     display: flex; align-items: center; gap: 28px;
     transition: border-color 0.3s, transform 0.3s;
   }
   .team-card:hover { border-color: var(--border2); transform: translateY(-4px); }
   
   .tc-avatar {
     position: relative; flex-shrink: 0;
     width: 72px; height: 72px;
   }
   .tc-initials {
     width: 72px; height: 72px;
     border-radius: 50%;
     background: linear-gradient(135deg, rgba(232,255,0,0.15), rgba(232,255,0,0.05));
     border: 1px solid rgba(232,255,0,0.2);
     display: flex; align-items: center; justify-content: center;
     font-family: var(--ff-head);
     font-size: 22px; letter-spacing: 0.06em;
     color: var(--accent);
   }
   .tc-ring {
     position: absolute; inset: -5px;
     border-radius: 50%;
     border: 1px dashed rgba(232,255,0,0.2);
     animation: spinRing 12s linear infinite;
   }
   @keyframes spinRing { to { transform: rotate(360deg); } }
   
   .tc-info h3 {
     font-family: var(--ff-head);
     font-size: 24px; letter-spacing: 0.04em;
     color: var(--text); margin-bottom: 4px;
   }
   .tc-info span {
     font-size: 12px; font-weight: 500;
     letter-spacing: 0.12em; text-transform: uppercase;
     color: var(--muted);
   }
   
   .tc-glow {
     position: absolute;
     width: 140px; height: 140px;
     background: radial-gradient(circle, rgba(232,255,0,0.05) 0%, transparent 70%);
     bottom: -40px; right: -40px; border-radius: 50%;
     pointer-events: none; opacity: 0; transition: opacity 0.3s;
   }
   .team-card:hover .tc-glow { opacity: 1; }
   
   /* ============================================
      CONTACT
      ============================================ */
   .contact {
     padding: 120px 0;
     background: var(--bg);
     position: relative;
   }
   .contact::before {
     content: '';
     position: absolute; top: 0; left: 0; right: 0;
     height: 1px;
     background: linear-gradient(90deg, transparent, var(--border2), transparent);
   }
   
   .contact-inner {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: start;
   }
   
   .contact-sub {
     font-size: 15px; color: var(--muted2);
     line-height: 1.8; margin-bottom: 44px;
     margin-top: -24px;
   }
   
   .contact-links { display: flex; flex-direction: column; gap: 14px; }
   
   .clink {
     display: flex; align-items: center; gap: 16px;
     padding: 18px 22px;
     border: 1px solid var(--border);
     border-radius: 14px;
     background: var(--bg2);
     transition: border-color 0.3s, background 0.3s, transform 0.3s;
   }
   .clink:hover {
     border-color: var(--border2);
     background: var(--bg3);
     transform: translateX(4px);
   }
   .clink-icon {
     width: 42px; height: 42px;
     display: flex; align-items: center; justify-content: center;
     border-radius: 11px;
     border: 1px solid var(--border2);
     color: var(--accent); flex-shrink: 0;
     background: rgba(232,255,0,0.04);
   }
   .clink-label {
     display: block; font-size: 11px; font-weight: 600;
     letter-spacing: 0.12em; text-transform: uppercase;
     color: var(--muted); margin-bottom: 2px;
   }
   .clink-val {
     display: block; font-size: 14px; font-weight: 500;
     color: var(--text);
   }
   
   /* Form */
   .contact-form { display: flex; flex-direction: column; gap: 20px; }
   
   .form-group { display: flex; flex-direction: column; gap: 8px; }
   .form-group label {
     font-size: 12px; font-weight: 600;
     letter-spacing: 0.1em; text-transform: uppercase;
     color: var(--muted);
   }
   .form-group input,
   .form-group select,
   .form-group textarea {
     background: var(--bg2);
     border: 1px solid var(--border);
     border-radius: 12px;
     color: var(--text);
     font-family: var(--ff-body); font-size: 15px;
     padding: 14px 18px;
     outline: none;
     transition: border-color 0.25s, box-shadow 0.25s;
     width: 100%;
     cursor: none;
   }
   .form-group input::placeholder,
   .form-group textarea::placeholder { color: rgba(245,245,245,0.2); }
   .form-group input:focus,
   .form-group select:focus,
   .form-group textarea:focus {
     border-color: rgba(232,255,0,0.35);
     box-shadow: 0 0 0 3px rgba(232,255,0,0.06);
   }
   .form-group select { appearance: none; cursor: none; }
   .form-group select option { background: #111; }
   .form-group textarea { resize: vertical; min-height: 110px; }
   
   .form-submit { align-self: flex-start; margin-top: 6px; }
   
   .form-success {
     display: none; align-items: center; gap: 10px;
     color: var(--accent); font-size: 14px; font-weight: 500;
     padding: 14px 18px; border-radius: 12px;
     background: rgba(232,255,0,0.06);
     border: 1px solid rgba(232,255,0,0.15);
   }
   .form-success.show { display: flex; }
   
   /* ============================================
      INSTAGRAM FOLLOW
      ============================================ */
   .ig-follow {
     padding: 100px 0;
     background: var(--bg2);
     position: relative;
     overflow: hidden;
   }
   .ig-follow::before {
     content: '';
     position: absolute; top: 0; left: 0; right: 0;
     height: 1px;
     background: linear-gradient(90deg, transparent, var(--border2), transparent);
   }
   
   .ig-inner {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px; align-items: center;
   }
   .ig-text h2 {
     font-family: var(--ff-head);
     font-size: clamp(48px, 6vw, 76px);
     line-height: 0.95; letter-spacing: 0.02em;
     margin-bottom: 20px;
   }
   .ig-text h2 span { color: var(--accent); }
   .ig-text p { font-size: 15px; color: var(--muted2); line-height: 1.7; margin-bottom: 32px; }
   
   .ig-visual { display: flex; justify-content: center; }
   .ig-grid {
     display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
     width: 320px;
   }
   .ig-cell {
     aspect-ratio: 1;
     border-radius: 14px;
     border: 1px solid var(--border);
     display: flex; align-items: center; justify-content: center;
     font-family: var(--ff-head); font-size: 16px; letter-spacing: 0.1em;
     color: var(--muted); position: relative; overflow: hidden;
     transition: border-color 0.3s, transform 0.3s;
     animation: cellFloat 8s ease-in-out infinite;
   }
   .ig-cell:hover { border-color: rgba(232,255,0,0.25); transform: scale(1.04); }
   .ig-cell:nth-child(2) { animation-delay: 1s; }
   .ig-cell:nth-child(3) { animation-delay: 2s; }
   .ig-cell:nth-child(4) { animation-delay: 3s; }
   @keyframes cellFloat {
     0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)}
   }
   .c1 { background: linear-gradient(135deg, #0f1400 0%, #080808 100%); }
   .c2 { background: linear-gradient(135deg, #001014 0%, #080808 100%); }
   .c3 { background: linear-gradient(135deg, #14100d 0%, #080808 100%); }
   .c4 { background: linear-gradient(135deg, #100014 0%, #080808 100%); }
   .ig-cell::before {
     content: '';
     position: absolute; inset: 0;
     background: radial-gradient(circle at 50% 50%, rgba(232,255,0,0.04) 0%, transparent 70%);
     opacity: 0; transition: opacity 0.3s;
   }
   .ig-cell:hover::before { opacity: 1; }
   .ig-cell span { position: relative; z-index: 1; }
   
   /* ============================================
      FOOTER
      ============================================ */
   .footer-top {
     padding: 60px 0 40px;
     background: var(--bg);
     border-top: 1px solid var(--border);
     text-align: center;
   }
   .footer-brand {
     font-family: var(--ff-head);
     font-size: clamp(80px, 14vw, 180px);
     letter-spacing: 0.08em;
     color: rgba(255,255,255,0.04);
     line-height: 1;
     transition: color 0.4s;
     user-select: none;
   }
   .footer-top:hover .footer-brand { color: rgba(232,255,0,0.06); }
   
   .footer-bottom {
     background: var(--bg);
     border-top: 1px solid var(--border);
     padding: 24px 0;
   }
   .footer-bottom-inner {
     display: flex; align-items: center; justify-content: space-between;
     flex-wrap: wrap; gap: 16px;
   }
   .footer-love {
     font-size: 15px; color: var(--muted2); font-weight: 500;
     display: flex; align-items: center; gap: 8px;
   }
   .heart {
     color: #ff4d6d;
     animation: heartbeat 1.4s ease-in-out infinite;
   }
   @keyframes heartbeat {
     0%,100%{transform:scale(1)} 14%{transform:scale(1.25)} 28%{transform:scale(1)}
   }
   .footer-copy { font-size: 13px; color: var(--muted); }
   .footer-ig {
     color: var(--muted);
     transition: color 0.2s;
   }
   .footer-ig:hover { color: var(--text); }
   
   /* ============================================
      RESPONSIVE
      ============================================ */
   @media (max-width: 960px) {
     .bringing-grid { grid-template-columns: 1fr; gap: 16px; }
     .contact-inner { grid-template-columns: 1fr; gap: 60px; }
     .ig-inner { grid-template-columns: 1fr; gap: 48px; }
     .team-grid { max-width: 100%; }
   }
   
   @media (max-width: 768px) {
     .hamburger { display: flex; }
     .mobile-menu { display: flex; }
     .nav-ig { display: flex; }
     .float-badge { display: none; }
     .team-grid { grid-template-columns: 1fr; }
     .ig-grid { width: 260px; }
     .section-heading { font-size: clamp(44px, 10vw, 72px); }
     body { cursor: auto; }
     .cursor, .cursor-follower { display: none; }
     * { cursor: auto !important; }
   }
   
   @media (max-width: 480px) {
     .hero-heading { font-size: clamp(52px, 16vw, 80px); }
     .bringing { padding: 80px 0; }
     .team { padding: 80px 0; }
     .contact { padding: 80px 0; }
     .ig-follow { padding: 80px 0; }
     .bring-card { padding: 28px 22px; }
     .team-card { padding: 28px 20px; gap: 18px; }
     .nav-inner { padding: 0 20px; }
     .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
   }