:root {
  --ink: #16302b;
  --muted: #5f6f6a;
  --paper: #fbf8f2;
  --mint: #cfe7d6;
  --teal: #2c8073;
  --coral: #e77862;
  --plum: #6f4d7f;
  --gold: #e4b75f;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(22, 48, 43, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background:
    linear-gradient(135deg, rgba(207, 231, 214, 0.88), rgba(251, 248, 242, 0.92) 48%),
    linear-gradient(45deg, rgba(228, 183, 95, 0.24), rgba(111, 77, 127, 0.14)),
    var(--paper);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(22, 48, 43, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 48, 43, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}

.page-shell {
  display: grid;
  min-height: 100vh;
  padding: clamp(18px, 3vw, 48px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(32px, 6vw, 88px);
  width: min(1180px, 100%);
  min-height: calc(100vh - clamp(36px, 6vw, 96px));
  margin: auto;
  align-items: center;
}

.hero::after {
  position: absolute;
  right: min(2vw, 24px);
  bottom: min(3vw, 32px);
  width: min(520px, 46vw);
  height: min(300px, 30vw);
  content: "";
  border: 1px solid rgba(44, 128, 115, 0.2);
  border-radius: 8px;
  transform: rotate(-10deg);
  z-index: -1;
}

.hero__content {
  display: grid;
  gap: clamp(30px, 5vw, 56px);
}

.site-header {
  align-self: start;
}

.brand {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.brand__mark {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(135deg, var(--teal), var(--plum));
  border-radius: 18px;
  box-shadow: 0 14px 28px rgba(44, 128, 115, 0.2);
}

.brand__name,
.brand__subtitle {
  display: block;
}

.brand__name {
  font-weight: 800;
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.brand__subtitle {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.83rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero__copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 0.83rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 10px;
  height: 10px;
  content: "";
  background: var(--coral);
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(231, 120, 98, 0.15);
  animation: pulse 2s ease-in-out infinite;
}

h1 {
  max-width: 850px;
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.95;
}

.lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  line-height: 1.7;
}

.status-panel {
  display: grid;
  gap: 18px;
  width: min(100%, 560px);
  padding: 22px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(22, 48, 43, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.status-panel__label {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-panel strong {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

.progress {
  height: 10px;
  overflow: hidden;
  background: rgba(22, 48, 43, 0.1);
  border-radius: 999px;
}

.progress span {
  display: block;
  width: 68%;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--coral));
  border-radius: inherit;
  animation: progress-glow 2.8s ease-in-out infinite;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.service-list li {
  padding: 12px 16px;
  color: var(--ink);
  font-weight: 700;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(22, 48, 43, 0.1);
  border-radius: 999px;
}

.visual {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
}

.visual::before,
.visual::after {
  position: absolute;
  content: "";
  z-index: -1;
}

.visual::before {
  width: 68%;
  height: 72%;
  border: 1px solid rgba(44, 128, 115, 0.22);
  border-radius: 8px;
  transform: translate(22px, -12px) rotate(3deg);
}

.visual::after {
  width: 72%;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--gold), var(--teal));
  transform: translateY(170px);
}

.speech-card {
  position: absolute;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(22, 48, 43, 0.1);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.speech-card span {
  display: grid;
  width: clamp(58px, 6vw, 78px);
  aspect-ratio: 1;
  place-items: center;
  color: var(--white);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 800;
  background: var(--teal);
  border-radius: 8px;
}

.speech-card--main {
  top: 70px;
  right: 30px;
  animation: float-main 6s ease-in-out infinite;
}

.speech-card--main span:nth-child(2) {
  background: var(--coral);
}

.speech-card--main span:nth-child(3) {
  background: var(--plum);
}

.speech-card--accent {
  left: 0;
  bottom: 98px;
  transform: rotate(-6deg);
  animation: float-accent 7s ease-in-out infinite;
}

.speech-card--accent span {
  background: var(--gold);
}

.speech-card--accent span:nth-child(2) {
  background: var(--teal);
}

.speech-card--accent span:nth-child(3) {
  background: var(--coral);
}

.waveform {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  width: min(340px, 74vw);
  height: 150px;
  padding: 20px;
  background: rgba(22, 48, 43, 0.92);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.waveform span {
  display: block;
  width: 16px;
  min-height: 26px;
  background: var(--mint);
  border-radius: 999px;
  animation: sound 1.5s ease-in-out infinite;
}

.waveform span:nth-child(2) {
  animation-delay: 0.1s;
}

.waveform span:nth-child(3) {
  animation-delay: 0.2s;
}

.waveform span:nth-child(4) {
  animation-delay: 0.3s;
}

.waveform span:nth-child(5) {
  animation-delay: 0.4s;
}

.waveform span:nth-child(6) {
  animation-delay: 0.5s;
}

.waveform span:nth-child(7) {
  animation-delay: 0.6s;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.28);
  }
}

@keyframes progress-glow {
  0%,
  100% {
    filter: saturate(1);
    transform: translateX(0);
  }

  50% {
    filter: saturate(1.4);
    transform: translateX(8px);
  }
}

@keyframes float-main {
  0%,
  100% {
    transform: translateY(0) rotate(4deg);
  }

  50% {
    transform: translateY(-18px) rotate(1deg);
  }
}

@keyframes float-accent {
  0%,
  100% {
    transform: translateY(0) rotate(-6deg);
  }

  50% {
    transform: translateY(16px) rotate(-3deg);
  }
}

@keyframes sound {
  0%,
  100% {
    height: 34px;
  }

  50% {
    height: 104px;
  }
}

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

@media (max-width: 900px) {
  .page-shell {
    padding: 18px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 20px;
    min-height: auto;
    padding: 22px 0 28px;
  }

  .hero::after {
    display: none;
  }

  .hero__content {
    gap: 30px;
  }

  .visual {
    min-height: 430px;
  }

  .speech-card--main {
    top: 18px;
    right: 4px;
  }

  .speech-card--accent {
    left: 4px;
    bottom: 40px;
  }
}

@media (max-width: 560px) {
  .brand {
    gap: 10px;
  }

  .brand__mark {
    width: 48px;
    height: 48px;
  }

  h1 {
    font-size: clamp(2.55rem, 15vw, 4.2rem);
  }

  .status-panel {
    padding: 18px;
  }

  .service-list {
    display: grid;
  }

  .service-list li {
    width: 100%;
    border-radius: 8px;
  }

  .visual {
    min-height: 360px;
  }

  .speech-card {
    gap: 8px;
    padding: 12px;
  }

  .speech-card span {
    width: 46px;
    font-size: 1.2rem;
  }

  .waveform {
    width: min(292px, 86vw);
    height: 122px;
    gap: 9px;
  }

  .waveform span {
    width: 12px;
  }
}
