:root {
    --primary: #ffc7a0;
    --primary-dark: #e6683c;
    --navy: #143058;
    --dark: #1C1F26;
    --soft: #FFC7A0;
    --surface1: #01050e;
    --surface: #060e20;
    --text: #1C1F26;
    --muted: #c9c9cd;
    --white: #fff;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, var(--surface1) 0%, var(--surface) 100%);
    min-height: 100vh;
}

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 32px;
     transition: all 0.3s ease-in-out;
}
header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background: var(--dark);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    text-decoration: none;
        width: 100%;
    overflow: hidden;
}

.brand img {
    /* width: 38px;
    height: 38px; */
    width: 130px;
    height: 34px;
        overflow: hidden;
    z-index: 1;
}

.brand-name {
    font-family: 'Syncopate', sans-serif;
    letter-spacing: 2.5px;
    font-size: 14px;
    font-weight: 700;
     transform: translateX(0);
    transition: transform 0.3s ease-in-out;
    will-change: transform;
}
.brand-name.hide {
    transform: translateX(-100%);
}
nav{
        flex-shrink: 0;
}
nav a {
    color: var(--white);
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    font-size: 15px;
}

nav a:hover {
    color: var(--primary);
}

main {
    max-width: 99%;
    margin: 40px auto 0;
    padding: 0 32px 60px;
}

.eyebrow {
    display: inline-block;
    background: linear-gradient(135deg, rgb(255 255 255 / 83%), rgb(255 255 255));
    padding: 8px 16px;
    border-radius: 999px;
    color: var(--navy);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.4px;
}

/* ── Hero 2-column layout ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  min-height: 73vh;
  padding: 0 0 60px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* ── Video side ── */
.hero-video {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-wrap {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  /* box-shadow:
    0 0 0 1px rgba(255,199,160,.2),
    0 24px 64px -16px rgba(0,0,0,.6),
    inset 0 0 0 1px rgba(255,255,255,.06); */
  /* background: #0a1628; */
  aspect-ratio: 16 / 16;
}

.hero-video-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 21px;
  padding: 2px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: promptbar-rotate-gradient 6s linear infinite;
  z-index: 1;
  pointer-events: none;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

h1 {
    font-family: 'Syncopate', sans-serif;
    font-size: clamp(36px, 6vw, 64px);
    line-height: 1.05;
    margin: 20px 0 18px;
    color: var(--white);
    letter-spacing: -1px;
    font-weight: 700;
}

h1 span {
    color: var(--primary);
}

.lede {
    font-size: 19px;
    line-height: 1.55;
    color: var(--muted);
    max-width: 60ch;
    margin: 0 0 32px;
}

.cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all .15s;
    font-size: 15px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-dark);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: #fff;
    color: var(--navy);
    border: 1px solid #E4E7EC;
}

.btn-secondary:hover {
    border-color: var(--navy);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 2fr));
    gap: 18px;
    margin-bottom: 64px;
}

.card {
    background: #fff;
    padding: 2px;
    border-radius: 16px;
    background: conic-gradient(from var(--angle, 0deg), #ffc7a0, transparent 40%, transparent 60%, #f58634);
    animation: promptbar-rotate-gradient 6s linear infinite;
    box-shadow: 1px 1px 10px 5px #3f51b56e, inset -10px -10px 20px -10px #ad9eb112, inset 10px 10px 20px -9px #3F51B5;
}

@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes promptbar-rotate-gradient {
    to {
        --angle: 360deg;
    }
}
.cardblock{
    background-color: var(--surface1);
    padding: 20px;
    border-radius: 16px;
}
.card h3 {
    font-size: 16px;
    color: var(--white);
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.card p {
    color: var(--white);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    display: inline-block;
}

.tagline {
    font-family: 'Syncopate', sans-serif;
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 700;
}
.title-main{
    color: var(--white);
    font-size: x-large;
}
footer {
    text-align: center;
    padding: 30px;
    color: var(--muted);
    font-size: 13px;
}

footer a {
    color: var(--primary);
    text-decoration: none;
}
@media screen and (max-width: 768px) {
header {
    align-items: flex-start;
gap:20px;
flex-direction: column;
}
nav {
   display: flex;
   gap: 9px;
}
nav a {
   margin-left: 0px;
   display: flex;
   gap: 9px;
}
    nav a::after{
        content:"";
        height: 100%;
        width: 1px;
        background: #ffc7a0;
        display: block;
    }
     nav a:last-child::after{
         width:0px
     }
  /* Hero stacks on mobile */
  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: unset;
    padding: 24px 0 40px;
  }
  .hero-video {
    order: -1; /* video on top on mobile */
  }
  .hero-video-wrap {
    aspect-ratio: 16 / 9;
  }
}