:root {
    --ink: #195269;
    --ink-dark: #103c4e;
    --lime: #dfe26c;
    --lime-soft: #f4f4ca;
    --orange: #f2a34b;
    --paper: #fbfaf5;
    --muted: #60717a;
    --line: #d9e0df;
}

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

body {
    display: flex;
    min-height: 100vh;
    min-height: 100svh;
    flex-direction: column;
    background: var(--paper);
    color: var(--ink-dark);
    font-family: "Trebuchet MS", "Avenir Next", Avenir, Arial, sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-underline-offset: 4px;
}

a:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 5px;
}

::selection {
    background: var(--lime);
    color: var(--ink-dark);
}

.wrap {
    width: calc(100% - 96px);
    max-width: 1180px;
    margin-inline: auto;
}

.site-header {
    display: flex;
    min-height: 106px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid var(--line);
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    display: block;
    width: 120px;
    height: 70px;
    object-fit: contain;
}

.site-header p,
.kicker {
    color: var(--ink);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.45px;
    text-transform: uppercase;
}

.site-header p {
    color: var(--muted);
}

.content {
    display: grid;
    flex: 1;
    grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
    gap: 74px;
    align-items: center;
    padding-block: 62px 70px;
}

.message {
    min-width: 0;
}

.kicker {
    margin-bottom: 28px;
}

h1 {
    font-weight: 700;
    letter-spacing: -.04em;
    line-height: 1.13;
}

.pretitle,
.posttitle {
    display: block;
    font-size: clamp(28px, 3vw, 42px);
}

.domain {
    display: inline-block;
    max-width: 100%;
    margin: 16px 0 19px;
    padding: 7px 16px 11px;
    border-radius: 9px;
    background: var(--lime-soft);
    color: var(--ink-dark);
    font-size: clamp(45px, 6vw, 76px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -.065em;
    overflow-wrap: anywhere;
}

.domain > span {
    color: var(--ink);
}

.description {
    max-width: 570px;
    margin-top: 33px;
    color: var(--muted);
    font-family: Arial, sans-serif;
    font-size: 17px;
    line-height: 1.8;
}

.description a {
    color: var(--ink);
    font-weight: 700;
}

.cta {
    display: inline-flex;
    margin-top: 29px;
    padding: 14px 20px;
    align-items: center;
    gap: 36px;
    border-radius: 6px;
    background: var(--ink);
    color: white;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: background .15s ease, transform .15s ease;
}

.cta span {
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
}

.cta:hover {
    background: var(--ink-dark);
    transform: translateY(-2px);
}

.picture {
    position: relative;
    min-height: 450px;
    overflow: hidden;
    border-radius: 50% 50% 18px 18px;
    background: #acd3ef;
    box-shadow: 18px 18px 0 var(--lime);
    isolation: isolate;
}

.picture::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(25, 82, 105, .05) 28%, rgba(16, 60, 78, .82) 100%);
    content: "";
}

.picture img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 48% center;
}

.picture-copy {
    position: absolute;
    right: 29px;
    bottom: 28px;
    left: 29px;
    z-index: 2;
    color: white;
}

.picture-copy span {
    display: block;
    margin-bottom: 8px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.45px;
    text-transform: uppercase;
}

.picture-copy strong {
    font-size: clamp(34px, 4vw, 52px);
    letter-spacing: -.05em;
    line-height: .98;
}

.bubble {
    position: absolute;
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, .7);
    border-radius: 50%;
}

.bubble-one {
    top: 66px;
    right: 40px;
    width: 24px;
    height: 24px;
}

.bubble-two {
    top: 102px;
    right: 27px;
    width: 11px;
    height: 11px;
}

.bubble-three {
    top: 43px;
    right: 72px;
    width: 10px;
    height: 10px;
}

.footer {
    background: var(--ink-dark);
    color: #e7eff1;
}

.footer-inner {
    display: flex;
    min-height: 82px;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-family: Arial, sans-serif;
    font-size: 11px;
}

.footer nav {
    display: flex;
    gap: 25px;
}

.footer a {
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
    text-decoration-color: var(--lime);
}

@media (max-width: 960px) {
    .wrap { width: calc(100% - 64px); }
    .content { gap: 42px; }
    .picture { min-height: 410px; }
}

@media (max-width: 760px) {
    .wrap { width: calc(100% - 40px); }
    .site-header { min-height: 88px; }
    .site-header p { display: none; }
    .brand img { width: 108px; height: 63px; }
    .content { grid-template-columns: minmax(0, 1fr); gap: 45px; padding-block: 42px 51px; }
    .kicker { margin-bottom: 24px; font-size: 9px; }
    .pretitle, .posttitle { font-size: clamp(28px, 7vw, 38px); }
    .domain { font-size: clamp(43px, 12vw, 68px); }
    .description { margin-top: 28px; font-size: 16px; }
    .picture { width: calc(100% - 10px); min-height: 390px; box-shadow: 10px 10px 0 var(--lime); }
    .picture-copy strong { font-size: 45px; }
    .footer-inner { min-height: 100px; flex-wrap: wrap; gap: 13px; padding-block: 23px; }
}

@media (max-width: 380px) {
    .footer-inner { align-items: flex-start; flex-direction: column; justify-content: center; }
    .picture { min-height: 350px; }
}

@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; }
}
