:root {
  --orange: #ff6500;
  --orange-dark: #f04f00;
  --black: #080808;
  --soft-black: #161616;
  --text: #111111;
  --line: #d7d7d7;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

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

.site-header {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1260px;
  margin: 0 auto;
  padding: 70px 52px 0;
}

.brand img {
  display: block;
  width: 260px;
  height: auto;
}

.menu-button {
  display: none;
  width: 52px;
  height: 44px;
  padding: 6px;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  height: 4px;
  margin: 7px 0;
  border-radius: 10px;
  background: #111111;
}

.landing-hero {
  position: relative;
  overflow: hidden;
  min-height: 1080px;
  padding: 210px 52px 70px;
  background:
    linear-gradient(135deg, rgba(245, 245, 245, .95) 0 18%, transparent 18%),
    linear-gradient(315deg, rgba(245, 245, 245, .9) 0 12%, transparent 12%),
    #ffffff;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  margin: 0 auto;
}

.hero-content h1 {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: 76px;
  line-height: .98;
  font-weight: 900;
  letter-spacing: 0;
}

.hero-content h1::before {
  content: "¿";
}

.hero-content h1 span,
.closing-line strong {
  color: var(--orange-dark);
}

.hero-copy {
  max-width: 650px;
  margin: 0 0 44px;
  font-size: 29px;
  line-height: 1.45;
}

.accent-line {
  width: 106px;
  height: 4px;
  margin-bottom: 78px;
  background: var(--orange);
}

.quick-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 880px;
  margin-bottom: 68px;
}

.quick-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 108px;
  padding: 0 30px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.quick-point:last-child {
  border-right: 0;
}

.icon-circle {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 82px;
  height: 82px;
}

.quick-point svg,
.benefit-item svg {
  width: 72px;
  height: 72px;
  fill: var(--orange);
}

.quick-point strong,
.quick-point span {
  display: block;
  font-size: 21px;
  line-height: 1.25;
}

.quick-point strong {
  font-weight: 900;
}

.start-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 760px;
  max-width: 100%;
  margin: 0 auto 24px;
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  font-size: 31px;
}

.note-arrow {
  display: inline-block;
  transform: rotate(22deg);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 46px;
  line-height: 1;
}

.primary-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  width: 780px;
  max-width: 100%;
  min-height: 142px;
  margin: 0 auto 28px;
  padding: 24px 42px;
  border-radius: 8px;
  color: #000000;
  background: linear-gradient(135deg, #ff8500, #ff5b00);
  box-shadow: 0 14px 24px rgba(0, 0, 0, .18);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 0;
}

.cta-icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--soft-black);
}

.cta-icon svg {
  width: 46px;
  height: 46px;
  fill: var(--orange);
}

.privacy-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0;
  color: #333333;
  font-size: 21px;
}

.corner-mark {
  position: absolute;
  top: 0;
  right: 0;
  width: 390px;
  height: 390px;
  background: linear-gradient(135deg, #ff8500, #ff4e00);
  clip-path: polygon(20% 0, 100% 0, 100% 100%);
}

.dot-field {
  position: absolute;
  width: 96px;
  height: 96px;
  background-image: radial-gradient(#c8c8c8 2px, transparent 2px);
  background-size: 18px 18px;
}

.dot-field-top {
  top: 72px;
  right: 52px;
  background-image: radial-gradient(#ffffff 2px, transparent 2px);
}

.dot-field-left {
  left: 16px;
  bottom: 130px;
}

.skyline {
  position: absolute;
  display: flex;
  align-items: flex-end;
  gap: 18px;
  right: -40px;
  bottom: 0;
  width: 680px;
  height: 720px;
  padding: 0 20px 110px;
  opacity: .16;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 22%, #000 78%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 22%, #000 78%, transparent 100%);
}

.building {
  display: block;
  width: 76px;
  background: linear-gradient(#b9b9b9, #eeeeee);
}

.building::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: repeating-linear-gradient(to bottom, rgba(255, 255, 255, .55) 0 8px, transparent 8px 28px);
}

.b1 { height: 190px; }
.b2 { height: 280px; }
.b3 { height: 370px; width: 96px; }
.b4 { height: 250px; }
.b5 { height: 420px; width: 104px; }
.b6 { height: 330px; }
.b7 { height: 260px; }

.dark-benefits {
  padding: 70px 40px;
  background: radial-gradient(circle at 50% 0, #282828, #111111 68%);
  color: #ffffff;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1080px;
  margin: 0 auto;
}

.benefit-item {
  min-height: 170px;
  padding: 0 54px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, .22);
}

.benefit-item:last-child {
  border-right: 0;
}

.benefit-item h2 {
  margin: 18px 0 8px;
  font-size: 21px;
}

.benefit-item p {
  margin: 0;
  font-size: 22px;
  line-height: 1.45;
}

.closing-line {
  padding: 36px 24px 42px;
  text-align: center;
  background: #ffffff;
}

.closing-line p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 24px;
  line-height: 1.35;
}

@media (max-width: 900px) {
  .site-header {
    padding: 70px 34px 0;
  }

  .brand img {
    width: 230px;
  }

  .landing-hero {
    min-height: 1120px;
    padding: 250px 34px 48px;
  }

  .menu-button {
    display: block;
  }

  .hero-content h1 {
    font-size: 60px;
  }

  .hero-copy {
    font-size: 25px;
  }

  .accent-line {
    margin-bottom: 48px;
  }

  .quick-points {
    display: block;
    width: 100%;
    max-width: 520px;
    margin-bottom: 44px;
  }

  .quick-point {
    flex-direction: row;
    justify-content: flex-start;
    min-height: 122px;
    padding: 18px 0;
    text-align: left;
    border-right: 0;
    border-bottom: 1px solid #dddddd;
  }

  .quick-point:last-child {
    border-bottom: 0;
  }

  .icon-circle {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    background: rgba(245, 245, 245, .9);
  }

  .quick-point strong,
  .quick-point span {
    font-size: 26px;
  }

  .quick-point div {
    min-width: 0;
    max-width: calc(100% - 124px);
  }

  .quick-point span {
    overflow-wrap: anywhere;
  }

  .primary-cta {
    width: 100%;
    max-width: 100%;
    min-height: 134px;
    gap: 28px;
    font-size: 34px;
  }

  .primary-cta span:last-child {
    min-width: 0;
  }

  .corner-mark {
    top: 250px;
    width: 150px;
    height: 150px;
  }

  .dot-field {
    display: none;
  }

  .skyline {
    right: -155px;
    bottom: 150px;
    width: 590px;
    height: 520px;
    padding-bottom: 40px;
    opacity: .14;
  }

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

  .benefit-item {
    padding: 0;
    border-right: 0;
  }

  .benefit-item:nth-child(-n+2) {
    display: none;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 52px 26px 0;
  }

  .brand img {
    width: 214px;
  }

  .landing-hero {
    min-height: 1060px;
    padding: 210px 26px 34px;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 48px;
    line-height: 1.05;
  }

  .hero-copy {
    margin-bottom: 28px;
    font-size: 24px;
  }

  .accent-line {
    width: 96px;
    margin-bottom: 38px;
  }

  .quick-point {
    gap: 20px;
    min-height: 112px;
  }

  .icon-circle {
    width: 84px;
    height: 84px;
  }

  .quick-point svg {
    width: 60px;
    height: 60px;
  }

  .quick-point strong,
  .quick-point span {
    font-size: 20px;
  }

  .start-note {
    justify-content: flex-start;
    padding-left: 120px;
    font-size: 28px;
  }

  .primary-cta {
    width: min(338px, calc(100vw - 52px)) !important;
    min-height: 110px;
    gap: 14px;
    padding: 18px 18px;
    font-size: 24px;
  }

  .cta-icon {
    width: 66px;
    height: 66px;
  }

  .cta-icon svg {
    width: 38px;
    height: 38px;
  }

  .privacy-line {
    font-size: 21px;
  }

  .dark-benefits {
    padding: 42px 28px 56px;
  }

  .benefit-item svg {
    width: 76px;
    height: 76px;
  }

  .benefit-item h2 {
    display: none;
  }

  .benefit-item p {
    max-width: 430px;
    margin: 22px auto 0;
    font-size: 26px;
    font-weight: 700;
  }

  .closing-line {
    display: none;
  }
}

@media (max-width: 390px) {
  .hero-content h1 {
    font-size: 42px;
  }

  .hero-copy,
  .quick-point strong,
  .quick-point span {
    font-size: 20px;
  }

  .start-note {
    padding-left: 78px;
  }

  .primary-cta {
    font-size: 22px;
  }
}
