:root{
  --bg:#061427;
  --bg-soft:#0c2039;
  --panel:#0f223d;
  --panel-2:#102847;
  --line:rgba(255,255,255,.08);
  --line-2:rgba(126,183,255,.18);
  --text:#f3f8ff;
  --muted:#afc0d8;
  --dark:#081729;
  --white:#ffffff;
  --blue:#3b82f6;
  --blue-2:#58c0ff;
  --glow:rgba(88,192,255,.32);
  --shadow:0 18px 60px rgba(0,0,0,.35);
  --radius:24px;
  --container:min(1180px, calc(100% - 32px));
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(62,120,255,.14), transparent 30%),
    linear-gradient(180deg,#061427,#081729 40%,#07111f 100%);
  color:var(--text);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}

a{
  color:inherit;
  text-decoration:none;
}

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

button,
input,
textarea,
select{
  font:inherit;
}

.container{
  width:var(--container);
  margin:0 auto;
}

.section{
  padding:88px 0;
  position:relative;
}

.section.light{
  background:linear-gradient(
    180deg,
    rgba(255,255,255,.025),
    rgba(255,255,255,.015)
  );
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.center{
  text-align:center;
}

.eyebrow,
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  letter-spacing:.16em;
  text-transform:uppercase;
  font-size:.77rem;
  font-weight:800;
  color:#83c5ff;
}

.eyebrow::before,
.kicker::before{
  content:"";
  width:28px;
  height:2px;
  background:linear-gradient(90deg,var(--blue),var(--blue-2));
  border-radius:999px;
}

h1,
h2,
h3,
h4{
  margin:0;
  line-height:1.08;
  letter-spacing:-.03em;
}

h1{
  font-size:clamp(2.7rem,4.7vw,5rem);
}

h2{
  font-size:clamp(2rem,3.2vw,3.4rem);
}

h3{
  font-size:clamp(1.2rem,2vw,1.5rem);
}

p{
  margin:0 0 16px;
  color:var(--muted);
}

.lead{
  font-size:clamp(1.04rem,1.5vw,1.24rem);
  max-width:66ch;
  color:#d7e6f8;
}

.grad-text{
  background:linear-gradient(
    90deg,
    #f9fcff 0%,
    #cfe5ff 42%,
    #6acbff 100%
  );
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.btn-row{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-items:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 22px;
  border-radius:16px;
  font-weight:800;
  border:1px solid transparent;
  transition:
    transform .25s ease,
    background .25s ease,
    border-color .25s ease,
    box-shadow .25s ease;
  color:#fff;
  cursor:pointer;
  min-height:54px;
}

.btn:hover{
  transform:translateY(-2px);
}

.btn-primary{
  background:linear-gradient(135deg,var(--blue),var(--blue-2));
  box-shadow:0 16px 34px rgba(59,130,246,.32);
}

.btn-primary:hover{
  box-shadow:0 20px 38px rgba(59,130,246,.42);
}

.btn-dark{
  background:rgba(255,255,255,.05);
  border-color:rgba(255,255,255,.11);
}

.btn-dark:hover,
.btn-ghost:hover{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.16);
}

.btn-ghost{
  background:transparent;
  border:1px solid rgba(255,255,255,.15);
}

.icon{
  display:inline-flex;
  width:18px;
  height:18px;
}

.icon svg{
  width:18px;
  height:18px;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
  fill:none;
}


/* ================= HEADER ================= */

.site-header{
  position:sticky;
  top:0;
  z-index:60;
  background:rgba(5,18,34,.82);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  gap:28px;
  min-height:84px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

.brand img{
  width:52px;
  height:52px;
  object-fit:contain;
  border-radius:16px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.08),
    0 12px 28px rgba(0,0,0,.25);
}

.brand-name{
  display:flex;
  flex-direction:column;
  font-size:1.06rem;
  font-weight:900;
  letter-spacing:-.02em;
  color:#f6faff;
}

.brand-name span{
  font-size:.77rem;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#8bc9ff;
  font-weight:800;
  margin-top:3px;
}

.nav-links{
  display:flex;
  gap:22px;
  align-items:center;
  margin-left:auto;
}

.nav-links a{
  color:#b9c9dd;
  font-weight:700;
  font-size:.97rem;
  padding:8px 0;
  position:relative;
}

.nav-links a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-10px;
  width:100%;
  height:2px;
  border-radius:999px;
  background:linear-gradient(90deg,var(--blue),var(--blue-2));
  opacity:0;
  transform:scaleX(.5);
  transition:.25s ease;
}

.nav-links a:hover,
.nav-links a.active{
  color:#fff;
}

.nav-links a.active::after,
.nav-links a:hover::after{
  opacity:1;
  transform:scaleX(1);
}

.nav-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.nav-toggle{
  display:none;
  width:50px;
  height:50px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
  padding:0;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
}

.nav-toggle span{
  width:22px;
  height:2px;
  background:#fff;
  border-radius:999px;
  transition:.25s ease;
}


/* ================= PAGE ================= */

.page-hero{
  padding:92px 0 56px;
  border-bottom:1px solid var(--line);
  background:
    radial-gradient(
      circle at top right,
      rgba(88,192,255,.16),
      transparent 33%
    );
}

.breadcrumb{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:26px;
  color:#9eb1c9;
  font-weight:600;
}

.breadcrumb b{
  color:#fff;
}


/* ================= HERO ================= */

.hero{
  padding:76px 0 36px;
  overflow:hidden;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:34px;
  align-items:center;
}

.hero-copy{
  position:relative;
  z-index:2;
}

.hero-copy .lead{
  margin-top:22px;
  max-width:58ch;
}

.hero-copy .btn-row{
  margin-top:28px;
}

.hero-meta{
  display:flex;
  flex-wrap:wrap;
  gap:14px 18px;
  margin-top:28px;
}

.hero-meta span{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  color:#d8e7f8;
  padding:10px 14px;
  border:1px solid var(--line-2);
  background:rgba(255,255,255,.03);
  border-radius:999px;
}

.hero-meta i{
  width:10px;
  height:10px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--blue),var(--blue-2));
  box-shadow:0 0 0 5px rgba(88,192,255,.12);
}

.hero-visual{
  position:relative;
  min-height:520px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.hero-shot{
  width:min(100%,760px);
  border-radius:34px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow);
  position:relative;
  background:#09182d;
}

.hero-shot img{
  width:100%;
  height:auto;
  display:block;
  object-fit:cover;
}

.floating-card{
  display:none;
}

.floating-card span{
  display:block;
  color:#98b0cb;
  font-size:.86rem;
  margin-bottom:6px;
}

.floating-card strong{
  display:block;
  font-size:1.75rem;
  line-height:1.1;
}

.bar{
  height:12px;
  background:rgba(255,255,255,.08);
  border-radius:999px;
  overflow:hidden;
  margin-top:16px;
}

.bar i{
  display:block;
  height:100%;
  width:77%;
  background:linear-gradient(90deg,var(--blue),var(--blue-2));
  border-radius:999px;
}

.logo-orbit{
  display:none;
}

.logo-orbit img{
  width:92px;
  height:92px;
  object-fit:contain;
}


/* ================= TRUST ================= */

.trust-strip{
  padding:0 0 30px;
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.trust-item{
  padding:20px 22px;
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius:20px;
}

.trust-item strong{
  display:block;
  font-size:1rem;
  color:#fff;
}

.trust-item span{
  display:block;
  margin-top:6px;
  color:#9fb3cb;
  font-size:.95rem;
}


/* ================= SECTIONS ================= */

.section-head{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:end;
  margin-bottom:30px;
}

.section-head .copy{
  max-width:770px;
}

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

.card,
.step,
.metric-panel,
.project-card,
.service-detail,
.cta-wrap,
.founder-card,
.contact-form,
.contact-panel,
.value,
.contact-method{
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.05),
      rgba(255,255,255,.025)
    );
  border:1px solid var(--line);
  border-radius:26px;
  box-shadow:var(--shadow);
}

.card,
.step{
  padding:26px;
}

.card-icon{
  width:60px;
  height:60px;
  border-radius:18px;
  display:grid;
  place-items:center;
  background:
    linear-gradient(
      135deg,
      rgba(59,130,246,.22),
      rgba(88,192,255,.1)
    );
  color:#89cbff;
  border:1px solid rgba(88,192,255,.22);
  margin-bottom:18px;
  font-weight:900;
  font-size:1.12rem;
}

.card-icon svg{
  width:26px;
  height:26px;
  stroke:currentColor;
  stroke-width:2;
  fill:none;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.card h3,
.step h3,
.project-body h3{
  margin-bottom:12px;
}

.card-link{
  display:inline-flex;
  margin-top:10px;
  color:#86c8ff;
  font-weight:800;
}


/* ================= PROJECTS ================= */

.project-card{
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

.project-media{
  aspect-ratio:16/9;
  overflow:hidden;
  border-bottom:1px solid var(--line);
  background:#08192f;
}

.project-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}

.project-card:hover .project-media img{
  transform:scale(1.03);
}

.project-body{
  padding:26px;
}

.project-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:16px;
  margin-bottom:10px;
}

.project-tag{
  padding:10px 16px;
  border-radius:999px;
  font-weight:800;
  color:#8fcfff;
  background:rgba(59,130,246,.12);
  border:1px solid rgba(88,192,255,.18);
}

.project-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:18px;
}

.project-actions a{
  color:#fff;
  font-weight:800;
}

.project-actions a:last-child{
  color:#8dcfff;
}


/* ================= SPLIT / FEATURES ================= */

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:26px;
  align-items:center;
}

.feature-list{
  display:grid;
  gap:14px;
}

.feature-row{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:16px 0;
  border-bottom:1px dashed rgba(255,255,255,.08);
}

.feature-row:last-child{
  border-bottom:none;
}

.feature-row i{
  flex:0 0 36px;
  height:36px;
  border-radius:12px;
  background:linear-gradient(135deg,var(--blue),var(--blue-2));
  display:grid;
  place-items:center;
  color:#fff;
  font-style:normal;
  font-weight:900;
  box-shadow:0 10px 20px rgba(59,130,246,.28);
}

.feature-row strong{
  display:block;
  color:#fff;
  margin-bottom:4px;
}

.feature-row span{
  color:#9fb3cb;
}


/* ================= METRICS ================= */

.metric-panel{
  padding:26px;
}

.metric-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.metric{
  padding:24px;
  border-radius:22px;
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
}

.metric strong{
  display:block;
  font-size:2rem;
  color:#fff;
  line-height:1.05;
}

.metric span{
  display:block;
  margin-top:8px;
  color:#aac0d8;
}

.metric-wide{
  grid-column:1/-1;
  background:
    linear-gradient(
      180deg,
      rgba(59,130,246,.16),
      rgba(255,255,255,.03)
    );
}


/* ================= PROCESS ================= */

.process-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}

.step{
  padding:28px;
  position:relative;
  overflow:hidden;
}

.step::after{
  content:"";
  position:absolute;
  inset:auto -40px -40px auto;
  width:140px;
  height:140px;
  background:
    radial-gradient(
      circle,
      rgba(88,192,255,.14),
      transparent 65%
    );
}

.step-no,
.service-num{
  display:inline-flex;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(59,130,246,.12);
  border:1px solid rgba(88,192,255,.18);
  font-size:.82rem;
  color:#8fcfff;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-bottom:14px;
}


/* ================= CTA ================= */

.cta-wrap{
  padding:38px;
  background:
    linear-gradient(
      135deg,
      rgba(59,130,246,.14),
      rgba(255,255,255,.03)
    );
  text-align:center;
}

.cta-wrap h2{
  max-width:18ch;
  margin:0 auto 14px;
  line-height:1.12;
}

.cta-wrap p{
  max-width:56ch;
  margin:0 auto 22px;
}

.tag-list{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}

.tag{
  display:inline-flex;
  align-items:center;
  padding:12px 18px;
  border-radius:999px;
  background:rgba(255,255,255,.035);
  border:1px solid var(--line);
  font-weight:800;
  color:#d2e4f7;
}


/* ================= ABOUT ================= */

.about-story{
  display:grid;
  grid-template-columns:.84fr 1.16fr;
  gap:26px;
  align-items:start;
}

.founder-card{
  padding:32px;
  position:sticky;
  top:108px;
  text-align:center;
}

.founder-photo-wrap{
  position:relative;
  margin-bottom:24px;
  display:flex;
  justify-content:center;
  padding-top:4px;
}

.founder-portrait{
  border-radius:50%;
  width:min(100%,280px);
  height:auto;
  aspect-ratio:1/1;
  object-fit:cover;
  border:none;
  box-shadow:0 18px 40px rgba(0,0,0,.34);
  margin:0 auto;
}

.founder-logo{
  display:none !important;
}

.role{
  font-size:1rem;
  font-weight:800;
  color:#88cbff;
  margin:8px 0 14px;
}

.story-copy{
  padding-top:14px;
}

.value-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  margin-top:22px;
}

.value{
  padding:22px;
}

.value strong{
  display:block;
  margin-bottom:6px;
  font-size:1.02rem;
  color:#fff;
}


/* ================= SERVICES ================= */

.service-detail{
  display:grid;
  grid-template-columns:280px 1fr;
  gap:24px;
  padding:28px;
  margin-bottom:18px;
}

.service-bullets{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.service-bullets span{
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
  font-weight:700;
  color:#dbe9f9;
}


/* ================= CONTACT ================= */

.contact-grid{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:26px;
  align-items:start;
}

.contact-panel,
.contact-form{
  padding:28px;
}

.contact-methods{
  display:grid;
  gap:14px;
  margin-top:22px;
}

.contact-method{
  display:flex;
  gap:16px;
  align-items:center;
  padding:16px 18px;
}

.contact-method i{
  width:46px;
  height:46px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background:
    linear-gradient(
      135deg,
      rgba(59,130,246,.24),
      rgba(88,192,255,.12)
    );
  color:#8ecfff;
  font-style:normal;
  font-weight:900;
  border:1px solid rgba(88,192,255,.2);
  flex:0 0 46px;
}

.contact-method b{
  display:block;
  color:#fff;
  margin-bottom:2px;
}

.contact-method span{
  color:#a8bed7;
  font-size:.95rem;
}

.notice,
.status{
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(88,192,255,.16);
  background:rgba(59,130,246,.08);
  color:#d7eaff;
}


/* ================= FORMS ================= */

.form-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
}

.field{
  display:flex;
  flex-direction:column;
  gap:9px;
}

.field.full{
  grid-column:1/-1;
}

.field label{
  font-weight:800;
  color:#e8f1fb;
}

input,
textarea,
select{
  width:100%;
  background:#f5f8fd;
  color:#16253b;
  border:1px solid #d5e3f3;
  border-radius:18px;
  padding:16px 18px;
  outline:none;
  transition:border-color .2s,box-shadow .2s;
}

input:focus,
textarea:focus,
select:focus{
  border-color:#77bfff;
  box-shadow:0 0 0 4px rgba(119,191,255,.16);
}

textarea{
  min-height:180px;
  resize:vertical;
}

.form-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:22px;
}

.muted,
.form-note{
  color:#9fb3cb;
}

.form-note{
  margin-top:12px;
  font-size:.94rem;
}


/* ================= FOOTER ================= */

.footer{
  padding:42px 0 20px;
  border-top:1px solid var(--line);
  background:rgba(4,13,24,.65);
}

.footer-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr 1.2fr;
  gap:26px;
}

.footer-brand p{
  margin-top:16px;
  max-width:44ch;
}

.footer h4{
  font-size:1rem;
  margin-bottom:14px;
  color:#fff;
}

.footer-links{
  display:grid;
  gap:10px;
}

.footer-links a{
  color:#aec1d7;
}

.footer-links a:hover,
.socials a:hover{
  color:#fff;
}

.socials{
  display:flex;
  gap:12px;
}

.socials a{
  width:40px;
  height:40px;
  border-radius:12px;
  border:1px solid var(--line);
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.03);
  font-weight:800;
  color:#b7c8de;
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  padding-top:18px;
  margin-top:28px;
  border-top:1px solid var(--line);
  color:#8ea6c1;
  font-size:.95rem;
}


/* ================= BACK TO TOP ================= */

.back-top{
  position:fixed;
  right:22px;
  bottom:22px;
  width:52px;
  height:52px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(135deg,var(--blue),var(--blue-2));
  color:#fff;
  font-size:1.15rem;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 16px 34px rgba(59,130,246,.26);
  opacity:0;
  pointer-events:none;
  transform:translateY(12px);
  transition:.25s ease;
  z-index:70;
}

.back-top.show{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}


/* ================= REVEAL ================= */

.reveal{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .7s ease,transform .7s ease;
}

.reveal.visible{
  opacity:1;
  transform:none;
}

.hidden{
  display:none;
}


/* ================= TABLET ================= */

@media (max-width:1120px){

  .hero-grid,
  .split,
  .about-story,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .process-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .grid-3,
  .footer-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .hero-visual{
    min-height:unset;
    padding-top:24px;
  }

  .floating-card{
    top:-12px;
    right:10px;
  }

  .logo-orbit{
    left:-12px;
  }

  .founder-card{
    position:relative;
    top:auto;
  }
}


/* ================= MOBILE NAV ================= */

@media (max-width:860px){

  .nav{
    min-height:78px;
  }

  .nav-toggle{
    display:inline-flex;
  }

  .nav-links{
    position:fixed;
    inset:79px 16px auto 16px;
    background:rgba(6,20,39,.98);
    border:1px solid rgba(255,255,255,.1);
    border-radius:22px;
    padding:18px;
    flex-direction:column;
    align-items:flex-start;
    gap:12px;
    transform-origin:top;
    transform:scaleY(.84);
    opacity:0;
    pointer-events:none;
    transition:.25s ease;
    box-shadow:var(--shadow);
  }

  .nav-links.open{
    opacity:1;
    pointer-events:auto;
    transform:scaleY(1);
  }

  .nav-links a{
    width:100%;
  }

  .nav-links a::after{
    bottom:-2px;
  }

  .nav-actions .btn{
    display:none;
  }

  .section,
  .hero{
    padding:72px 0;
  }

  .page-hero{
    padding:74px 0 44px;
  }

  .trust-grid,
  .grid-3,
  .process-grid,
  .metric-grid,
  .value-list,
  .footer-grid,
  .form-grid{
    grid-template-columns:1fr;
  }

  .section-head{
    flex-direction:column;
    align-items:flex-start;
  }

  .project-top{
    flex-direction:column;
    align-items:flex-start;
  }

  .service-detail{
    grid-template-columns:1fr;
  }

  .hero-shot{
    width:100%;
  }

  .logo-orbit{
    width:90px;
    height:90px;
  }

  .logo-orbit img{
    width:72px;
    height:72px;
  }
}


/* ================= SMALL MOBILE ================= */

@media (max-width:560px){

  .container{
    width:min(100% - 24px,var(--container));
  }

  .btn{
    width:100%;
  }

  .btn-row{
    width:100%;
  }

  .card,
  .step,
  .metric-panel,
  .project-body,
  .cta-wrap,
  .founder-card,
  .contact-panel,
  .contact-form{
    padding:22px;
  }

  .footer-bottom{
    font-size:.9rem;
  }
}


/* ================= 2026 LUXURY REFINEMENT ================= */

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background:
    radial-gradient(
      circle at 80% 14%,
      rgba(88,192,255,.09),
      transparent 26%
    ),
    radial-gradient(
      circle at 8% 58%,
      rgba(59,130,246,.08),
      transparent 28%
    );
}

.site-header{
  box-shadow:0 12px 40px rgba(0,0,0,.16);
}

.site-header::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(103,193,255,.45),
      transparent
    );
}

.hero{
  padding-top:92px;
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.008),
      transparent 50%
    );
}

.hero-copy h1{
  max-width:11.5ch;
  text-wrap:balance;
}

.hero-copy .kicker{
  padding:9px 14px;
  border:1px solid rgba(126,190,255,.14);
  background:rgba(255,255,255,.025);
  border-radius:999px;
  box-shadow:inset 0 1px rgba(255,255,255,.04);
}

.hero-shot{
  isolation:isolate;
  transform:perspective(1200px) rotateY(-1.5deg);
  box-shadow:
    0 35px 90px rgba(0,0,0,.45),
    0 0 0 1px rgba(107,186,255,.08);
}

.hero-shot::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.08),
      transparent 26%,
      transparent 74%,
      rgba(78,174,255,.06)
    );
  z-index:2;
}

.floating-card{
  box-shadow:
    0 24px 70px rgba(0,0,0,.46),
    inset 0 1px rgba(255,255,255,.06);
}

.trust-item,
.card,
.step,
.metric-panel,
.project-card,
.service-detail,
.cta-wrap,
.founder-card,
.contact-form,
.contact-panel,
.value,
.contact-method{
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
}

.card,
.step,
.project-card,
.service-detail,
.value{
  transition:
    transform .28s ease,
    border-color .28s ease,
    box-shadow .28s ease,
    background .28s ease;
}

.card:hover,
.step:hover,
.project-card:hover,
.service-detail:hover,
.value:hover{
  transform:translateY(-5px);
  border-color:rgba(103,193,255,.2);
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.065),
      rgba(255,255,255,.03)
    );
  box-shadow:0 26px 80px rgba(0,0,0,.34);
}

.section-head h2,
.page-hero h1,
.cta-wrap h2{
  text-wrap:balance;
}

.project-media{
  position:relative;
}

.project-media::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(
      180deg,
      transparent 66%,
      rgba(3,12,25,.24)
    );
  pointer-events:none;
}

.project-tag{
  box-shadow:inset 0 1px rgba(255,255,255,.04);
}

.footer{
  background:
    linear-gradient(
      180deg,
      rgba(5,15,28,.8),
      rgba(3,10,19,.98)
    );
}

.footer .brand img{
  box-shadow:
    0 0 0 1px rgba(110,191,255,.12),
    0 0 34px rgba(59,130,246,.13);
}

.contact-panel,
.premium-form{
  background:
    linear-gradient(
      155deg,
      rgba(17,42,73,.82),
      rgba(8,24,44,.92)
    );
  border-color:rgba(130,191,255,.14);
}

.premium-form{
  position:relative;
  overflow:hidden;
}

.premium-form::before{
  content:"";
  position:absolute;
  width:260px;
  height:260px;
  border-radius:50%;
  right:-130px;
  top:-120px;
  background:
    radial-gradient(
      circle,
      rgba(72,172,255,.15),
      transparent 70%
    );
  pointer-events:none;
}

.form-heading{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:flex-start;
  position:relative;
}

.form-kicker{
  display:block;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.72rem;
  font-weight:900;
  color:#83c5ff;
  margin-bottom:8px;
}

.secure-pill{
  display:inline-flex;
  align-items:center;
  white-space:nowrap;
  padding:9px 12px;
  border-radius:999px;
  background:rgba(86,190,255,.09);
  border:1px solid rgba(103,193,255,.18);
  color:#a9dbff;
  font-size:.78rem;
  font-weight:900;
  letter-spacing:.02em;
}

input,
textarea,
select{
  background:rgba(247,250,255,.98);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.9);
}

input:hover,
textarea:hover,
select:hover{
  border-color:#bdd6ef;
}

.input-error{
  border-color:#e36a6a !important;
  box-shadow:0 0 0 4px rgba(227,106,106,.11) !important;
}

.submit-primary{
  min-width:230px;
  position:relative;
  overflow:hidden;
}

.submit-primary::before{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width:60px;
  left:-80px;
  transform:skewX(-18deg);
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.28),
      transparent
    );
  transition:left .55s ease;
}

.submit-primary:hover::before{
  left:120%;
}

.submit-primary:disabled{
  cursor:wait;
  opacity:.82;
  transform:none;
}

.submit-spinner{
  display:none;
  width:18px;
  height:18px;
  border:2px solid rgba(255,255,255,.38);
  border-top-color:#fff;
  border-radius:50%;
  animation:spin .75s linear infinite;
}

.submit-primary.is-loading .submit-spinner{
  display:inline-block;
}

.status{
  margin-top:18px;
  transition:.25s ease;
}

.status-success{
  border-color:rgba(78,210,157,.22) !important;
  background:rgba(32,151,108,.1) !important;
  color:#c9f9e6 !important;
}

.status-error{
  border-color:rgba(255,120,120,.25) !important;
  background:rgba(190,47,47,.12) !important;
  color:#ffd7d7 !important;
}

@keyframes spin{
  to{
    transform:rotate(360deg);
  }
}

@media (max-width:560px){

  .form-heading{
    flex-direction:column;
  }

  .secure-pill{
    align-self:flex-start;
  }

  .submit-primary{
    min-width:0;
  }
}

.section.light .btn-primary{
  box-shadow:0 16px 34px rgba(59,130,246,.32);
}

.center .btn-row{
  justify-content:center;
}


/* ================= SERVICES FINAL CTA ================= */

.service-final-cta{
  padding:92px 0;
}

.service-final-cta .container{
  max-width:980px;
}

.service-final-cta h2{
  max-width:860px;
  margin:18px auto 0;
  font-size:clamp(2.2rem,4vw,3.8rem);
  line-height:1.1;
}

.service-final-cta .lead{
  max-width:760px;
  margin:24px auto 0;
  line-height:1.7;
}

.service-final-cta .btn-row{
  justify-content:center;
  margin-top:32px;
}

.service-final-cta .btn{
  width:auto;
  min-width:250px;
}

@media (max-width:560px){

  .service-final-cta{
    padding:70px 0;
  }

  .service-final-cta .btn{
    width:100%;
    min-width:0;
  }
}


/* ================= CLIENT EXPERIENCE ================= */

.client-experience-head{
  max-width:900px;
  margin:0 auto;
}

.client-experience-head h2{
  max-width:820px;
  margin:16px auto 0;
  line-height:1.12;
}

.client-experience-head .lead{
  max-width:720px;
  margin:20px auto 0;
  line-height:1.75;
}

.client-experience-grid{
  margin-top:38px;
}

@media (max-width:860px){

  .client-experience-head h2{
    font-size:clamp(2rem,8vw,3rem);
  }

  .client-experience-head .lead{
    font-size:1rem;
  }
}


/* ==================================================
   FINAL MOBILE HEADER / HAMBURGER FIX
================================================== */

@media (max-width:860px){

  .site-header .nav{
    display:grid !important;
    grid-template-columns:minmax(0,1fr) auto !important;
    align-items:center !important;
    gap:12px !important;
    min-height:78px !important;
    position:relative !important;
  }

  .site-header .brand{
    min-width:0 !important;
    margin:0 !important;
  }

  .site-header .nav-actions{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;
    justify-self:end !important;

    margin:0 !important;

    position:static !important;

    left:auto !important;
    right:auto !important;
    top:auto !important;

    transform:none !important;
  }

  .site-header .nav-actions .btn{
    display:none !important;
  }

  .site-header .nav-toggle{
    display:inline-flex !important;

    align-items:center !important;
    justify-content:center !important;

    position:static !important;

    width:46px !important;
    height:46px !important;

    min-width:46px !important;
    min-height:46px !important;

    padding:0 !important;
    margin:0 !important;

    flex:0 0 46px !important;

    border-radius:14px !important;

    transform:none !important;

    z-index:70 !important;
  }

  .site-header .nav-toggle span{
    width:22px !important;
    height:2px !important;
    flex:0 0 2px !important;
  }

  .site-header .nav-links{
    position:fixed !important;
    inset:79px 16px auto 16px !important;
    margin-left:0 !important;
  }
}
/* Mobile Header/Menu Position */
.header {
    position: relative;
    padding: 12px 16px;
}
