:root{
  --bg:#06101c;
  --bg2:#09182a;
  --blue:#64ccff;
  --blue2:#1679bd;
  --warm:#f5a65b;
  --text:#f4f7fb;
  --muted:#b9c7d5;
  --darktext:#0b1520;
  --light:#f4f6f8;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Arial,Helvetica,sans-serif;
  overflow-x:hidden;
}

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


/* =========================================================
   TOP BAR
   ========================================================= */

.topbar{
  position:fixed;
  top:0;
  left:0;
  right:0;
  height:86px;
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 5vw;
  background:linear-gradient(
    180deg,
    rgba(2,7,13,.90),
    rgba(2,7,13,.18)
  );
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,.05);
}

.brand{
  display:flex;
  align-items:center;
  height:64px;
}

.brand img{
  width:158px;
  height:64px;
  object-fit:contain;
  padding:3px;
  background:#fff;
  border-radius:4px;
}

.menu{
  display:flex;
  gap:30px;
  align-items:center;
}

.menu a{
  font-size:12px;
  letter-spacing:.16em;
  text-transform:uppercase;
  opacity:.8;
  transition:.2s;
}

.menu a:hover{
  opacity:1;
  color:#8bdcff;
}


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

.hero{
  min-height:100vh;
  position:relative;
  overflow:hidden;

  display:flex;
  align-items:center;

  padding:122px 7vw 64px;

  /*
    Official NORWYN hero artwork.
    Text, logo and buttons remain real HTML elements.
  */
  background-image:url("assets/norwyn-hero.png");
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
}

/*
  Darkens the left side for readability while keeping
  Náthaly and the NORWYN tower visible on the right.
*/
.hero-shade{
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;

  background:
    linear-gradient(
      90deg,
      rgba(1,5,9,.94) 0%,
      rgba(1,5,9,.84) 23%,
      rgba(1,5,9,.55) 43%,
      rgba(1,5,9,.17) 64%,
      rgba(1,5,9,.03) 100%
    ),
    linear-gradient(
      0deg,
      rgba(1,5,9,.34) 0%,
      transparent 35%
    );
}

.hero-copy{
  position:relative;
  z-index:5;
  width:min(47vw,760px);
  max-width:760px;
}

.eyebrow,
.section-label{
  margin:0 0 18px;
  color:#72d3ff;
  font-size:12px;
  letter-spacing:.22em;
}

.hero h1,
.section h2{
  font-weight:300;
  letter-spacing:-.04em;
  line-height:.98;
}

.hero h1{
  margin:18px 0 26px;
  font-size:clamp(58px,7vw,112px);
  text-shadow:0 3px 30px rgba(0,0,0,.42);
}

.lead{
  max-width:610px;
  font-size:18px;
  line-height:1.72;
  color:#d0dbe5;
  text-shadow:0 2px 14px rgba(0,0,0,.65);
}

.nathaly-tag{
  margin-top:34px;
  display:grid;
  gap:5px;
  width:max-content;
  max-width:100%;
  padding:9px 0 9px 18px;
  border-left:2px solid #56cfff;
}

.nathaly-tag .tiny{
  color:#6fc9f4;
  font-size:10px;
  letter-spacing:.22em;
}

.nathaly-tag strong{
  font-size:27px;
  font-weight:500;
  letter-spacing:.16em;
}

.nathaly-tag span:last-child{
  color:#d4e0e9;
}

.actions{
  display:flex;
  gap:14px;
  margin-top:30px;
}

.button{
  padding:13px 20px;
  border:1px solid rgba(143,219,255,.48);
  background:rgba(2,10,17,.30);
  backdrop-filter:blur(5px);
  font-size:11px;
  letter-spacing:.16em;
  text-transform:uppercase;
  transition:.2s;
}

.button-primary{
  background:rgba(34,151,217,.18);
  box-shadow:inset 0 0 30px rgba(45,174,238,.09);
}

.button:hover{
  border-color:#7bd7ff;
  background:rgba(79,191,242,.17);
}

.side-copy{
  position:absolute;
  right:3.2vw;
  top:24%;
  z-index:6;
  display:flex;
  flex-direction:column;
  gap:4px;
  color:#d3dee7;
  font-size:10px;
  letter-spacing:.25em;
  text-align:right;
  text-shadow:0 2px 12px rgba(0,0,0,.8);
}

.scroll-link{
  position:absolute;
  z-index:6;
  left:50%;
  bottom:24px;
  transform:translateX(-50%);
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:9px;
  color:#c4d0da;
  font-size:9px;
  letter-spacing:.2em;
  text-shadow:0 2px 10px rgba(0,0,0,.8);
}

.mouse{
  width:19px;
  height:30px;
  border:1px solid #c1d0dc;
  border-radius:12px;
  position:relative;
}

.mouse:after{
  content:"";
  position:absolute;
  width:3px;
  height:5px;
  border-radius:2px;
  top:6px;
  left:7px;
  background:#8edcff;
}


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

.section{
  padding:118px 8vw;
}

.section-light{
  background:var(--light);
  color:var(--darktext);
}

.section-dark{
  background:#07111e;
  color:#f4f8fc;
}

.two-col{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:start;
}

.section h2{
  margin:0;
  font-size:clamp(44px,5vw,74px);
}

.body-copy p,
.wide-copy{
  font-size:17px;
  line-height:1.85;
}

.section-light .body-copy p{
  color:#495967;
}

.section-dark .wide-copy{
  color:#b8c6d2;
}

.section-dark h2 em{
  color:#6dd0ff;
  font-style:normal;
}

.wide-copy{
  max-width:820px;
}


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

.feature-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:66px;
}

.feature-grid article{
  padding-top:17px;
  border-top:1px solid rgba(126,216,255,.34);
}

.feature-grid article span{
  color:#69c9f5;
  font-size:11px;
}

.feature-grid h3{
  font-size:20px;
  font-weight:500;
}

.feature-grid p{
  color:#99aaba;
  font-size:14px;
}


/* =========================================================
   NÁTHALY
   ========================================================= */

.nathaly-section{
  background:linear-gradient(120deg,#edf2f6,#fff);
}

.beginning{
  font-weight:600;
  color:#17293a !important;
}


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

footer{
  padding:40px 6vw;
  display:flex;
  justify-content:space-between;
  gap:30px;
  background:#02060a;
  border-top:1px solid rgba(255,255,255,.08);
  color:#b9c5cf;
  font-size:13px;
}

footer div{
  display:flex;
  flex-direction:column;
  gap:7px;
}

.footer-brand strong{
  color:#fff;
  letter-spacing:.12em;
}

.footer-meta{
  text-align:right;
}

.footer-meta a{
  color:#6fd1ff;
}


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

@media(max-width:900px){

  .topbar{
    height:72px;
    padding:8px 18px;
  }

  .brand img{
    width:118px;
    height:50px;
  }

  .menu{
    display:none;
  }

  .hero{
    min-height:100svh;
    padding:106px 24px 56px;
    align-items:center;

    /*
      Keep the character/tower side of the artwork visible
      on narrower screens.
    */
    background-position:62% center;
  }

  .hero-shade{
    background:
      linear-gradient(
        90deg,
        rgba(1,5,9,.92) 0%,
        rgba(1,5,9,.72) 58%,
        rgba(1,5,9,.28) 100%
      ),
      linear-gradient(
        0deg,
        rgba(1,5,9,.62) 0%,
        rgba(1,5,9,.08) 70%
      );
  }

  .hero-copy{
    width:min(620px,92%);
  }

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

  .side-copy,
  .scroll-link{
    display:none;
  }

  .two-col{
    grid-template-columns:1fr;
    gap:26px;
  }

  .section{
    padding:88px 24px;
  }

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

  footer{
    flex-direction:column;
  }

  .footer-meta{
    text-align:left;
  }
}


@media(max-width:520px){

  .hero{
    padding:94px 20px 42px;
    background-position:65% center;
  }

  .hero-shade{
    background:rgba(1,5,9,.68);
  }

  .hero-copy{
    width:100%;
  }

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

  .lead{
    font-size:16px;
    line-height:1.6;
  }

  .eyebrow{
    font-size:9px;
    line-height:1.6;
  }

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

  .actions{
    flex-wrap:wrap;
  }
}
/* =========================================================
   NORWYN VISUAL ASSET PROTECTION
   ========================================================= */

.brand img{
  -webkit-user-drag:none;
  user-select:none;
  -webkit-user-select:none;
}

.hero,
.brand{
  -webkit-touch-callout:none;
}
/* Shared language controls */
.language-switcher{display:flex;align-items:center;gap:7px;color:#71899d;font-size:11px}
.language-switcher button{border:0;padding:4px 2px;background:transparent;color:#9fb1c0;font:inherit;letter-spacing:.1em;cursor:pointer}
.language-switcher button:hover,.language-switcher button.active{color:#64ccff}
.preserve-lines{white-space:pre-line}

/* NORWYN CONTACT SECTION */
.contact-section{
  position:relative;
  overflow:hidden;
  border-top:1px solid rgba(100,204,255,.14);
  border-bottom:1px solid rgba(100,204,255,.14);
}

.contact-section::after{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  right:-160px;
  bottom:-230px;
  border:1px solid rgba(100,204,255,.12);
  border-radius:50%;
  box-shadow:0 0 100px rgba(66,182,239,.07);
  pointer-events:none;
}

.contact-copy{
  position:relative;
  z-index:1;
}

.contact-links{
  display:grid;
  gap:14px;
  margin-top:32px;
}

.contact-link{
  display:flex;
  flex-direction:column;
  gap:8px;
  padding:22px;
  border:1px solid rgba(100,204,255,.22);
  background:rgba(100,204,255,.04);
  color:#f4f8fc;
  text-decoration:none;
  transition:
    border-color .2s ease,
    background .2s ease,
    transform .2s ease;
}

.contact-link:hover{
  border-color:rgba(100,204,255,.65);
  background:rgba(100,204,255,.09);
  transform:translateY(-2px);
}

.contact-link span{
  color:#64ccff;
  font-size:11px;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.contact-link strong{
  font-size:clamp(16px,2vw,21px);
  font-weight:400;
  overflow-wrap:anywhere;
}

@media(max-width:600px){
  .contact-link{
    padding:18px;
  }
}
