/* =============================================================
   RC2J CONSULTING — Temporary Launch Page
   Brand: Midnight Navy / Metallic Silver / White / Signal Blue
   ============================================================= */

/* ---------- 0. FONTS (self-hosted) ---------- */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("assets/fonts/inter-latin-300-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/inter-latin-400-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/inter-latin-500-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("assets/fonts/inter-latin-600-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- 1. TOKENS ---------- */
:root {
  --navy-900: #030B16;
  --navy-800: #050F1E;
  --navy-700: #081729;
  --navy-600: #0C2138;
  --navy-500: #12304F;

  --silver-100: #EEF2F7;
  --silver-200: #D6DEE9;
  --silver-300: #B4C0D0;
  --silver-400: #8E9CB0;
  --silver-line: rgba(182, 196, 216, 0.18);

  --white: #FFFFFF;

  --signal: #0A84FF;
  --signal-bright: #3AA0FF;
  --signal-deep: #0466CC;
  --signal-glow: rgba(10, 132, 255, 0.42);

  /* Confirmation stays inside the brand palette — Signal Blue,
     not a generic green. Error red is functional only. */
  --success: #5FB0FF;
  --error: #FF7A7A;

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --maxw: 1120px;
  --pad: clamp(1.25rem, 5vw, 3rem);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  color: var(--silver-200);
  background: var(--navy-800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, picture { display: block; max-width: 100%; }

h1, h2, p { margin: 0; }

a { color: inherit; }

button, input { font: inherit; color: inherit; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* ---------- 3. UTILITIES ---------- */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px; left: 1rem;
  z-index: 100;
  padding: 0.75rem 1.25rem;
  background: var(--signal);
  color: var(--white);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: 8px;
  text-decoration: none;
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 2px solid var(--signal-bright);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   4. HERO
   ============================================================= */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3.5rem, 9vh, 7rem) var(--pad) clamp(3rem, 8vh, 6rem);
  overflow: hidden;
  background: var(--navy-800);
}

/* --- 4a. Photographic layer (populated from config.js) --- */
.hero__photo {
  position: absolute;
  inset: 0;
  z-index: -3;
  background-image: var(--hero-img, none);
  background-size: cover;
  background-position: var(--hero-pos, 50% 50%);
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.1s var(--ease);
}
.hero--has-photo .hero__photo { opacity: var(--hero-photo-opacity, 1); }

/* --- 4b. Temporary brand backdrop (placeholder until the
       final hero image is supplied via config.heroImage).
       Pure gradient depth — no illustration. --- */
.hero__temp {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(78% 62% at 50% 8%, rgba(23, 74, 140, 0.42) 0%, rgba(10, 30, 58, 0) 62%),
    radial-gradient(52% 46% at 82% 88%, rgba(10, 132, 255, 0.16) 0%, rgba(5, 15, 30, 0) 70%),
    radial-gradient(48% 44% at 14% 76%, rgba(120, 150, 190, 0.10) 0%, rgba(5, 15, 30, 0) 72%),
    linear-gradient(168deg, var(--navy-700) 0%, var(--navy-800) 46%, var(--navy-900) 100%);
  transition: opacity 0.8s var(--ease);
}
.hero--has-photo .hero__temp { opacity: 0; }

/* --- 4c. Readability scrim --- */
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(120% 85% at 50% 42%, rgba(5, 15, 30, 0.22) 0%, rgba(5, 15, 30, 0.62) 58%, rgba(3, 11, 22, 0.86) 100%),
    linear-gradient(180deg, rgba(3, 11, 22, 0.72) 0%, rgba(5, 15, 30, 0.24) 32%, rgba(5, 15, 30, 0.52) 72%, var(--navy-800) 100%);
}
/* With the photograph in place the scrim stops being a flat wash.
   A soft Midnight Navy pool sits behind the centre text column so
   type keeps its contrast, while the edges stay clear — the vessel
   bow, gantry crane, aircraft and freight truck all remain visible.
   The top and bottom bands anchor the logo and blend the hero into
   the section below. */
.hero--has-photo .hero__scrim {
  background:
    radial-gradient(ellipse 60% 56% at 50% 50%,
      rgba(3, 11, 22, 0.80) 0%,
      rgba(3, 11, 22, 0.62) 42%,
      rgba(3, 11, 22, 0.24) 70%,
      rgba(3, 11, 22, 0) 88%),
    linear-gradient(180deg,
      rgba(3, 11, 22, 0.80) 0%,
      rgba(3, 11, 22, 0.52) 17%,
      rgba(4, 13, 26, 0.28) 33%,
      rgba(4, 13, 26, 0.22) 58%,
      rgba(5, 15, 30, 0.72) 86%,
      var(--navy-800) 100%);
}

/* --- 4d. Content --- */
.hero__inner {
  position: relative;
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__inner > * {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.9s var(--ease) forwards;
}
.hero__inner > *:nth-child(1) { animation-delay: 0.05s; }
.hero__inner > *:nth-child(2) { animation-delay: 0.18s; }
.hero__inner > *:nth-child(3) { animation-delay: 0.28s; }
.hero__inner > *:nth-child(4) { animation-delay: 0.38s; }
.hero__inner > *:nth-child(5) { animation-delay: 0.46s; }
.hero__inner > *:nth-child(6) { animation-delay: 0.56s; }

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

/* Logo — sits on a soft luminous halo so the deep-navy
   "CONSULTING" wordmark stays legible on Midnight Navy. */
.brand {
  position: relative;
  margin-bottom: clamp(1.75rem, 4vh, 2.75rem);
  padding: clamp(0.5rem, 2vw, 1.25rem) clamp(1rem, 4vw, 3rem);
}
/* Two soft light pools sit behind the mark so the logo's deep-navy
   "CONSULTING" wordmark separates from the Midnight Navy field.
   This is the same lift used in the official dark-background
   presentation of the logo — the artwork itself is untouched. */
.brand::before {
  content: "";
  position: absolute;
  inset: -16% -7%;
  background:
    radial-gradient(46% 58% at 66% 56%, rgba(150, 194, 245, 0.30) 0%, rgba(58, 122, 196, 0.13) 46%, rgba(10, 30, 60, 0) 76%),
    radial-gradient(52% 62% at 34% 46%, rgba(120, 170, 230, 0.20) 0%, rgba(40, 100, 175, 0.09) 48%, rgba(10, 30, 60, 0) 78%);
  filter: blur(10px);
  z-index: -1;
  pointer-events: none;
}
.brand__logo {
  width: clamp(260px, 46vw, 470px);
  height: auto;
}

/* Eyebrow */
.eyebrow {
  font-size: clamp(0.68rem, 1.6vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--silver-300);
  margin-bottom: clamp(1rem, 2.4vh, 1.5rem);
  position: relative;
  padding-bottom: 1rem;
}
.eyebrow::after {
  content: "";
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 46px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--signal), transparent);
}

/* Headline */
.headline {
  font-size: clamp(2rem, 6.4vw, 4.25rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  max-width: 16ch;
  margin-bottom: clamp(1rem, 2.4vh, 1.5rem);
  color: var(--white);
  background: linear-gradient(180deg, #FFFFFF 0%, #DCE5F0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-wrap: balance;
}
.headline__accent {
  -webkit-text-fill-color: var(--signal);
  color: var(--signal);
  background: none;
  text-shadow: 0 0 26px rgba(10, 132, 255, 0.22);
  white-space: nowrap;
}
.tm {
  font-size: 0.32em;
  font-weight: 500;
  vertical-align: super;
  letter-spacing: 0;
  margin-left: 0.1em;
}

/* Supporting copy */
.subhead {
  font-size: clamp(1rem, 2.3vw, 1.375rem);
  font-weight: 500;
  color: var(--silver-100);
  margin-bottom: clamp(0.75rem, 1.6vh, 1rem);
  text-wrap: balance;
}

.lede {
  font-size: clamp(0.9375rem, 1.7vw, 1.0625rem);
  font-weight: 300;
  color: var(--silver-200);
  max-width: 60ch;
  margin-bottom: clamp(2rem, 4.5vh, 3rem);
  text-wrap: pretty;
}

/* CTA group */
.cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1rem, 2.4vh, 1.375rem);
  width: 100%;
}

.hero__email {
  font-size: clamp(0.875rem, 1.7vw, 0.9375rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--silver-300);
  text-decoration: none;
  border-bottom: 1px solid var(--silver-line);
  padding-bottom: 2px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
  word-break: break-word;
}
.hero__email:hover,
.hero__email:focus-visible {
  color: var(--white);
  border-color: var(--signal);
}

/* =============================================================
   5. BUTTONS
   ============================================================= */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7em;
  padding: 1.05rem 2.15rem;
  border: none;
  border-radius: 100px;
  font-size: clamp(0.8125rem, 1.7vw, 0.9375rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.btn__icon {
  width: 1.35em;
  height: 1.35em;
  flex: 0 0 auto;
}

/* Primary — WhatsApp CTA in Signal Blue */
.btn--whatsapp {
  /* Deeper than the Signal Blue accent so white label text clears
     WCAG AA (4.5:1) across the whole gradient, not just one end. */
  background: linear-gradient(135deg, #0A78EE 0%, #0A6FE0 46%, #0356AE 100%);
  color: var(--white);
  box-shadow:
    0 10px 30px -8px var(--signal-glow),
    0 0 0 1px rgba(255, 255, 255, 0.13) inset;
  max-width: 100%;
}
.btn--whatsapp::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 32%, rgba(255,255,255,0.28) 50%, transparent 68%);
  transform: translateX(-130%);
  transition: transform 0.75s var(--ease);
}
.btn--whatsapp:hover,
.btn--whatsapp:focus-visible {
  transform: translateY(-2px);
  box-shadow:
    0 16px 40px -8px rgba(10, 132, 255, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}
.btn--whatsapp:hover::after,
.btn--whatsapp:focus-visible::after { transform: translateX(130%); }
.btn--whatsapp:active { transform: translateY(0); }

/* =============================================================
   6. LAUNCH NOTIFICATION
   ============================================================= */
.notify {
  position: relative;
  padding: 0 var(--pad) clamp(4rem, 10vh, 7rem);
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-700) 55%, var(--navy-800) 100%);
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  max-width: 560px;
  margin: 0 auto clamp(3rem, 8vh, 4.5rem);
  padding-top: clamp(1rem, 3vh, 2rem);
}
.divider__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--silver-line) 40%, rgba(10,132,255,0.5) 100%);
}
.divider__line:last-child {
  background: linear-gradient(90deg, rgba(10,132,255,0.5) 0%, var(--silver-line) 60%, transparent);
}
.divider__mark {
  width: 7px; height: 7px;
  flex: 0 0 auto;
  transform: rotate(45deg);
  background: var(--signal);
  box-shadow: 0 0 16px var(--signal-glow);
}

.notify__inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.notify__heading {
  font-size: clamp(1.5rem, 3.8vw, 2.375rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 0.875rem;
  text-wrap: balance;
}

.notify__copy {
  font-size: clamp(0.9375rem, 1.8vw, 1.0625rem);
  font-weight: 300;
  color: var(--silver-300);
  margin-bottom: clamp(2rem, 4.5vh, 2.75rem);
  text-wrap: balance;
}

/* --- Form --- */
.notify-form {
  display: flex;
  gap: 0.75rem;
  align-items: stretch;
  width: 100%;
}

.field { flex: 1 1 auto; min-width: 0; }

.field__input {
  width: 100%;
  height: 100%;
  min-height: 56px;
  padding: 1rem 1.35rem;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--silver-line);
  border-radius: 100px;
  color: var(--white);
  font-size: 0.9375rem;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field__input::placeholder { color: var(--silver-400); }
.field__input:hover { border-color: rgba(182, 196, 216, 0.32); }
.field__input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.07);
  border-color: var(--signal);
  box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.16);
}
.field__input.is-invalid {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.14);
}

.btn--notify {
  flex: 0 0 auto;
  min-height: 56px;
  /* Deeper than the Signal Blue accent so white label text clears
     WCAG AA (4.5:1) across the whole gradient, not just one end. */
  background: linear-gradient(135deg, #0A78EE 0%, #0A6FE0 46%, #0356AE 100%);
  color: var(--white);
  box-shadow: 0 8px 24px -10px var(--signal-glow), 0 0 0 1px rgba(255,255,255,0.12) inset;
  white-space: nowrap;
}
.btn--notify:hover:not(:disabled),
.btn--notify:focus-visible:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -10px rgba(10, 132, 255, 0.5), 0 0 0 1px rgba(255,255,255,0.18) inset;
}
.btn--notify:disabled { opacity: 0.62; cursor: not-allowed; transform: none; }

.btn__spinner {
  display: none;
  width: 1.05em; height: 1.05em;
  border: 2px solid rgba(255, 255, 255, 0.32);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.is-sending .btn__label { display: none; }
.is-sending .btn__spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Status message */
.form-status {
  min-height: 1.5rem;
  margin-top: 1.125rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  text-wrap: balance;
}
.form-status.is-visible { opacity: 1; transform: translateY(0); }
.form-status.is-error { color: var(--error); }
.form-status.is-success { color: var(--success); }

/* Success replacement state */
.notify-form.is-done { display: none; }

.success-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 1.35rem 1.75rem;
  border: 1px solid rgba(10, 132, 255, 0.30);
  border-radius: 16px;
  background: rgba(10, 132, 255, 0.07);
  color: var(--silver-100);
  font-size: clamp(0.9375rem, 1.8vw, 1rem);
  font-weight: 400;
  line-height: 1.55;
  text-align: left;
  animation: rise 0.6s var(--ease) forwards;
}
.success-panel__icon {
  flex: 0 0 auto;
  width: 26px; height: 26px;
  color: var(--success);
}

/* =============================================================
   7. FOOTER
   ============================================================= */
.footer {
  padding: clamp(2.5rem, 6vh, 3.5rem) var(--pad) clamp(2.5rem, 6vh, 3.5rem);
  border-top: 1px solid var(--silver-line);
  background: var(--navy-900);
}

.footer__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.footer__email {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--silver-200);
  text-decoration: none;
  transition: color 0.25s var(--ease);
  word-break: break-word;
}
.footer__email:hover, .footer__email:focus-visible { color: var(--signal-bright); }

.footer__credit {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--silver-400);
}
.footer__credit a {
  color: var(--silver-200);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(10, 132, 255, 0.4);
  padding-bottom: 1px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.footer__credit a:hover, .footer__credit a:focus-visible {
  color: var(--signal-bright);
  border-color: var(--signal-bright);
}

.footer__legal {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(142, 156, 176, 0.7);
  letter-spacing: 0.01em;
}

/* =============================================================
   8. RESPONSIVE
   ============================================================= */

/* Tablet and below */
@media (max-width: 768px) {
  .headline { max-width: 14ch; }
  .notify-form { flex-direction: column; }
  .btn--notify { width: 100%; }
  .success-panel { flex-direction: column; text-align: center; }
}

/* Mobile */
@media (max-width: 560px) {
  .hero {
    min-height: 100svh;
    padding-top: clamp(2.5rem, 8vh, 4rem);
  }
  /* Phones: swap to the art-directed portrait crop. */
  .hero--has-photo .hero__photo {
    background-image: var(--hero-img-mobile, var(--hero-img));
    background-position: var(--hero-pos-mobile, 50% 45%);
  }
  .hero--has-photo .hero__scrim {
    background:
      radial-gradient(ellipse 88% 46% at 50% 47%,
        rgba(3, 11, 22, 0.86) 0%,
        rgba(3, 11, 22, 0.68) 46%,
        rgba(3, 11, 22, 0.26) 76%,
        rgba(3, 11, 22, 0) 92%),
      linear-gradient(180deg,
        rgba(3, 11, 22, 0.74) 0%,
        rgba(4, 13, 26, 0.30) 22%,
        rgba(4, 13, 26, 0.30) 60%,
        rgba(5, 15, 30, 0.80) 88%,
        var(--navy-800) 100%);
  }
  .headline {
    font-size: clamp(1.875rem, 8.6vw, 2.5rem);
    max-width: 100%;
  }
  .headline__accent { white-space: normal; }
  .btn { width: 100%; padding: 1.05rem 1.25rem; }
  .btn--whatsapp { letter-spacing: 0.06em; font-size: 0.8125rem; }
  .cta-group { gap: 1.125rem; }
  .brand__logo { width: min(84vw, 320px); }
  .divider { gap: 0.85rem; }
}

/* Very small phones */
@media (max-width: 360px) {
  .btn--whatsapp { letter-spacing: 0.03em; font-size: 0.75rem; }
  .hero__email { font-size: 0.8125rem; }
}

/* Short landscape screens */
@media (max-height: 620px) and (orientation: landscape) {
  .hero { min-height: auto; padding-block: 3.5rem; }
  .brand { margin-bottom: 1.25rem; }
  .brand__logo { width: clamp(220px, 30vw, 320px); }
  .lede { margin-bottom: 1.5rem; }
}

/* Desktop / laptop — brand and primary message carry a little more
   authority against the cinematic photography. Scoped to 1024px and
   up so the approved tablet and mobile compositions are untouched.
   Only the hero scales: eyebrow, notification section and footer are
   deliberately left at their existing sizes. */
@media (min-width: 1024px) {
  .brand__logo   { width: clamp(470px, 53vw, 552px); }
  .headline      { font-size: 4.75rem; }
  .subhead       { font-size: 1.5rem; }
  .lede          { font-size: 1.1875rem; }

  /* Primary CTA only — the notification button is unchanged. */
  .btn--whatsapp { font-size: 1rem; padding: 1.2rem 2.7rem; }
}

/* Large desktop */
@media (min-width: 1440px) {
  .headline { font-size: 5.05rem; }
}
