:root {
--phx-blue: #002365;
--phx-navy: #071a3d;
--phx-deep: #061447;
--phx-gold: #FEA941;
--phx-gold-dark: #d98a18;
--phx-soft: #f7f9fc;
--phx-border: #e6ebf3;
--phx-text: #172033;
--phx-muted: #667085;
--phx-white: #ffffff;
}

* {
  box-sizing: border-box;
  }

html {
scroll-behavior: smooth;
}

body {
margin: 0;
font-family: "Inter", Arial, sans-serif;
color: var(--phx-text);
background: #ffffff;
}

section {
scroll-margin-top: 86px;
}

.phx-container {
width: min(1160px, calc(100% - 42px));
margin: 0 auto;
}

/* HEADER */

.phx-header {
background: #ffffff;
border-bottom: 1px solid var(--phx-border);
position: sticky;
top: 0;
z-index: 100;
}

.phx-header-inner {
height: 78px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 20px;
}

.phx-logo {
display: flex;
align-items: center;
flex-shrink: 0;
}

.phx-logo img {
height: 56px;
width: auto;
display: block;
}

.phx-nav {
display: flex;
align-items: center;
gap: 34px;
}

.phx-nav a,
.phx-mobile-nav a {
color: var(--phx-blue);
text-decoration: none;
font-weight: 800;
}

.phx-nav a {
font-size: 12px;
text-transform: uppercase;
letter-spacing: 1.2px;
white-space: nowrap;
}

.phx-nav a:hover,
.phx-mobile-nav a:hover {
color: var(--phx-gold-dark);
}

.phx-header-actions {
display: flex;
align-items: center;
gap: 12px;
flex-shrink: 0;
}

.phx-login,
.phx-menu-btn,
.phx-btn-primary {
border-radius: 999px;
font-weight: 800;
text-decoration: none;
}

.phx-login {
background: var(--phx-blue);
color: #ffffff;
padding: 11px 26px;
font-size: 13px;
white-space: nowrap;
}

.phx-login:hover {
background: var(--phx-gold);
color: var(--phx-blue);
}

.phx-menu-btn {
display: none;
background: var(--phx-gold);
color: var(--phx-blue);
border: none;
padding: 9px 17px;
font-size: 12px;
font-weight: 900;
cursor: pointer;
white-space: nowrap;
}

.phx-mobile-nav {
display: none;
background: #ffffff;
border-top: 1px solid var(--phx-border);
border-bottom: 1px solid var(--phx-border);
padding: 6px 0;
}

.phx-mobile-nav a {
display: block;
font-size: 13px;
padding: 13px 22px;
border-bottom: 1px solid var(--phx-border);
}

.phx-mobile-nav a:last-child {
border-bottom: none;
}

/* HERO */

.phx-hero {
padding: 82px 0 88px;
background: linear-gradient(90deg, #ffffff 0%, #ffffff 61%, #f6f8fb 61%, #f6f8fb 100%);
}

.phx-hero-grid {
display: grid;
grid-template-columns: 0.92fr 1.08fr;
gap: 76px;
align-items: center;
}

.phx-label,
.phx-section-heading span,
.phx-feature-intro span,
.phx-governance-box span {
display: inline-block;
font-size: 11px;
font-weight: 900;
text-transform: uppercase;
letter-spacing: 1.5px;
margin-bottom: 12px;
}

.phx-label {
color: var(--phx-gold-dark);
font-weight: 800;
letter-spacing: 1.8px;
margin-bottom: 16px;
}

.phx-hero-copy h1,
.phx-section-heading h2,
.phx-feature-intro h2,
.phx-governance-box h2 {
font-family: "Manrope", Arial, sans-serif;
margin-top: 0;
}

.phx-hero-copy h1 {
color: var(--phx-blue);
font-size: clamp(32px, 3.1vw, 46px);
line-height: 1.18;
letter-spacing: -1.2px;
font-weight: 700;
max-width: 590px;
margin-bottom: 20px;
}

.phx-hero-copy p {
color: var(--phx-muted);
font-size: 15px;
line-height: 1.85;
max-width: 560px;
margin: 0 0 28px;
}

.phx-actions {
display: flex;
align-items: center;
gap: 18px;
flex-wrap: wrap;
}

.phx-btn-primary {
display: inline-flex;
align-items: center;
justify-content: center;
min-height: 46px;
padding: 0 24px;
background: var(--phx-gold);
color: var(--phx-blue);
font-size: 13px;
letter-spacing: 0.2px;
}

.phx-btn-primary:hover {
background: var(--phx-blue);
color: #ffffff;
}

.phx-btn-link {
color: var(--phx-blue);
font-size: 13px;
font-weight: 700;
text-decoration: none;
border-bottom: 2px solid var(--phx-gold);
padding-bottom: 4px;
}

.phx-btn-link:hover {
color: var(--phx-gold-dark);
}

/* HERO PHOTO */

.phx-hero-photo {
position: relative;
min-height: 470px;
border-radius: 26px;
overflow: hidden;
box-shadow: 0 30px 70px rgba(0, 35, 101, 0.16);
}

.phx-hero-photo::after {
content: "";
position: absolute;
inset: 0;
background: linear-gradient(180deg, rgba(0, 35, 101, 0.04), rgba(0, 35, 101, 0.56));
}

.phx-hero-photo img {
width: 100%;
height: 470px;
object-fit: cover;
object-position: center;
display: block;
}

.phx-photo-note {
position: absolute;
z-index: 2;
left: 26px;
right: 26px;
bottom: 26px;
background: rgba(255, 255, 255, 0.95);
border-left: 5px solid var(--phx-gold);
border-radius: 16px;
padding: 20px 22px;
}

.phx-photo-note strong {
display: block;
color: var(--phx-blue);
font-size: 17px;
margin-bottom: 6px;
}

.phx-photo-note span {
display: block;
color: var(--phx-muted);
font-size: 14px;
line-height: 1.6;
}

/* WORKFLOW */

.phx-workflow {
padding: 76px 0;
background: var(--phx-blue);
}

.phx-section-heading {
max-width: 680px;
margin-bottom: 38px;
}

.phx-section-heading span {
color: var(--phx-gold);
}

.phx-section-heading h2 {
color: #ffffff;
font-size: clamp(28px, 3vw, 40px);
line-height: 1.2;
letter-spacing: -0.8px;
margin-bottom: 0;
}

.phx-workflow-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.phx-workflow-grid div {
padding: 28px 24px 0 0;
border-right: 1px solid rgba(255, 255, 255, 0.16);
min-height: 170px;
}

.phx-workflow-grid div:last-child {
border-right: none;
}

.phx-workflow-grid span {
color: var(--phx-gold);
font-size: 12px;
font-weight: 900;
}

.phx-workflow-grid h3 {
color: #ffffff;
font-size: 18px;
margin: 14px 0 10px;
}

.phx-workflow-grid p {
color: rgba(255, 255, 255, 0.72);
font-size: 14px;
line-height: 1.7;
margin: 0;
}

/* FEATURES */

.phx-features {
padding: 86px 0;
background: #ffffff;
}

.phx-features-grid {
display: grid;
grid-template-columns: 0.8fr 1.2fr;
gap: 72px;
align-items: start;
}

.phx-feature-intro span,
.phx-governance-box span {
color: var(--phx-gold-dark);
}

.phx-feature-intro h2,
.phx-governance-box h2 {
color: var(--phx-blue);
font-size: clamp(28px, 3vw, 42px);
line-height: 1.2;
letter-spacing: -0.9px;
margin-bottom: 18px;
}

.phx-feature-intro p,
.phx-governance-box p {
color: var(--phx-muted);
font-size: 15px;
line-height: 1.8;
margin: 0;
}

.phx-feature-list {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 22px;
}

.phx-feature-list div {
border-top: 3px solid var(--phx-gold);
background: var(--phx-soft);
padding: 24px;
border-radius: 16px;
}

.phx-feature-list h3 {
color: var(--phx-blue);
font-size: 18px;
margin: 0 0 10px;
}

.phx-feature-list p {
color: var(--phx-muted);
font-size: 14px;
line-height: 1.7;
margin: 0;
}

/* GOVERNANCE */

.phx-governance {
padding: 80px 0;
background: linear-gradient(110deg, rgba(0, 35, 101, 0.96), rgba(7, 26, 61, 0.96)), var(--phx-blue);
}

.phx-governance-box {
background: #ffffff;
border-radius: 24px;
padding: 42px;
display: flex;
align-items: center;
justify-content: space-between;
gap: 38px;
border-left: 6px solid var(--phx-gold);
}

.phx-governance-box div {
max-width: 760px;
}

/* FOOTER */

.phx-footer {
background: var(--phx-deep);
padding: 24px 0;
}

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

.phx-footer-inner p {
color: rgba(255, 255, 255, 0.76);
font-size: 14px;
margin: 0;
}

.phx-footer-inner a {
color: var(--phx-gold);
text-decoration: none;
font-weight: 800;
}

/* RESPONSIVE */

@media only screen and (max-width: 1100px) {
.phx-container {
width: min(100% - 36px, 1160px);
}

```
.phx-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.phx-hero-copy h1 {
    font-size: clamp(32px, 3.6vw, 42px);
}

.phx-features-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
}
```

}

@media only screen and (min-width: 992px) {
.phx-nav {
display: flex !important;
}

```
.phx-login {
    display: inline-flex !important;
}

.phx-menu-btn,
.phx-mobile-nav {
    display: none !important;
}
```

}

@media only screen and (max-width: 991px) {
section {
scroll-margin-top: 78px;
}

```
.phx-header-inner {
    height: 70px;
    gap: 12px;
}

.phx-logo {
    max-width: 190px;
}

.phx-logo img {
    height: 46px;
    max-width: 190px;
    object-fit: contain;
}

.phx-nav,
.phx-login {
    display: none !important;
}

.phx-header-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
}

.phx-menu-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

.phx-hero {
    padding: 62px 0 70px;
    background: #ffffff;
}

.phx-hero-grid,
.phx-features-grid {
    grid-template-columns: 1fr;
    gap: 42px;
}

.phx-hero-copy {
    max-width: 680px;
}

.phx-hero-copy h1 {
    max-width: 640px;
    font-size: clamp(34px, 5vw, 44px);
}

.phx-hero-copy p {
    max-width: 620px;
}

.phx-hero-photo {
    min-height: 430px;
    border-radius: 22px;
}

.phx-hero-photo img {
    height: 430px;
}

.phx-workflow,
.phx-governance {
    padding: 68px 0;
}

.phx-workflow-grid,
.phx-feature-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.phx-workflow-grid div {
    padding: 26px 22px 26px 0;
    min-height: 160px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.phx-workflow-grid div:nth-child(2) {
    border-right: none;
}

.phx-workflow-grid div:nth-child(3),
.phx-workflow-grid div:nth-child(4) {
    border-bottom: none;
}

.phx-features {
    padding: 72px 0;
}

.phx-feature-intro {
    max-width: 680px;
}

.phx-governance-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
}

.phx-governance-box .phx-btn-primary {
    width: auto;
}
```

}

@media only screen and (max-width: 767px) {
section {
scroll-margin-top: 72px;
}

```
.phx-container {
    width: min(100% - 28px, 1160px);
}

.phx-header-inner {
    height: 70px;
}

.phx-logo {
    max-width: 170px;
}

.phx-logo img {
    height: 40px;
    max-width: 170px;
}

.phx-menu-btn {
    padding: 8px 15px;
    font-size: 11.5px;
}

.phx-mobile-nav a {
    font-size: 12.5px;
    padding: 12px 18px;
}

.phx-hero {
    padding: 46px 0 56px;
}

.phx-label,
.phx-section-heading span,
.phx-feature-intro span,
.phx-governance-box span {
    font-size: 10px;
    letter-spacing: 1.4px;
}

.phx-hero-copy h1 {
    font-size: 31px;
    line-height: 1.18;
    letter-spacing: -0.7px;
    max-width: 100%;
    margin-bottom: 18px;
}

.phx-hero-copy p,
.phx-feature-intro p,
.phx-governance-box p {
    font-size: 14.5px;
    line-height: 1.75;
    max-width: 100%;
}

.phx-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
}

.phx-btn-primary,
.phx-governance-box .phx-btn-primary {
    width: 100%;
    min-height: 45px;
    font-size: 13px;
}

.phx-btn-link {
    width: fit-content;
    font-size: 13px;
}

.phx-hero-photo,
.phx-hero-photo img {
    height: 340px;
    min-height: 340px;
}

.phx-hero-photo {
    border-radius: 20px;
}

.phx-photo-note {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 16px 18px;
    border-radius: 14px;
}

.phx-photo-note strong {
    font-size: 15px;
}

.phx-photo-note span {
    font-size: 13px;
}

.phx-workflow,
.phx-features,
.phx-governance {
    padding: 58px 0;
}

.phx-section-heading {
    margin-bottom: 28px;
}

.phx-section-heading h2,
.phx-feature-intro h2,
.phx-governance-box h2 {
    font-size: 28px;
    line-height: 1.22;
    letter-spacing: -0.6px;
}

.phx-workflow-grid,
.phx-feature-list {
    grid-template-columns: 1fr;
    gap: 16px;
}

.phx-workflow-grid {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.phx-workflow-grid div {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    padding: 24px 0;
    min-height: auto;
}

.phx-workflow-grid div:last-child {
    border-bottom: none;
}

.phx-workflow-grid h3 {
    font-size: 17px;
    margin: 10px 0 8px;
}

.phx-workflow-grid p,
.phx-feature-list p {
    font-size: 13.5px;
}

.phx-feature-list div {
    padding: 20px;
    border-radius: 14px;
}

.phx-feature-list h3 {
    font-size: 16px;
}

.phx-governance-box {
    padding: 26px 20px;
    border-radius: 18px;
    border-left-width: 5px;
}

.phx-footer {
    padding: 22px 0;
}

.phx-footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
}

.phx-footer-inner p,
.phx-footer-inner a {
    font-size: 13px;
    line-height: 1.6;
}
```

}

@media only screen and (max-width: 420px) {
.phx-container {
width: min(100% - 24px, 1160px);
}

```
.phx-header-inner {
    height: 66px;
}

.phx-logo {
    max-width: 150px;
}

.phx-logo img {
    height: 36px;
    max-width: 150px;
}

.phx-menu-btn {
    padding: 8px 14px;
    font-size: 11px;
}

.phx-mobile-nav a {
    font-size: 12px;
    padding: 11px 16px;
}

.phx-hero {
    padding: 40px 0 50px;
}

.phx-hero-copy h1 {
    font-size: 28px;
}

.phx-hero-copy p {
    font-size: 14px;
}

.phx-hero-photo,
.phx-hero-photo img {
    height: 300px;
    min-height: 300px;
}

.phx-photo-note {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px 15px;
}

.phx-section-heading h2,
.phx-feature-intro h2,
.phx-governance-box h2 {
    font-size: 25px;
}

.phx-feature-list div {
    padding: 18px;
}
```

}
/* LOGIN PAGE */

.phx-login-page {
    min-height: 100vh;
    background:
        linear-gradient(90deg, #ffffff 0%, #ffffff 58%, #f6f8fb 58%, #f6f8fb 100%);
    overflow-x: hidden;
}

.phx-login-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
}

.phx-login-brand {
    min-height: 100vh;
    padding: 28px 64px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 58px;
}

.phx-login-logo img {
         height: 92px;
    width: auto;
    display: block;
}

.phx-login-brand-content {
    max-width: 620px;
}

.phx-login-brand-content span,
.phx-login-card-head span {
    display: inline-block;
    color: var(--phx-gold-dark);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin-bottom: 14px;
}

.phx-login-brand-content h1 {
    color: var(--phx-blue);
    font-family: "Manrope", Arial, sans-serif;
    font-size: clamp(34px, 3vw, 52px);
    line-height: 1.08;
    letter-spacing: -1.3px;
    font-weight: 700;
    margin: 0 0 14px;
}

.phx-login-brand-content p {
      color: var(--phx-muted);
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
    max-width: 610px;
}

.phx-login-brand-footer {
    border-top: 1px solid var(--phx-border);
    padding-top: 18px;
}

.phx-login-brand-footer strong {
    display: block;
    color: var(--phx-blue);
    font-size: 14px;
    margin-bottom: 5px;
}

.phx-login-brand-footer span {
    color: var(--phx-muted);
    font-size: 13px;
}

.phx-login-panel {
    min-height: 100vh;
    padding: 24px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.phx-login-card {
      width: min(100%, 500px);
    background: #ffffff;
    border: 1px solid var(--phx-border);
    border-radius: 24px;
    padding: 28px 38px 24px;
    box-shadow: 0 24px 60px rgba(0, 35, 101, 0.10);
}

.phx-login-card-logo {
    display: none;
}

.phx-login-card-head {
    margin-bottom: 20px;
}

.phx-login-card-head h2 {
    color: var(--phx-blue);
    font-family: "Manrope", Arial, sans-serif;
    font-size: 30px;
    line-height: 1.1;
    letter-spacing: -0.7px;
    margin: 0 0 6px;
}

.phx-login-card-head p {
    color: var(--phx-muted);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
}

.phx-login-alert {
    background: rgba(220, 38, 38, 0.08);
    color: #b42318;
    border: 1px solid rgba(220, 38, 38, 0.16);
    border-radius: 14px;
    padding: 12px 14px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 18px;
}

.phx-login-form {
     display: grid;
    gap: 14px;
}

.phx-form-group {
    display: grid;
    gap: 7px;
}

.phx-form-group label {
    color: var(--phx-blue);
    font-size: 13px;
    font-weight: 800;
}

.phx-form-group input {
     width: 100%;
    min-height: 44px;
    border: 1px solid var(--phx-border);
    border-radius: 14px;
    padding: 0 15px;
    font-family: "Inter", Arial, sans-serif;
    font-size: 14px;
    color: var(--phx-text);
    background: #ffffff;
    outline: none;
    transition: 0.2s ease;
}

.phx-form-group input::placeholder {
    color: #98a2b3;
}

.phx-form-group input:focus {
    border-color: var(--phx-gold);
    box-shadow: 0 0 0 4px rgba(254, 169, 65, 0.13);
}

.phx-login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.phx-remember {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--phx-muted);
    font-size: 13px;
    cursor: pointer;
}

.phx-remember input {
    accent-color: var(--phx-blue);
}

.phx-login-options a {
    color: var(--phx-blue);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.phx-login-options a:hover {
    color: var(--phx-gold-dark);
}

.phx-login-submit {
      min-height: 46px;
    border: none;
    border-radius: 999px;
    background: var(--phx-gold);
    color: var(--phx-blue);
    font-family: "Inter", Arial, sans-serif;
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
    transition: 0.25s ease;
    margin-top: 2px;
}

.phx-login-submit:hover {
    background: var(--phx-blue);
    color: #ffffff;
}

.phx-login-note {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--phx-border);
}

.phx-login-note p {
    color: var(--phx-muted);
    font-size: 12.8px;
    line-height: 1.45;
    margin: 0;
}

.phx-login-back {
      width: 100%;
    margin-top: 12px;
    text-align: center;
}

.phx-login-back a {
    color: var(--phx-blue);
    font-size: 13px;
    font-weight: 800;
    text-decoration: none;
}

.phx-login-back a:hover {
    color: var(--phx-gold-dark);
}


/* LOGIN RESPONSIVE */

@media only screen and (max-width: 991px) {
    .phx-login-page {
        min-height: 100vh;
        background: #f7f9fc;
    }

    .phx-login-shell {
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 32px 24px;
    }

    .phx-login-brand {
        display: none;
    }

    .phx-login-panel {
        width: 100%;
        max-width: 500px;
        min-height: auto;
        padding: 0;
        display: block;
    }

    .phx-login-card {
        width: 100%;
        max-width: 500px;
        padding: 32px 28px;
        border-radius: 24px;
        margin: 0 auto;
        box-shadow: 0 22px 52px rgba(0, 35, 101, 0.11);
    }

    .phx-login-card-logo {
        display: flex;
        justify-content: center;
        margin-bottom: 26px;
    }

    .phx-login-card-logo img {
         height: 78px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    }

    .phx-login-card-head {
        text-align: center;
        margin-bottom: 24px;
    }

    .phx-login-card-head h2 {
        font-size: 30px;
    }

    .phx-login-card-head p {
        max-width: 340px;
        margin: 0 auto;
    }

    .phx-login-back {
        width: 100%;
        max-width: 500px;
        text-align: center;
        margin: 16px auto 0;
    }
}

@media only screen and (max-width: 600px) {
    .phx-login-shell {
        align-items: flex-start;
        padding: 18px 14px 28px;
    }

    .phx-login-card {
        padding: 26px 18px;
        border-radius: 20px;
        box-shadow: 0 16px 36px rgba(0, 35, 101, 0.10);
    }

    .phx-login-card-logo {
        margin-bottom: 22px;
    }

    .phx-login-card-logo img {
          height: 68px;
    max-width: 250px;
    }

    .phx-login-card-head {
        margin-bottom: 22px;
    }

    .phx-login-card-head span {
        font-size: 10px;
        letter-spacing: 1.35px;
        margin-bottom: 10px;
    }

    .phx-login-card-head h2 {
        font-size: 25px;
        line-height: 1.2;
    }

    .phx-login-card-head p {
        font-size: 13.5px;
        line-height: 1.6;
    }

    .phx-login-form {
        gap: 15px;
    }

    .phx-form-group input {
        min-height: 45px;
        border-radius: 12px;
        font-size: 13.5px;
    }

    .phx-login-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 9px;
    }

    .phx-login-submit {
        min-height: 47px;
        font-size: 13.5px;
    }

    .phx-login-note {
        margin-top: 18px;
        padding-top: 16px;
    }

    .phx-login-note p,
    .phx-login-back a {
        font-size: 12.7px;
    }
}

@media only screen and (max-width: 380px) {
    .phx-login-shell {
        padding: 14px 10px 24px;
    }

    .phx-login-card {
        padding: 22px 14px;
    }

    .phx-login-card-logo img {
       height: 60px;
    max-width: 230px;
    }

    .phx-login-card-head h2 {
        font-size: 23px;
    }
}
/*DISABLE LOGIN BUTTON*/
.phx-login-submit:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}