/* OrangePie Media — lightweight vibrant coming-soon design */

:root {
  --white: #ffffff;
  --cream: #fff8f1;
  --cream-deep: #ffefe2;
  --ink: #26172f;
  --muted: #6e5f78;
  --orange: #ff7a00;
  --orange-light: #ffb23f;
  --coral: #ff5a43;
  --pink: #ff3d81;
  --violet: #7458ff;
  --cyan: #28c7d9;
  --line: rgba(75, 44, 89, .12);
  --shadow: 0 28px 70px rgba(122, 69, 123, .15);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  background: linear-gradient(135deg, #fffaf6 0%, #fff3e9 44%, #fff7fb 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

.hero > *,
.campaign-visual,
.campaign-copy,
.metric-row article,
.metric-row article > div {
  min-width: 0;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.background-layer {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.shape {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(1px);
  will-change: transform;
}

.shape-one {
  width: 420px;
  height: 420px;
  top: -170px;
  right: -110px;
  background: radial-gradient(circle at 38% 35%, rgba(255, 192, 88, .75), rgba(255, 99, 68, .33) 52%, rgba(255, 61, 129, .08) 72%, transparent 74%);
  animation: driftOne 18s ease-in-out infinite alternate;
}

.shape-two {
  width: 360px;
  height: 360px;
  left: -150px;
  bottom: -125px;
  background: radial-gradient(circle at 60% 40%, rgba(122, 88, 255, .28), rgba(40, 199, 217, .18) 54%, transparent 72%);
  animation: driftTwo 22s ease-in-out infinite alternate;
}

.shape-three {
  width: 190px;
  height: 190px;
  left: 46%;
  top: 12%;
  background: radial-gradient(circle, rgba(255, 115, 49, .18), transparent 68%);
  animation: driftThree 15s ease-in-out infinite alternate;
}

.grid-glow {
  position: absolute;
  inset: 0;
  opacity: .24;
  background-image:
    linear-gradient(rgba(117, 77, 128, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(117, 77, 128, .045) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.72), transparent 88%);
}

@keyframes driftOne {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-28px, 30px, 0) scale(1.06); }
}

@keyframes driftTwo {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(38px, -25px, 0); }
}

@keyframes driftThree {
  from { transform: translate3d(-10px, 0, 0); }
  to { transform: translate3d(24px, 18px, 0); }
}

.site-shell {
  min-height: 100vh;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 0;
}

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

.brand img {
  width: 52px;
  height: 52px;
  filter: drop-shadow(0 12px 24px rgba(255, 99, 68, .20));
}

.brand-copy {
  display: flex;
  align-items: baseline;
  gap: 5px;
  letter-spacing: -.035em;
}

.brand-copy strong {
  font-size: 1.22rem;
  font-weight: 900;
}

.brand-copy span {
  color: var(--orange);
  font-size: 1.02rem;
  font-weight: 800;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-chip {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #4f3c59;
  background: rgba(255,255,255,.72);
  box-shadow: 0 8px 28px rgba(90, 52, 102, .08);
  backdrop-filter: blur(12px);
  text-decoration: none;
  font-size: .9rem;
  font-weight: 750;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.icon-chip {
  width: 45px;
  height: 45px;
  flex: 0 0 45px;
  justify-content: center;
  padding: 0;
}

.contact-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 122, 0, .32);
  box-shadow: 0 13px 32px rgba(255, 116, 28, .12);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(430px, .98fr);
  grid-template-areas:
    "copy visual"
    "contact visual";
  align-items: center;
  column-gap: clamp(52px, 7vw, 92px);
  row-gap: 0;
  padding: clamp(48px, 7vh, 82px) 0 68px;
}

.hero-copy {
  grid-area: copy;
}

.creative-panel {
  grid-area: visual;
}

.contact-cta {
  grid-area: contact;
  min-width: 0;
}

.status-badge {
  display: inline-flex;
  max-width: 100%;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 122, 0, .18);
  border-radius: 999px;
  color: #9a4a08;
  background: rgba(255, 178, 63, .16);
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .035em;
  line-height: 1.35;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-light), var(--coral));
  box-shadow: 0 0 0 6px rgba(255, 122, 0, .10);
}

h1 {
  max-width: 760px;
  overflow-wrap: break-word;
  text-wrap: balance;
  margin: 0;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  line-height: 1.04;
  letter-spacing: -.045em;
  font-weight: 930;
}

h1 span {
  display: block;
  margin-top: .08em;
  color: transparent;
  background: linear-gradient(100deg, #ff8a00 0%, #ff5947 37%, #ff3d81 67%, #7458ff 100%);
  background-size: 160% 160%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: gradientShift 10s ease-in-out infinite alternate;
}

@keyframes gradientShift {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}

.hero-text {
  max-width: 680px;
  text-wrap: pretty;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.78;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.service-tags span {
  padding: 10px 13px;
  border: 1px solid rgba(108, 73, 120, .12);
  border-radius: 999px;
  color: #594263;
  background: rgba(255,255,255,.72);
  box-shadow: 0 7px 20px rgba(103, 67, 112, .055);
  font-size: .86rem;
  font-weight: 720;
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.service-tags span:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 122, 0, .25);
  background: #fff7ee;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 21px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 880;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, #ff9d15, #ff6b35 52%, #ff3d81);
  box-shadow: 0 18px 38px rgba(255, 91, 65, .24);
}

.button-primary:hover {
  box-shadow: 0 23px 46px rgba(255, 91, 65, .31);
}

.button-secondary {
  color: #a14e0d;
  border: 1px solid rgba(255, 122, 0, .22);
  background: rgba(255,255,255,.82);
  box-shadow: 0 12px 31px rgba(117, 76, 126, .08);
}

.button-secondary:hover {
  border-color: rgba(255, 122, 0, .38);
  box-shadow: 0 18px 36px rgba(255, 122, 0, .12);
}

.contact-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 34px;
  margin-top: 33px;
  padding-top: 27px;
  border-top: 1px solid rgba(95, 62, 107, .12);
}

.contact-panel div {
  display: grid;
  gap: 5px;
}

.contact-panel small {
  color: #9a879f;
  font-size: .74rem;
  font-weight: 780;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.contact-panel a {
  max-width: 100%;
  overflow-wrap: anywhere;
  color: #493552;
  text-decoration: none;
  font-size: .96rem;
  font-weight: 800;
}

.contact-panel a:hover {
  color: var(--orange);
}

.creative-panel {
  position: relative;
  min-height: 535px;
  padding: 27px;
  border: 1px solid rgba(119, 76, 131, .13);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(150deg, rgba(255,255,255,.92), rgba(255,251,248,.72)),
    var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateZ(0);
}

.panel-glow {
  position: absolute;
  width: 330px;
  height: 330px;
  right: -100px;
  top: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 152, 31, .32), rgba(255, 61, 129, .12) 48%, transparent 70%);
  animation: slowGlow 11s ease-in-out infinite alternate;
}

@keyframes slowGlow {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-18px, 22px, 0) scale(1.09); }
}

.mini-header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8b798f;
  font-size: .76rem;
  font-weight: 760;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.window-dots span:nth-child(1) { background: #ff6d61; }
.window-dots span:nth-child(2) { background: #ffbf46; }
.window-dots span:nth-child(3) { background: #37d895; }

.campaign-visual {
  position: relative;
  z-index: 2;
  margin-top: 27px;
  padding: 24px;
  border: 1px solid rgba(111, 73, 123, .10);
  border-radius: 25px;
  background: rgba(255,255,255,.76);
  box-shadow: 0 22px 55px rgba(112, 71, 122, .09);
}

.campaign-copy span {
  display: block;
  margin-bottom: 8px;
  color: #997f9f;
  font-size: .78rem;
  font-weight: 790;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.campaign-copy strong {
  display: block;
  max-width: 330px;
  font-size: 1.27rem;
  line-height: 1.35;
}

.growth-badge {
  position: absolute;
  top: 21px;
  right: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 15px;
  color: #fff;
  background: linear-gradient(135deg, #7657ff, #ff3d81);
  box-shadow: 0 15px 32px rgba(122, 88, 255, .20);
}

.growth-badge .arrow {
  font-size: 1.25rem;
  font-weight: 900;
}

.growth-badge small,
.growth-badge strong {
  display: block;
}

.growth-badge small {
  opacity: .75;
  font-size: .66rem;
}

.growth-badge strong {
  font-size: .82rem;
}

.smooth-chart {
  height: 190px;
  margin-top: 20px;
}

.smooth-chart svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.line-path {
  stroke-dasharray: 840;
  stroke-dashoffset: 840;
  animation: drawLine 2.8s cubic-bezier(.2,.7,.2,1) forwards;
}

.area-path {
  opacity: 0;
  animation: fadeArea 1.9s ease forwards .65s;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

@keyframes fadeArea {
  to { opacity: 1; }
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
  margin-top: 8px;
}

.metric-row article {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px;
  border: 1px solid rgba(105, 69, 117, .09);
  border-radius: 16px;
  background: rgba(255,250,247,.90);
}

.metric-icon {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  flex: 0 0 34px;
  border-radius: 11px;
  color: white;
  font-size: .72rem;
  font-weight: 900;
}

.metric-icon.orange { background: linear-gradient(135deg, #ffab23, #ff6b35); }
.metric-icon.pink { background: linear-gradient(135deg, #ff5b77, #ff3d9d); }
.metric-icon.violet { background: linear-gradient(135deg, #8a6cff, #6651eb); }

.metric-row small,
.metric-row strong {
  display: block;
}

.metric-row small {
  color: #9a879f;
  font-size: .68rem;
}

.metric-row strong {
  margin-top: 3px;
  color: #4d3956;
  font-size: .76rem;
}

.floating-note {
  position: absolute;
  z-index: 3;
  min-width: 195px;
  padding: 15px 17px;
  border: 1px solid rgba(108, 69, 120, .11);
  border-radius: 18px;
  background: rgba(255,255,255,.91);
  box-shadow: 0 17px 38px rgba(115, 74, 126, .13);
  backdrop-filter: blur(12px);
}

.floating-note span,
.floating-note strong {
  display: block;
}

.floating-note span {
  margin-bottom: 5px;
  color: var(--orange);
  font-size: .7rem;
  font-weight: 870;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.floating-note strong {
  font-size: .9rem;
}

.note-one {
  right: 16px;
  bottom: 20px;
  animation: noteFloatOne 7s ease-in-out infinite alternate;
}

.note-two {
  left: 17px;
  bottom: 31px;
  animation: noteFloatTwo 8.5s ease-in-out infinite alternate;
}

@keyframes noteFloatOne {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(0, -9px, 0); }
}

@keyframes noteFloatTwo {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(7px, -6px, 0); }
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0 34px;
  border-top: 1px solid rgba(91, 57, 103, .11);
  color: #8a778f;
  font-size: .85rem;
}

.site-footer p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: #6d5776;
  text-decoration: none;
  font-weight: 780;
}

.footer-links a:hover {
  color: var(--orange);
}

.reveal-item {
  opacity: 0;
  transform: translateY(18px);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity .8s ease,
    transform .8s cubic-bezier(.22, .7, .22, 1);
}

@media (max-width: 1020px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "copy"
      "visual"
      "contact";
    gap: 52px;
  }

  .hero-copy {
    max-width: 820px;
  }

  .creative-panel {
    width: min(760px, 100%);
    margin: 0 auto;
  }

  .contact-cta {
    width: 100%;
    margin-top: -8px;
  }

  .contact-cta .hero-actions {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    gap: 12px;
    padding: 16px 0;
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand img {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }

  .brand-copy {
    min-width: 0;
    gap: 4px;
  }

  .brand-copy strong {
    font-size: 1.03rem;
  }

  .brand-copy span {
    font-size: .88rem;
  }

  .header-actions {
    flex: 0 0 auto;
    gap: 7px;
  }

  .icon-chip {
    width: 41px;
    height: 41px;
    min-height: 41px;
    flex-basis: 41px;
  }

  .hero {
    gap: 38px;
    padding: 30px 0 46px;
  }

  .status-badge {
    margin-bottom: 20px;
    padding: 9px 12px;
    font-size: .76rem;
  }

  .status-dot {
    flex: 0 0 9px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 12vw, 4.15rem);
    line-height: 1.12;
    letter-spacing: -.025em;
  }

  h1 span {
    margin-top: .13em;
  }

  .hero-text {
    margin-top: 22px;
    font-size: .98rem;
    line-height: 1.7;
  }

  .service-tags {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin-top: 23px;
  }

  .service-tags span {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    padding: 9px 10px;
    text-align: center;
    line-height: 1.3;
    font-size: .8rem;
  }

  .contact-cta {
    padding: 18px;
    border: 1px solid rgba(255, 122, 0, .14);
    border-radius: 22px;
    background: rgba(255, 255, 255, .76);
    box-shadow: 0 18px 42px rgba(112, 71, 122, .09);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
    margin-top: 0;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .contact-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 17px;
    margin-top: 22px;
    padding-top: 20px;
  }

  .creative-panel {
    min-height: 0;
    padding: 16px;
    border-radius: 24px;
  }

  .panel-glow {
    width: 250px;
    height: 250px;
    right: -100px;
    top: -95px;
  }

  .mini-header {
    gap: 14px;
    font-size: .67rem;
    letter-spacing: .065em;
  }

  .mini-header > span {
    max-width: 70%;
    text-align: right;
    line-height: 1.3;
  }

  .campaign-visual {
    margin-top: 20px;
    padding: 16px;
    border-radius: 20px;
  }

  .campaign-copy span {
    font-size: .7rem;
  }

  .campaign-copy strong {
    max-width: 100%;
    font-size: 1.08rem;
    line-height: 1.4;
  }

  .growth-badge {
    position: static;
    width: fit-content;
    max-width: 100%;
    margin-top: 14px;
    padding: 9px 11px;
  }

  .smooth-chart {
    width: 100%;
    height: 138px;
    margin-top: 14px;
    overflow: hidden;
  }

  .smooth-chart svg {
    max-width: 100%;
  }

  .metric-row {
    grid-template-columns: 1fr;
    gap: 9px;
    margin-top: 6px;
  }

  .metric-row article {
    padding: 12px;
  }

  .metric-row strong {
    font-size: .82rem;
  }

  .floating-note {
    position: static;
    width: 100%;
    min-width: 0;
    margin-top: 10px;
    padding: 13px 15px;
    animation: none;
  }

  .site-footer {
    justify-content: center;
    padding: 23px 0 28px;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 20px, 1180px);
  }

  .site-header {
    gap: 8px;
  }

  .brand {
    gap: 7px;
  }

  .brand img {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .brand-copy {
    display: grid;
    gap: 0;
    line-height: 1.02;
  }

  .brand-copy strong {
    font-size: .98rem;
  }

  .brand-copy span {
    font-size: .78rem;
  }

  .header-actions {
    gap: 5px;
  }

  .icon-chip {
    width: 38px;
    height: 38px;
    min-height: 38px;
    flex-basis: 38px;
  }

  .icon-chip img {
    width: 17px;
    height: 17px;
  }

  .hero {
    padding-top: 23px;
  }

  .status-badge {
    width: 100%;
    justify-content: flex-start;
    border-radius: 14px;
    font-size: .72rem;
  }

  h1 {
    font-size: clamp(2.3rem, 12.5vw, 3.15rem);
    line-height: 1.14;
    letter-spacing: -.018em;
  }

  .hero-text {
    font-size: .94rem;
  }

  .service-tags {
    grid-template-columns: 1fr;
  }

  .service-tags span {
    min-height: 43px;
  }

  .contact-cta {
    padding: 14px;
    border-radius: 19px;
  }

  .contact-panel a {
    font-size: .91rem;
  }

  .creative-panel {
    padding: 13px;
    border-radius: 21px;
  }

  .campaign-visual {
    padding: 14px;
    border-radius: 18px;
  }

  .smooth-chart {
    height: 118px;
  }

  .line-path {
    stroke-width: 6;
  }

  .floating-note strong {
    font-size: .84rem;
  }
}

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

  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
  }
}
