:root{
  --ink:#0b1220;
  --muted:#667085;
  --soft:#f5f7fb;
  --panel:#ffffff;
  --line:#e6eaf0;
  --blue:#2563eb;
  --blue2:#4f46e5;
  --navy:#101a2d;
  --gold:#b7791f;
  --green:#0f766e;
  --shadow:0 24px 70px rgba(15,23,42,.10);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  color:var(--ink);
  background:#fff;
  text-rendering:optimizeLegibility;
}

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

a{
  color:inherit;
}

.wrap{
  width:min(1180px,calc(100% - 40px));
  margin:0 auto;
}


/* HEADER */

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(230,234,240,.9);
}

.nav{
  min-height:76px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.brand{
  display:flex;
  align-items:center;
  gap:13px;
  text-decoration:none;
  min-width:0;
}

.brand-logo{
  width:88px;
  height:44px;
  object-fit:contain;
  object-position:left center;
  border-radius:8px;
  flex:0 0 auto;
}

.brand-copy{
  display:flex;
  flex-direction:column;
  line-height:1.06;
}

.brand-name{
  font-size:16px;
  font-weight:700;
  letter-spacing:.02em;
}

.brand-tag{
  font-size:10px;
  color:var(--muted);
  font-weight:500;
  letter-spacing:.02em;
}

nav{
  display:flex;
  gap:26px;
  align-items:center;
  flex-wrap:wrap;
}

nav a{
  text-decoration:none;
  color:#475467;
  font-weight:500;
  font-size:13px;
}

nav a:hover{
  color:var(--ink);
}

.nav-cta{
  padding:10px 15px;
  border-radius:10px;
  background:var(--ink);
  color:#fff!important;
}


/* HERO */

.hero-shell{
  background:
    radial-gradient(circle at 85% 20%,rgba(37,99,235,.13),transparent 28%),
    radial-gradient(circle at 15% 10%,rgba(79,70,229,.08),transparent 30%),
    linear-gradient(180deg,#fbfcff 0%,#f6f8fc 100%);
  border-bottom:1px solid var(--line);
}

.hero{
  min-height:560px;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:64px;
  align-items:center;
  padding:70px 0 64px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  font-size:11px;
  font-weight:600;
  letter-spacing:.08em;
  color:var(--blue);
  text-transform:none;
}

.eyebrow:before{
  content:"";
  width:24px;
  height:2px;
  background:var(--blue);
  border-radius:4px;
}

.hero h1{
  font-size:clamp(38px,4.6vw,58px);
  line-height:1.05;
  letter-spacing:-.025em;
  font-weight:650;
  margin:18px 0 24px;
  max-width:800px;
}

.hero .lead{
  font-size:17px;
  line-height:1.65;
  color:var(--muted);
  max-width:700px;
  margin:0 0 26px;
  font-weight:400;
}

.hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:11px 16px;
  border-radius:10px;
  text-decoration:none;
  font-weight:600;
  font-size:13px;
  border:1px solid var(--line);
  background:#fff;
  transition:transform .15s ease,border-color .15s ease;
}

.btn.primary{
  background:var(--ink);
  color:#fff;
  border-color:var(--ink);
}

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

.trust-strip{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:24px;
}

.pill{
  padding:8px 11px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
  color:#475467;
  font-size:11px;
  font-weight:500;
}


/* HERO LOGO CARD */

.hero-visual{
  position:relative;
  min-height:440px;
}

.logo-stage{
  height:100%;
  min-height:420px;
  border-radius:30px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);

  display:flex;
  align-items:center;
  justify-content:center;

  padding:64px;

  position:relative;
  overflow:hidden;
}

.logo-stage:before,
.logo-stage:after{
  content:"";
  position:absolute;
  border-radius:50%;
  pointer-events:none;
}

.logo-stage:before{
  width:220px;
  height:220px;
  background:rgba(37,99,235,.08);
  right:-70px;
  top:-60px;
}

.logo-stage:after{
  width:150px;
  height:150px;
  background:rgba(245,158,11,.08);
  left:-50px;
  bottom:-40px;
}

.hero-logo{
  width:min(320px,76%);
  height:150px;
  object-fit:contain;
  position:relative;
  z-index:2;
}


/*
  IMPORTANT FIX:
  Both text overlays now sit INSIDE the logo card.
  No negative offsets = no cut-off text.
*/

.floating-chip{
  position:absolute;
  z-index:3;

  background:rgba(255,255,255,.96);
  border:1px solid var(--line);
  border-radius:12px;

  padding:8px 11px;

  box-shadow:0 10px 26px rgba(15,23,42,.08);

  font-size:10px;
  font-weight:600;
  line-height:1.2;

  white-space:nowrap;

  max-width:calc(100% - 36px);
}

.chip-a{
  left:18px;
  bottom:18px;
  right:auto;
}

.chip-b{
  right:18px;
  top:18px;
  left:auto;
}


/* GENERAL SECTIONS */

.section{
  padding:78px 0;
}

.section.soft{
  background:var(--soft);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.section-head{
  max-width:760px;
  margin-bottom:48px;
}

.section-kicker{
  font-size:11px;
  color:var(--blue);
  font-weight:600;
  letter-spacing:.08em;
  text-transform:none;
}

.section h2{
  font-size:clamp(30px,3.6vw,42px);
  line-height:1.12;
  letter-spacing:-.02em;
  margin:10px 0 14px;
  font-weight:650;
}

.section-head p{
  font-size:16px;
  line-height:1.65;
  color:var(--muted);
  margin:0;
  font-weight:400;
}


/* PRODUCTS */

.product{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:58px;
  align-items:center;
  padding:28px 0 64px;
}

.product:last-child{
  padding-bottom:0;
}

.product.reverse .product-copy{
  order:2;
}

.product.reverse .product-media{
  order:1;
}

.product-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;

  padding:7px 10px;

  border:1px solid var(--line);
  border-radius:999px;

  font-size:11px;
  font-weight:600;

  background:#fff;

  margin-bottom:14px;
}

.product-dot{
  width:8px;
  height:8px;
  border-radius:50%;
  background:var(--blue);
}

.product h3{
  font-size:30px;
  font-weight:650;
  letter-spacing:-.02em;
  margin:0 0 14px;
}

.product-copy>p{
  font-size:15px;
  line-height:1.7;
  color:var(--muted);
  margin:0 0 22px;
  font-weight:400;
}

.feature-list{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px 22px;

  margin:20px 0 28px;
  padding:0;

  list-style:none;
}

.feature-list li{
  font-size:13px;
  font-weight:500;
  color:#344054;

  position:relative;
  padding-left:20px;
}

.feature-list li:before{
  content:"✓";
  position:absolute;
  left:0;
  color:var(--green);
  font-weight:700;
}

.product-links{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}


/* PRODUCT MEDIA */

.product-media{
  border-radius:24px;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  overflow:hidden;
}

.browser-bar{
  height:38px;
  border-bottom:1px solid var(--line);

  display:flex;
  align-items:center;
  gap:6px;

  padding:0 14px;

  background:#f8fafc;
}

.browser-bar i{
  width:8px;
  height:8px;
  border-radius:50%;
  background:#d0d5dd;
  display:block;
}

.screenshot{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  object-position:top left;
  background:#eef2f7;
}


/* SHEETSTORE PREVIEW */

.sheetstore-shot{
  aspect-ratio:16/10;
  padding:26px;

  background:
    linear-gradient(135deg,#172554 0 32%,#eef2ff 32% 100%);

  display:grid;
  grid-template-columns:1fr .72fr;
  gap:20px;
  align-items:center;
}

.mock-site{
  background:#fff;
  border-radius:18px;
  padding:20px;
  box-shadow:0 20px 44px rgba(2,6,23,.18);
}

.mock-brand{
  font-size:10px;
  font-weight:600;
  color:#1e3a8a;
}

.mock-title{
  font-size:21px;
  font-weight:650;
  margin:12px 0 8px;
  line-height:1.12;
}

.mock-copy{
  font-size:11px;
  color:#667085;
  line-height:1.5;
}

.mock-cta{
  display:inline-block;

  background:#2563eb;
  color:#fff;

  border-radius:8px;

  padding:7px 10px;

  font-size:9px;
  font-weight:600;

  margin-top:12px;
}

.mock-side{
  display:grid;
  gap:10px;
}

.mock-card{
  background:#fff;
  border-radius:14px;
  padding:14px;
  box-shadow:0 10px 28px rgba(2,6,23,.10);
}

.mock-card strong{
  display:block;
  font-size:11px;
  font-weight:600;
  margin-bottom:4px;
}

.mock-card span{
  font-size:10px;
  color:#667085;
}


/* JEWELLERY ERP PREVIEW */

.jewel-shot{
  aspect-ratio:16/10;
  background:#faf7f2;
  padding:24px;
}

.jewel-shell{
  height:100%;

  background:#fff;

  border-radius:18px;
  border:1px solid #e8e0d6;

  overflow:hidden;

  display:grid;
  grid-template-columns:150px 1fr;
}

.jewel-nav{
  background:#2d2723;
  color:#fff;
  padding:18px 14px;
}

.jewel-logo{
  font-size:10px;
  font-weight:650;
  letter-spacing:.05em;
  margin-bottom:22px;
}

.jewel-nav div{
  font-size:10px;
  padding:8px 0;
  color:#ded7d0;
}

.jewel-main{
  padding:18px;
}

.jewel-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:16px;
}

.jewel-title{
  font-size:15px;
  font-weight:650;
}

.jewel-kpi{
  font-size:9px;
  background:#f2ede7;
  border-radius:999px;
  padding:6px 8px;
  color:#6b5d52;
}

.pipeline{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:8px;
  margin-bottom:14px;
}

.pipe{
  border:1px solid #eee6dd;
  border-radius:10px;
  padding:10px;
  background:#fff;
}

.pipe b{
  font-size:14px;
  font-weight:650;
  display:block;
}

.pipe span{
  font-size:8px;
  color:#8a7b6d;
}

.order-row{
  display:grid;
  grid-template-columns:1.2fr 1fr .8fr .7fr;
  gap:8px;
  padding:9px;

  border-top:1px solid #f0ebe5;

  font-size:8px;
  color:#5f554c;
}

.status{
  display:inline-flex;
  padding:4px 6px;
  border-radius:999px;
  background:#efe8df;
  font-weight:600;
}


/* HOW WE BUILD */

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

.value-card{
  padding:26px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
}

.value-card strong{
  font-size:16px;
  font-weight:650;
  display:block;
  margin-bottom:10px;
}

.value-card p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
  font-size:14px;
}


/* CTA */

.cta-band{
  margin-top:8px;

  border-radius:28px;

  background:var(--ink);
  color:#fff;

  padding:38px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
}

.cta-band h3{
  font-size:28px;
  font-weight:650;
  margin:0 0 8px;
  letter-spacing:-.02em;
}

.cta-band p{
  margin:0;
  color:#cbd5e1;
  line-height:1.5;
}

.cta-band .btn{
  background:#fff;
  color:var(--ink);
  border-color:#fff;
}


/* FOOTER */

.site-footer{
  background:#0b1220;
  color:#cbd5e1;
  padding:40px 0;
}

.footer-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.footer-brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.footer-logo{
  width:74px;
  height:38px;
  object-fit:contain;

  background:#fff;

  border-radius:7px;
  padding:3px;
}

.footer-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.footer-links a{
  text-decoration:none;
  font-size:13px;
  color:#cbd5e1;
}


/* PRIVACY / TERMS / SUPPORT */

.page-copy{
  max-width:840px;
  padding:88px 0 110px;
}

.page-copy h1{
  font-size:clamp(34px,4vw,48px);
  font-weight:650;
  letter-spacing:-.02em;
}

.page-copy p,
.page-copy li{
  font-size:16px;
  line-height:1.75;
  color:var(--muted);
}


/* TABLET */

@media(max-width:900px){

  .hero{
    grid-template-columns:1fr;
    min-height:auto;
  }

  .hero-visual{
    min-height:360px;
  }

  .logo-stage{
    min-height:340px;
    padding:48px;
  }

  .product,
  .product.reverse{
    grid-template-columns:1fr;
    gap:30px;
  }

  .product.reverse .product-copy,
  .product.reverse .product-media{
    order:initial;
  }

  .about-grid{
    grid-template-columns:1fr;
  }
}


/* MOBILE */

@media(max-width:680px){

  .wrap{
    width:min(100% - 28px,1180px);
  }

  .nav{
    padding:15px 0;
    align-items:flex-start;
    flex-direction:column;
  }

  nav{
    gap:16px;
  }

  .brand-logo{
    width:76px;
    height:40px;
  }

  .hero{
    padding:60px 0;
  }

  .hero h1{
    font-size:38px;
  }

  .hero-visual{
    display:none;
  }

  .section{
    padding:72px 0;
  }

  .feature-list{
    grid-template-columns:1fr;
  }

  .sheetstore-shot{
    grid-template-columns:1fr;
    padding:18px;
  }

  .mock-side{
    display:none;
  }

  .jewel-shell{
    grid-template-columns:100px 1fr;
  }

  .jewel-nav{
    padding:14px 10px;
  }

  .pipeline{
    grid-template-columns:1fr 1fr;
  }

  .cta-band{
    padding:30px;
    align-items:flex-start;
    flex-direction:column;
  }
}