:root {
      --navy: #00483d;
      --navy-2: #096657;
      --blue: #b98a2e;
      --cyan: #f4b63c;
      --aqua: #e6c66b;
      --white: #ffffff;
      --muted: #d5e4ef;
      --gold: #c9a36d;
      --header-h: 104px;
      --footer-h: 108px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      width: 100%;
      min-height: 100%;
      font-family: Inter, "Segoe UI", Arial, sans-serif;
      background: var(--navy);
      color: var(--white);
    }

    body {
      overflow: hidden;
    }

    a {
      color: inherit;
    }

    button, a {
      -webkit-tap-highlight-color: transparent;
    }

    /* ===== HEADER ===== */
    .site-header {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 100;
      min-height: var(--header-h);
      display: grid;
      grid-template-columns: 1fr minmax(290px, 1.2fr) 1fr;
      align-items: center;
      gap: 18px;
      padding: 10px clamp(16px, 3vw, 48px);
      background:
        linear-gradient(90deg, rgba(0, 54, 45, .98), rgba(0, 86, 70, .96), rgba(0, 54, 45, .98));
      border-bottom: 1px solid rgba(255,255,255,.14);
      box-shadow: 0 10px 28px rgba(0,0,0,.24);
      backdrop-filter: blur(14px);
    }

    .header-left,
    .header-right {
      display: flex;
      align-items: center;
      min-width: 0;
    }

    .header-left {
      justify-content: flex-start;
    }

    .header-right {
      justify-content: flex-end;
      gap: clamp(10px, 2vw, 24px);
    }

    .header-logo {
      display: block;
      max-width: 100%;
      object-fit: contain;
      filter: drop-shadow(0 5px 10px rgba(0,0,0,.28));
    }

    .logo-planning {
      width: clamp(120px, 13vw, 210px);
      max-height: 82px;
    }

    .logo-framework {
      width: clamp(82px, 7vw, 112px);
      max-height: 82px;
    }

    .logo-uraan {
      width: clamp(120px, 14vw, 215px);
      max-height: 70px;
    }

    .brand-center {
      text-align: center;
      min-width: 0;
    }

    .brand-center h1 {
      font-size: clamp(20px, 2.35vw, 37px);
      line-height: 1.05;
      letter-spacing: .4px;
      font-weight: 800;
      text-wrap: balance;
    }

    .brand-center p {
      margin-top: 7px;
      color: #e8f4e9;
      font-size: clamp(10px, .95vw, 14px);
      letter-spacing: 1.8px;
      text-transform: uppercase;
    }

    /* ===== SLIDER ===== */
    .slider {
      position: fixed;
      inset: var(--header-h) 0 var(--footer-h) 0;
      overflow: hidden;
      isolation: isolate;
      background: #003d34;
    }

    .slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transform: scale(1.035);
      transition: opacity 1.1s ease, transform 6.8s ease;
      pointer-events: none;
    }

    .slide.active {
      opacity: 1;
      transform: scale(1);
      pointer-events: auto;
    }

    .slide-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .slide::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(90deg,
          rgba(0, 42, 34, .94) 0%,
          rgba(0, 67, 54, .78) 37%,
          rgba(0, 74, 59, .34) 69%,
          rgba(0, 35, 29, .60) 100%);
    }

    .slide::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(0deg, rgba(0,33,27,.66), transparent 42%),
        radial-gradient(circle at 78% 25%, rgba(244,182,60,.16), transparent 34%);
    }

    .slide-inner {
      position: relative;
      z-index: 2;
      width: min(1240px, calc(100% - 44px));
      height: 100%;
      margin: 0 auto;
      display: flex;
      align-items: center;
      padding: 42px 0 54px;
    }

    .slide-copy {
      width: min(650px, 62%);
      transform: translateY(24px);
      opacity: 0;
      transition: transform .85s ease .25s, opacity .85s ease .25s;
    }

    .slide.active .slide-copy {
      transform: translateY(0);
      opacity: 1;
    }

    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 9px 14px;
      border: 1px solid rgba(244,182,60,.55);
      border-radius: 999px;
      background: rgba(0, 72, 58, .72);
      color: #fff7df;
      font-size: clamp(11px, 1vw, 14px);
      font-weight: 700;
      letter-spacing: .7px;
      backdrop-filter: blur(10px);
    }

    .kicker::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--aqua);
      box-shadow: 0 0 14px var(--aqua);
    }

    .slide-copy h2 {
      margin-top: 18px;
      max-width: 720px;
      font-size: clamp(34px, 5vw, 72px);
      line-height: .99;
      letter-spacing: -1.6px;
      text-wrap: balance;
    }

    .slide-copy h2 span {
      color: var(--cyan);
    }

    .slide-copy p {
      margin-top: 20px;
      max-width: 620px;
      color: var(--muted);
      font-size: clamp(15px, 1.45vw, 20px);
      line-height: 1.65;
    }

    .actions {
      margin-top: 28px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .login-btn,
    .learn-btn {
      min-height: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 23px;
      border-radius: 12px;
      text-decoration: none;
      font-weight: 800;
      font-size: 14px;
      transition: .25s ease;
    }

    .login-btn {
      background: linear-gradient(135deg, var(--cyan), var(--aqua));
      color: #003d34;
      box-shadow: 0 14px 28px rgba(244,182,60,.25);
    }

    .learn-btn {
      border: 1px solid rgba(255,255,255,.24);
      background: rgba(255,255,255,.08);
      color: var(--white);
      backdrop-filter: blur(10px);
    }

    .login-btn:hover,
    .learn-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 17px 34px rgba(0,0,0,.27);
    }

    /* Profile only on slide 1 */
    .leader-wrap {
      position: absolute;
      z-index: 3;
      right: clamp(2%, 4vw, 6%);
      bottom: 0;
      width: min(39vw, 570px);
      height: 96%;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      transform: translateX(115%);
      opacity: 0;
    }

    .slide.active .leader-wrap {
      animation: leaderIn 1.15s cubic-bezier(.22,.88,.24,1) .28s forwards;
    }

    .leader-image {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      object-position: center bottom;
      filter: drop-shadow(-16px 16px 26px rgba(0,0,0,.44));
    }

    @keyframes leaderIn {
      from {
        transform: translateX(115%);
        opacity: 0;
      }
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    /* Slider controls */
    .slider-nav {
      position: absolute;
      z-index: 10;
      left: 50%;
      bottom: 20px;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 9px;
    }

    .dot {
      width: 9px;
      height: 9px;
      padding: 0;
      border: 0;
      border-radius: 50%;
      background: rgba(255,255,255,.44);
      cursor: pointer;
      transition: .25s;
    }

    .dot.active {
      width: 30px;
      border-radius: 999px;
      background: var(--aqua);
      box-shadow: 0 0 16px rgba(244,182,60,.82);
    }

    /* ===== FIXED FEATURE FOOTER ===== */
    .feature-footer {
      position: fixed;
      inset: auto 0 0 0;
      z-index: 110;
      height: var(--footer-h);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(255,255,255,.10);
      border-top: 1px solid rgba(255,255,255,.13);
      box-shadow: 0 -10px 28px rgba(0,0,0,.23);
    }

    .feature {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 15px;
      text-align: center;
      text-decoration: none;
      background: rgba(0, 58, 47, .98);
      overflow: hidden;
      transition: background .25s ease, transform .25s ease;
    }

    .feature::before {
      content: "";
      position: absolute;
      inset: auto 0 0 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--cyan), var(--aqua), transparent);
      transform: scaleX(0);
      transition: transform .3s ease;
    }

    .feature:hover {
      background: linear-gradient(145deg, #005747, #08705d);
    }

    .feature:hover::before {
      transform: scaleX(1);
    }

    .feature-content {
      position: relative;
      z-index: 1;
    }

    .feature strong {
      display: block;
      font-size: clamp(13px, 1.2vw, 17px);
      color: var(--white);
    }

    .feature span {
      display: block;
      margin-top: 7px;
      color: #d9e8df;
      font-size: clamp(10px, .86vw, 13px);
      line-height: 1.35;
    }

    /* Small attribution strip */
    .photo-credit {
      position: absolute;
      z-index: 9;
      right: 12px;
      bottom: 12px;
      max-width: 46%;
      color: rgba(255,255,255,.72);
      font-size: 9px;
      text-align: right;
      pointer-events: none;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1020px) {
      :root {
        --header-h: 92px;
      }

      .site-header {
        grid-template-columns: .8fr 1.35fr .9fr;
      }

      .logo-framework {
        width: 70px;
      }

      .leader-wrap {
        width: 44vw;
        right: -2%;
        opacity: .9;
      }

      .slide-copy {
        width: 62%;
      }
    }

    @media (max-width: 760px) {
      :root {
        --header-h: 86px;
        --footer-h: 188px;
      }

      body {
        overflow: auto;
      }

      .site-header {
        grid-template-columns: 1fr auto;
        min-height: var(--header-h);
        padding: 8px 13px;
      }

      .header-left {
        display: none;
      }

      .brand-center {
        text-align: left;
      }

      .brand-center h1 {
        font-size: 19px;
      }

      .brand-center p {
        font-size: 9px;
        letter-spacing: 1px;
      }

      .header-right {
        gap: 7px;
      }

      .logo-framework {
        width: 55px;
        max-height: 62px;
      }

      .logo-uraan {
        width: 98px;
        max-height: 56px;
      }

      .slider {
        min-height: calc(100vh - var(--header-h) - var(--footer-h));
      }

      .slide-inner {
        width: min(100% - 28px, 1240px);
        align-items: flex-start;
        padding-top: 42px;
      }

      .slide-copy {
        width: 100%;
        position: relative;
        z-index: 5;
      }

      .slide-copy h2 {
        max-width: 95%;
        font-size: clamp(34px, 11vw, 54px);
      }

      .slide-copy p {
        max-width: 92%;
      }

      .leader-wrap {
        width: 69vw;
        height: 66%;
        right: -12%;
        opacity: .38;
      }

      .feature-footer {
        height: var(--footer-h);
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
      }

      .feature {
        padding: 10px;
      }

      .photo-credit {
        display: none;
      }
    }

    @media (max-width: 470px) {
      :root {
        --header-h: 78px;
        --footer-h: 202px;
      }

      .site-header {
        gap: 6px;
      }

      .brand-center h1 {
        font-size: 16px;
      }

      .brand-center p {
        display: none;
      }

      .logo-framework {
        width: 42px;
      }

      .logo-uraan {
        width: 75px;
      }

      .slide-inner {
        padding-top: 28px;
      }

      .slide-copy h2 {
        font-size: clamp(30px, 10vw, 43px);
      }

      .slide-copy p {
        font-size: 14px;
        line-height: 1.5;
      }

      .actions {
        margin-top: 18px;
      }

      .login-btn,
      .learn-btn {
        min-height: 44px;
        padding: 0 16px;
        font-size: 13px;
      }

      .leader-wrap {
        width: 84vw;
        height: 57%;
        right: -23%;
      }

      .slider-nav {
        bottom: 12px;
      }

      .feature strong {
        font-size: 12px;
      }

      .feature span {
        font-size: 9.5px;
      }
    }
.developer-credit{font-size:10px;line-height:2.5;text-align:right}
